﻿/* EaglesConnect — Rocket.new exact theme tokens */
:root {
    --background: #f8f9fc;
    --foreground: #0f172a;
    --primary: #1a237e;
    --primary-foreground: #ffffff;
    --secondary: #f1f5f9;
    --secondary-foreground: #1a237e;
    --accent: #f59e0b;
    --accent-foreground: #1a237e;
    --muted: #e2e8f0;
    --muted-foreground: #64748b;
    --card: #ffffff;
    --card-foreground: #0f172a;
    --border: #e2e8f0;
    --input: #f1f5f9;
    --ring: #1a237e;
    --radius: 10px;
    --navy-50: #eef0fb;
    --navy-100: #d5d9f5;
    --navy-200: #aab3eb;
    --navy-800: #151c6b;
    --navy-900: #0f1450;
    --navy-mid: #283593;
    --gold-400: #fbbf24;
    --gold-500: #f59e0b;
    --gold-600: #d97706;
    --success: #16a34a;
    --success-bg: #f0fdf4;
    --warning: #d97706;
    --warning-bg: #fffbeb;
    --danger: #dc2626;
    --danger-bg: #fef2f2;
    --info: #2563eb;
    --info-bg: #eff6ff;
    --shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
    --max: 1120px;
    --header-h: 100px;
    --ticker-h: 0px;
    --ticker-bar-h: 2.35rem;
    --font: 'Poppins', Helvetica, Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    font-size: 16px;
    color: var(--foreground);
    background: var(--background);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    padding-top: calc(var(--header-h) + var(--ticker-h));
    overflow-x: hidden;
}

body.has-event-ticker {
    --ticker-h: var(--ticker-bar-h);
}

    body:not(.crm-body) {
        background-image: linear-gradient(rgba(248, 249, 252, 0.86), rgba(248, 249, 252, 0.86)), url("../assets/logo.png?v=20260812a");
        background-repeat: no-repeat, no-repeat;
        background-position: center center, center 52%;
        background-size: auto, min(42vw, 520px) auto;
        background-attachment: fixed, fixed;
    }

p {
    font-size: 16px;
}

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

a {
    color: inherit;
    text-decoration: none;
}

:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -3rem;
    z-index: 200;
    padding: 0.55rem 0.9rem;
    background: var(--primary);
    color: #fff;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: top 0.2s ease;
}

    .skip-link:focus {
        top: 0.75rem;
    }

ul {
    list-style: none;
}

h1, h2, h3, h4 {
    font-family: var(--font);
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 800;
    color: var(--primary);
}

.container {
    width: min(100% - 3rem, var(--max));
    margin-inline: auto;
}

/* —— Logo block (navbar + footer): transparent mark + caption under logo —— */
.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.18rem;
    flex-shrink: 0;
    min-width: 0;
    width: max-content;
    max-width: min(280px, 48vw);
    margin-right: 0;
    text-decoration: none;
}

.logo-img {
    display: block;
    width: auto;
    height: 72px;
    max-width: min(220px, 42vw);
    object-fit: contain;
    object-position: left center;
    border-radius: 0;
    flex-shrink: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
    filter: none;
}

/* Caption sits under logo, left-aligned, width capped to the mark */
.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.06rem;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    text-align: left;
}

    .logo-text .brand-title {
        display: none !important;
    }

    .logo-text .brand-tagline,
    .logo-text .brand-audience {
        display: block;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        font-size: 0.54rem;
        font-weight: 600;
        letter-spacing: 0.01em;
        line-height: 1.3;
        text-align: left;
        text-transform: none;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: clip;
        color: #c9891a;
    }

    .logo-text .brand-audience {
        color: #1a237e;
        font-weight: 700;
        letter-spacing: 0.01em;
    }

/* Footer: same transparent mark, slightly smaller */
.site-footer .logo {
    max-width: min(220px, 100%);
}

.site-footer .logo-img,
.footer-brand .logo-img {
    height: 56px;
    max-width: min(200px, 100%);
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    filter: none;
}

.footer-brand .logo {
    max-width: min(220px, 100%);
    margin-bottom: 0.75rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.14rem;
}

.footer-brand .logo-text,
.site-footer .logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    text-align: left;
}

.footer-brand .logo-text .brand-title,
.site-footer .logo-text .brand-title {
    display: none !important;
}

.footer-brand .logo-text .brand-tagline,
.footer-brand .logo-text .brand-audience,
.site-footer .logo-text .brand-tagline,
.site-footer .logo-text .brand-audience {
    color: var(--gold-400);
    font-size: 0.5rem;
    font-weight: 600;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
    width: 100%;
    max-width: 100%;
}

.footer-brand .logo-text .brand-audience,
.site-footer .logo-text .brand-audience {
    color: rgba(251, 191, 36, 0.92);
    font-weight: 700;
}

.page-hero-logo,
.hero-brand-logo {
    width: auto;
    height: 72px;
    max-width: min(300px, 70vw);
    object-fit: contain;
    border-radius: 0;
    margin-bottom: 1.1rem;
    background: transparent;
    box-shadow: none;
}

/* CTA band above footer — same transparent logo.png as navbar */
.cta-logo {
    width: auto !important;
    height: 78px !important;
    max-width: min(280px, 80vw) !important;
    object-fit: contain !important;
    object-position: center center;
    border-radius: 0 !important;
    background: transparent !important;
    padding: 0 !important;
    display: block;
    margin-left: auto;
    margin-right: auto;
    filter: none;
}

.error-card .error-logo {
    width: auto;
    height: 78px;
    max-width: min(280px, 80vw);
    margin: 0 auto 1.25rem;
    border-radius: 0;
    object-fit: contain;
    display: block;
    background: transparent;
    padding: 0;
}

/* —— Open-events highlight ticker (sticky above navbar) —— */
.event-ticker {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 210;
    background: linear-gradient(90deg, var(--navy-900) 0%, var(--primary) 45%, var(--navy-mid) 100%);
    color: var(--primary-foreground);
    border-bottom: 1px solid rgba(251, 191, 36, 0.35);
    box-shadow: 0 4px 14px rgba(15, 20, 80, 0.18);
    height: var(--ticker-bar-h);
    line-height: var(--ticker-bar-h);
    overflow: hidden;
}

.event-ticker__viewport {
    overflow: hidden;
    width: 100%;
    height: 100%;
    mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

.event-ticker__track {
    display: flex;
    width: max-content;
    height: 100%;
    animation: event-ticker-scroll 42s linear infinite;
}

.event-ticker:hover .event-ticker__track {
    animation-play-state: paused;
}

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

.event-ticker__item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0 0.35rem;
    white-space: nowrap;
    color: #fff;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

    .event-ticker__item:hover {
        color: var(--gold-400);
    }

.event-ticker__bolt {
    color: var(--gold-400);
    font-size: 0.85rem;
    line-height: 1;
}

.event-ticker__name {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.event-ticker__dash {
    opacity: 0.55;
    font-weight: 500;
}

.event-ticker__loc {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
}

.event-ticker__sep {
    display: inline-block;
    width: 0.35rem;
    height: 0.35rem;
    margin: 0 1.15rem;
    background: var(--gold-400);
    border-radius: 2px;
    flex-shrink: 0;
    transform: rotate(45deg);
    box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.25);
}

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

@media (prefers-reduced-motion: reduce) {
    .event-ticker__track {
        animation: none;
        justify-content: center;
        width: 100%;
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .event-ticker__group[aria-hidden="true"] {
        display: none;
    }
}

@media (max-width: 640px) {
    :root {
        --ticker-bar-h: 2.15rem;
    }

    .event-ticker__item {
        font-size: 0.72rem;
    }

    .event-ticker__sep {
        margin: 0 0.85rem;
    }
}

/* —— Header (fixed so it stays on scroll) —— */
.site-header {
    position: fixed;
    top: var(--ticker-h);
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04), 0 8px 24px rgba(15, 23, 42, 0.06);
}

.header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: var(--header-h);
    height: auto;
    padding-block: 0.5rem;
    gap: 0.75rem;
    overflow: visible;
}

.site-header .container {
    width: min(100% - 2.5rem, 1180px);
}

/* Header brand — transparent mark */
.site-header .logo {
    flex: 0 0 auto;
    min-width: 0;
    max-width: min(220px, 38vw);
    margin-right: 1rem;
    z-index: 2;
    gap: 0.12rem;
    align-items: stretch;
}

.site-header .logo-img {
    width: 100%;
    height: 72px;
    max-width: min(220px, 38vw);
    object-fit: contain;
    object-position: left center;
}

.site-header .logo-text {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.06rem;
    padding-left: 0;
    text-align: left;
    width: 100%;
    max-width: 100%;
}

.site-header .logo-text .brand-title {
    display: none !important;
}

.site-header .logo-text .brand-tagline,
.site-header .logo-text .brand-audience {
    display: block;
    width: 100%;
    max-width: 100%;
    font-size: 0.52rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
    line-height: 1.3;
    text-align: left;
}

.site-header .logo-text .brand-tagline {
    color: #c9891a;
    font-weight: 600;
}

.site-header .logo-text .brand-audience {
    color: #1a237e;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.site-header .nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 0.06rem;
    margin-left: auto;
    flex: 0 0 auto;
    min-width: 0;
    z-index: 1;
}

    .site-header .nav a:not(.nav-cta):not(.nav-crm) {
        color: #3d4f6f;
        font-size: 0.82rem;
        font-weight: 600;
        letter-spacing: 0.01em;
        padding: 0.45rem 0.55rem;
        border-radius: 8px;
        transition: color 0.2s, background 0.2s;
        white-space: nowrap;
        line-height: 1.2;
    }

        .site-header .nav a:not(.nav-cta):not(.nav-crm):hover,
        .site-header .nav a:not(.nav-cta):not(.nav-crm).active,
        .site-header .nav a:not(.nav-cta):not(.nav-crm)[aria-current="page"] {
            color: var(--primary);
            background: var(--navy-50);
            font-weight: 700;
        }

.nav-crm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff !important;
    color: var(--primary) !important;
    margin-left: 0.5rem;
    padding: 0.55rem 1rem !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.01em;
    border-radius: 9px !important;
    white-space: nowrap;
    flex-shrink: 0;
    border: 1.5px solid rgba(26, 35, 126, 0.4) !important;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

    .nav-crm:hover,
    .nav-crm.active,
    .nav-crm[aria-current="page"] {
        background: var(--navy-50) !important;
        color: var(--primary) !important;
        border-color: var(--primary) !important;
    }

.nav-cta {
    background: linear-gradient(135deg, var(--gold-600), var(--gold-500)) !important;
    color: var(--accent-foreground) !important;
    margin-left: 0.35rem;
    padding: 0.58rem 1.1rem !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.01em;
    border-radius: 9px !important;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 3px 12px rgba(217, 119, 6, 0.25);
    animation: soft-pulse 2.8s ease-in-out infinite;
}

    .nav-cta:hover {
        filter: brightness(1.05);
        color: var(--accent-foreground) !important;
        box-shadow: 0 5px 16px rgba(217, 119, 6, 0.32);
    }

.nav-toggle {
    display: none;
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--primary);
    width: 42px;
    height: 42px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.25rem;
}

/* —— Buttons —— */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.25;
    padding: 0.85rem 1.4rem;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    box-sizing: border-box;
}

    .btn:hover {
        transform: translateY(-1px);
    }

.btn-primary {
    background: linear-gradient(135deg, var(--gold-600), var(--gold-500));
    color: var(--accent-foreground);
}

    .btn-primary:hover {
        filter: brightness(1.05);
        box-shadow: 0 8px 20px rgba(217, 119, 6, 0.28);
    }

.btn-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--primary-foreground);
}

    .btn-outline:hover {
        border-color: var(--gold-400);
        color: var(--gold-400);
    }

.btn-outline-dark {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

    .btn-outline-dark:hover {
        background: var(--primary);
        color: var(--primary-foreground);
    }

.btn-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
}

/* —— Icons (inline SVG) —— */
.icon {
    width: 1.15em;
    height: 1.15em;
    display: inline-block;
    vertical-align: -0.15em;
    flex-shrink: 0;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-fill {
    fill: currentColor;
    stroke: none;
}

.offer-icon .icon,
.contact-item .ico .icon,
.scheme-card .offer-icon .icon {
    width: 22px;
    height: 22px;
}

.btn .icon {
    width: 16px;
    height: 16px;
    display: block;
    flex-shrink: 0;
    margin: 0;
    vertical-align: middle;
}

.meta-row {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
}

    .meta-row .icon {
        width: 18px;
        height: 18px;
        margin-top: 0.15rem;
        color: #a5b4fc;
    }

    .meta-row .icon-pin {
        color: #f472b6;
    }

    .meta-row .icon-users {
        color: #c4b5fd;
    }

.eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.92);
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.06);
    margin-bottom: 0.85rem;
}

    .eyebrow-pill .icon {
        width: 14px;
        height: 14px;
        color: var(--gold-400);
    }

.whatsapp-chip .icon {
    width: 18px;
    height: 18px;
    color: #25d366;
}

/* —— Hero —— */
.hero {
    position: relative;
    background: linear-gradient( 135deg, rgba(10, 22, 40, 0.95) 0%, rgba(13, 31, 60, 0.85) 50%, rgba(26, 47, 78, 0.9) 100% );
    color: var(--primary-foreground);
    min-height: 0;
    display: block;
    padding: 2.35rem 0 2.75rem;
    box-sizing: border-box;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
        background-size: 48px 48px;
        pointer-events: none;
        opacity: 0.45;
    }

/* Real desktop: comfortable first fold without huge empty navy band */
@media (min-width: 1025px) and (min-height: 820px) {
    .hero {
        min-height: calc(100svh - var(--header-h));
        min-height: calc(100vh - var(--header-h));
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2.5rem 0 2.85rem;
    }
}

/* Same node as .container — keep side gutters; min-width for grid children prevents overlap overflow */
.hero > .container.hero-grid,
.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 1.75rem 2.25rem;
    align-items: center;
    width: min(100% - 3rem, var(--max));
    max-width: var(--max);
    margin-inline: auto;
    box-sizing: border-box;
}

    .hero-grid > * {
        min-width: 0;
        max-width: 100%;
    }

    .hero-grid .forum-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 0.65rem;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 2.9rem);
    font-weight: 800;
    margin-bottom: 0.7rem;
    max-width: 16ch;
    color: var(--primary-foreground);
    line-height: 1.1;
    overflow-wrap: anywhere;
    word-break: break-word;
}

    .hero h1 .accent {
        color: var(--gold-400);
    }

    .hero h1 .line2 {
        display: block;
    }

.hero-lead {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 42ch;
    margin-bottom: 0.7rem;
}

.hero-motto {
    font-style: italic;
    color: var(--gold-400);
    font-size: 0.92rem;
    margin-bottom: 1.15rem;
}

.hero .btn-group {
    margin-bottom: 0;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
    margin-top: 1.25rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

    .hero-stats strong {
        display: block;
        font-size: 1.65rem;
        color: #ffb800;
        margin-bottom: 0.2rem;
        font-variant-numeric: tabular-nums;
    }

    .hero-stats span {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.72);
    }

.hero .forum-card {
    padding: 1.4rem 1.45rem;
}

.forum-card {
    background: rgba(12, 18, 48, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(14px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.forum-card-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 0.75rem;
}

.forum-card-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem 0.75rem;
    margin-bottom: 1rem;
}

    .forum-card-head h3 {
        font-size: 1.35rem;
        color: var(--primary-foreground);
        margin-right: auto;
    }

.forum-card .badge-discount {
    background: rgba(248, 113, 113, 0.18);
    color: #fecaca;
    border-color: rgba(248, 113, 113, 0.45);
}

.badge-open {
    background: rgba(245, 158, 11, 0.12);
    color: var(--gold-400);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(245, 158, 11, 0.55);
}

.badge-soon {
    background: rgba(37, 99, 235, 0.1);
    color: #1d4ed8;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(37, 99, 235, 0.4);
    white-space: nowrap;
}

.forum-card .badge-soon {
    background: rgba(147, 197, 253, 0.18);
    color: #bfdbfe;
    border-color: rgba(147, 197, 253, 0.45);
}

.event-card--soon {
    border-style: dashed;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 70%);
}

.event-card--soon .soon-note {
    margin: 0;
    font-size: 0.86rem;
    color: var(--muted-foreground);
    text-align: start;
    line-height: 1.45;
}

.event-card--soon .fee-soon {
    color: var(--primary);
    opacity: 0.85;
}

.event-card__soon-cta {
    opacity: 0.85;
}

.badge-discount {
    background: rgba(220, 38, 38, 0.1);
    color: #b91c1c;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(220, 38, 38, 0.4);
    white-space: nowrap;
}

/* Event card — top-right corner 50% off triangle ribbon */
.event-card--promo {
    position: relative;
    overflow: hidden;
}

.event-card__ribbon {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 4;
    width: 4.85rem;
    height: 4.85rem;
    pointer-events: none;
    background: #e11d48;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.event-card__ribbon-text {
    position: absolute;
    top: 0.52rem;
    right: -0.05rem;
    width: 3.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.02rem;
    transform: rotate(45deg);
    transform-origin: center center;
    color: #fff;
    text-align: center;
    line-height: 1.05;
    font-family: var(--font);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}

.event-card__ribbon-pct {
    display: block;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.event-card__ribbon-off {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: lowercase;
}

.event-card--promo .event-card-top {
    padding-right: 3.25rem;
}

.badge-closed {
    background: rgba(100, 116, 139, 0.12);
    color: #64748b;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(100, 116, 139, 0.4);
}

.event-card .badge-open {
    background: rgba(245, 158, 11, 0.12);
    color: var(--gold-600);
    border-color: rgba(217, 119, 6, 0.35);
}

.event-card .badge-soon {
    background: rgba(37, 99, 235, 0.1);
    color: #1d4ed8;
    border-color: rgba(37, 99, 235, 0.35);
}

.event-card .badge-closed {
    background: rgba(100, 116, 139, 0.1);
    color: #64748b;
    border-color: rgba(100, 116, 139, 0.35);
}

.event-card-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.4rem;
}

/* —— Data Hub —— */
.datahub-container {
    max-width: 980px;
}

.datahub-container--locked {
    max-width: 540px;
}

.datahub-card {
    width: 100%;
    box-sizing: border-box;
    text-align: left;
}

.datahub-card--locked {
    max-width: 100%;
    margin: 0 auto;
}

.datahub-body {
    width: 100%;
    text-align: left;
}

.datahub-auth {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    text-align: left;
    box-sizing: border-box;
}

    .datahub-auth h3 {
        text-align: left;
        margin: 0 0 0.45rem;
    }

    .datahub-auth .datahub-lead {
        margin: 0 0 1.25rem;
        max-width: none;
    }

.datahub-auth-form {
    width: 100%;
    max-width: none;
    margin: 0;
    box-sizing: border-box;
}

    .datahub-auth-form .form-row {
        width: 100%;
        margin-bottom: 1rem;
    }

    .datahub-auth-form input[type="password"] {
        width: 100%;
        box-sizing: border-box;
    }

    .datahub-auth-form .btn {
        width: 100%;
        box-sizing: border-box;
        margin: 0;
    }

/* Alerts stay full width of card even when auth form is centered */
.datahub-card--locked .datahub-alert {
    max-width: 100%;
}

.datahub-card--locked .datahub-auth {
    max-width: 100%;
}

.datahub-session-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem 1rem;
    margin: 0 0 1.35rem;
    padding: 0.7rem 0.95rem;
    border-radius: 8px;
    border: 1px solid rgba(26, 35, 126, 0.14);
    background: #f4f6fb;
    font-size: 0.86rem;
    color: var(--muted-foreground);
}

    .datahub-session-bar strong {
        color: var(--primary);
        font-variant-numeric: tabular-nums;
        letter-spacing: 0.02em;
    }

.datahub-alert {
    margin: 0 0 1rem;
    padding: 0.7rem 0.9rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

.datahub-alert--ok {
    color: #166534;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.datahub-alert--err {
    color: #991b1b;
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.datahub-section {
    margin: 0;
    padding: 0 0 1.75rem;
    border-bottom: 1px solid #e8eaee;
}

    .datahub-section + .datahub-section {
        margin-top: 1.75rem;
    }

    .datahub-section:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
    }

.datahub-section-head {
    margin: 0 0 1.1rem;
}

    .datahub-card .datahub-section-head h3,
    .datahub-card > .datahub-auth > h3 {
        margin: 0 0 0.4rem;
    }

.datahub-lead {
    margin: 0;
    max-width: 62ch;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--muted-foreground);
}

/* Override register-form-card .form-lead divider on this page */
.datahub-card .form-lead {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
}

.datahub-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    margin: 0 0 1rem;
}

    .datahub-toolbar form {
        margin: 0;
    }

.datahub-empty {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 0.92rem;
}

.datahub-action-grid,
.datahub-upload-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    width: 100%;
    margin: 0;
}

    .datahub-action-grid form,
    .datahub-upload-grid form {
        margin: 0;
        min-width: 0;
    }

.datahub-action-btn {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    white-space: normal;
    line-height: 1.25;
    min-height: 2.75rem;
}

.datahub-upload-card {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 1rem 1.05rem 1.05rem;
    border: 1px solid #e8eaee;
    border-radius: 10px;
    background: #fbfcfe;
    min-width: 0;
    box-sizing: border-box;
}

    .datahub-upload-card .form-row {
        margin-bottom: 0.85rem;
        flex: 1;
    }

    .datahub-upload-card .btn {
        margin-top: auto;
    }

.datahub-footer {
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e8eaee;
}

    .datahub-footer form {
        margin: 0;
        max-width: 280px;
    }

.datahub-logout-btn {
    width: 100%;
}

.datahub-table-wrap {
    overflow: auto;
    max-height: min(420px, 55vh);
    margin: 0;
    width: 100%;
    border: 1px solid #e8eaee;
    border-radius: 8px;
    background: #fff;
}

.datahub-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.84rem;
}

    .datahub-table th,
    .datahub-table td {
        padding: 0.55rem 0.7rem;
        text-align: left;
        border-bottom: 1px solid #e8eaee;
        vertical-align: middle;
    }

    .datahub-table th {
        background: #f8f9fb;
        font-weight: 700;
        color: var(--primary);
        white-space: nowrap;
        position: sticky;
        top: 0;
        z-index: 2;
        box-shadow: 0 1px 0 #e8eaee;
    }

    .datahub-table tbody tr:last-child td {
        border-bottom: none;
    }

    .datahub-table code {
        font-size: 0.75rem;
        word-break: break-all;
    }

    .datahub-table small {
        color: #64748b;
    }

.datahub-proof-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
}

    .datahub-proof-actions .btn {
        padding: 0.35rem 0.7rem;
        font-size: 0.78rem;
        margin: 0;
    }

@media (max-width: 720px) {
    .datahub-action-grid,
    .datahub-upload-grid {
        grid-template-columns: 1fr;
    }

    .datahub-footer form {
        max-width: none;
    }
}

.toast-approved .check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--success);
    color: white;
    display: grid;
    place-items: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

    .toast-approved .check .icon {
        width: 14px;
        height: 14px;
    }

.forum-meta {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.15rem;
}

.progress-wrap {
    margin-bottom: 1.15rem;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.45rem;
}

.progress-bar {
    height: 10px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    overflow: hidden;
}

    .progress-bar > span,
    .progress-bar__fill {
        display: block;
        height: 100%;
        min-width: 0;
        background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
        border-radius: 999px;
        transition: width 0.45s ease;
    }

/* Light cards (Services / Events grid) — readable seat meter */
.event-card .seats-progress {
    margin: 0.85rem 0 1.1rem;
    padding: 0.75rem 0.8rem;
    border-radius: 10px;
    background: #f4f6fb;
    border: 1px solid #e8eaee;
}

.seats-progress .progress-label {
    color: #475569;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

    .seats-progress .progress-label strong {
        color: var(--primary);
        font-size: 0.95rem;
        font-variant-numeric: tabular-nums;
        letter-spacing: 0.02em;
    }

.seats-progress .progress-bar {
    height: 12px;
    background: #e2e8f0;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.06);
}

.seats-progress .progress-bar__fill.is-active {
    background: linear-gradient(90deg, #d97706, #f59e0b 55%, #fbbf24);
    box-shadow: 0 0 0 1px rgba(217, 119, 6, 0.15);
}

.seats-progress .progress-sub {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 0.45rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
}

/* Dark forum cards (home hero) */
.seats-progress--on-dark {
    margin: 0.85rem 0 1rem;
    padding: 0;
    border: none;
    background: transparent;
}

.seats-progress--on-dark .progress-label {
    color: rgba(255, 255, 255, 0.78);
}

    .seats-progress--on-dark .progress-label strong {
        color: var(--gold-400);
    }

.seats-progress--on-dark .progress-bar {
    height: 12px;
    background: rgba(255, 255, 255, 0.16);
}

.seats-progress--on-dark .progress-sub {
    color: rgba(255, 255, 255, 0.6);
}

.forum-fee {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 0.85rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

    .forum-fee span {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.6);
    }

    .forum-fee strong {
        font-size: 1.25rem;
        color: var(--gold-400);
    }

    .forum-fee strong.fee-price {
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
        justify-content: flex-end;
        gap: 0.4rem 0.55rem;
    }

    .forum-fee .fee-was {
        font-size: 0.95rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.45);
        text-decoration: line-through;
        text-decoration-thickness: 1.5px;
    }

    .forum-fee .fee-now {
        font-size: 1.25rem;
        font-weight: 800;
        color: var(--gold-400);
    }

.forum-card .btn {
    width: 100%;
}

.forum-aside {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.toast-approved,
.whatsapp-chip {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.75rem 0.9rem;
    font-size: 0.85rem;
}

    .toast-approved .check {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: var(--success);
        color: white;
        display: grid;
        place-items: center;
        font-size: 0.75rem;
        flex-shrink: 0;
    }

    .whatsapp-chip a {
        color: #4ade80;
        font-weight: 700;
    }

    .whatsapp-chip .wa-icon,
    .wa-icon {
        color: #25d366;
        flex-shrink: 0;
    }

.wa-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.15rem;
}

.wa-link {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
}

.footer-contact a .wa-icon {
    color: #25d366;
}

/* —— Sections —— */
.section {
    padding: 4.5rem 0;
    background: transparent;
}

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

.section-dark {
    background: var(--accent);
    color: var(--accent-foreground);
    border-top: 2px solid var(--gold-400);
    border-bottom: 2px solid var(--gold-400);
}

.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.75rem;
}

    .section-head .eyebrow {
        margin-bottom: 0.65rem;
        color: var(--accent);
    }

.section-foot {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2.25rem;
}

.section-head h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.45rem);
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.section-dark .section-head h2,
.section-dark .stat-item strong {
    color: var(--navy-900);
}

.section-dark .stat-item span {
    color: var(--navy-900);
    opacity: 0.8;
}

.section-head p {
    color: var(--muted-foreground);
    font-size: 1.02rem;
}

.section-head-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2.25rem;
    text-align: left;
    max-width: none;
}

    .section-head-row .section-head {
        text-align: left;
        margin: 0;
        max-width: 560px;
        flex: 1 1 auto;
    }

    .section-head-row .link-arrow,
    .section-head-row .btn {
        flex: 0 0 auto;
        align-self: center;
        margin-top: 0;
        margin-bottom: 0;
    }

.link-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.25;
    white-space: nowrap;
    text-decoration: none;
    vertical-align: middle;
    padding: 0.35rem 0;
}

    .link-arrow .icon {
        width: 16px;
        height: 16px;
        display: block;
        flex-shrink: 0;
        margin: 0;
    }

    .link-arrow:hover {
        color: var(--accent);
    }

.form-back-link {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    text-align: center;
}

    .form-back-link .link-arrow {
        color: var(--primary);
    }

    .form-back-link .link-arrow:hover {
        color: var(--accent);
    }

/* —— Stats strip (amber, matches Rocket) —— */
.stats-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 0.65rem 0.5rem;
}

    .stat-item strong {
        display: block;
        font-size: 1.75rem;
        color: var(--primary);
        margin-bottom: 0.25rem;
        font-variant-numeric: tabular-nums;
    }

    .stat-item span {
        font-size: 0.8rem;
        color: var(--accent-foreground);
        opacity: 0.85;
    }

/* —— Cards / grids —— */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.offer-card,
.scheme-card,
.idea-card,
.story-card,
.leader-card,
.event-card,
.mvv-card {
    position: relative;
    background: var(--card);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 14px;
    padding: 1.6rem 1.5rem 1.55rem;
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.04), 0 10px 28px rgba(15, 23, 42, 0.08), 0 22px 48px rgba(26, 35, 126, 0.05);
    transition: box-shadow 0.35s ease, border-color 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
}

    .scheme-card:hover,
    .idea-card:hover,
    .event-card:hover,
    .leader-card:hover,
    .mvv-card:hover,
    .story-card:hover {
        box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08), 0 20px 40px rgba(15, 23, 42, 0.12), 0 32px 64px rgba(26, 35, 126, 0.1);
        transform: translateY(-6px) scale(1.015);
    }

/* —— Services brochure (stacked top → bottom) —— */
.svc-board-section {
    padding: 2rem 0 1rem;
    background: transparent;
}

.svc-board {
    --svc-navy: #0b1a3a;
    --svc-navy-mid: #132a55;
    --svc-gold: #d4a017;
    --svc-gold-soft: #f0c14b;
    --svc-paper: #fffdf8;
    --svc-tan: #f3e6c8;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    background: var(--svc-paper);
    border: 1px solid rgba(19, 42, 85, 0.14);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(11, 26, 58, 0.12);
}

.svc-board__col {
    padding: 1.35rem 1.4rem 1.25rem;
    min-width: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.svc-board__col--left,
.svc-board__col--right {
    justify-content: flex-start;
}

.svc-board__col--left .svc-board__service-list,
.svc-board__col--right .svc-board__service-list {
    flex: 0 0 auto;
}

.svc-board__col--left {
    background: linear-gradient(180deg, #fbf8f1 0%, #f5f1e8 100%);
    border-right: none;
    border-bottom: 1px solid rgba(19, 42, 85, 0.1);
    padding-bottom: 1.5rem;
}

.svc-board__col--right {
    background: linear-gradient(180deg, #f7f9fc 0%, #f0f3f8 100%);
    border-left: none;
    padding-top: 1.5rem;
    padding-bottom: 1.25rem;
}

.svc-board__ribbon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    background: linear-gradient(135deg, var(--svc-navy) 0%, var(--svc-navy-mid) 100%);
    color: #fff;
    border-radius: 8px;
    padding: 0.48rem 0.75rem;
    margin-bottom: 0.75rem;
    text-align: center;
    border: 1px solid rgba(212, 160, 23, 0.35);
}

.svc-board__ribbon h2,
.svc-board__ribbon h3 {
    margin: 0;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.svc-board__ribbon--sub {
    border-radius: 8px;
    margin-top: 0.9rem;
    margin-bottom: 0.6rem;
    padding: 0.42rem 0.65rem;
}

.svc-board__ribbon--tall {
    flex-direction: column;
    border-radius: 12px;
    padding: 0.7rem 0.75rem;
    gap: 0.15rem;
}

.svc-board__ribbon-script {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-size: 0.92rem;
    color: var(--svc-gold-soft);
    letter-spacing: 0.01em;
    text-transform: none;
    font-weight: 600;
    line-height: 1.25;
}

.svc-board__chev {
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid var(--svc-gold);
    flex-shrink: 0;
}

.svc-board__chev--flip {
    border-left: none;
    border-right: 7px solid var(--svc-gold);
}

.svc-board__service-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.svc-board__service {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 64px;
    gap: 0.75rem;
    align-items: center;
    background: #fff;
    border: 1px solid rgba(19, 42, 85, 0.08);
    border-radius: 12px;
    padding: 0.75rem 0.8rem;
    box-shadow: 0 4px 12px rgba(11, 26, 58, 0.04);
    min-width: 0;
}

.svc-board__svc-ico {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--svc-navy);
    color: #fff;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    overflow: hidden;
}

.svc-board__service--gold .svc-board__svc-ico {
    background: var(--svc-navy);
    color: #fff;
}

    .svc-board__svc-ico svg {
        width: 18px;
        height: 18px;
        display: block;
    }

.svc-board__svc-copy {
    min-width: 0;
}

    .svc-board__svc-copy strong {
        display: block;
        font-size: 0.78rem;
        font-weight: 800;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: var(--svc-navy);
        margin-bottom: 0.1rem;
    }

    .svc-board__svc-copy span {
        display: block;
        font-size: 0.78rem;
        line-height: 1.4;
        color: #4a5568;
    }

.svc-board__thumb {
    width: 54px;
    height: 42px;
    border-radius: 8px;
    background: #f1f5f9;
    border: 1px solid rgba(19, 42, 85, 0.08);
    display: grid;
    place-items: center;
    overflow: hidden;
    flex-shrink: 0;
}

    .svc-board__thumb svg {
        width: 100%;
        height: 100%;
        display: block;
    }

/* Social list — fixed icon column, perfect centering */
.svc-board__social-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
}

    .svc-board__social-list li {
        display: grid;
        grid-template-columns: 40px minmax(0, 1fr);
        column-gap: 0.7rem;
        align-items: center;
        background: #fff;
        border-radius: 10px;
        padding: 0.6rem 0.75rem;
        border: 1px solid rgba(19, 42, 85, 0.07);
        min-height: 56px;
    }

.svc-board__social-copy {
    min-width: 0;
}

    .svc-board__social-copy strong {
        display: block;
        font-size: 0.78rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.03em;
        color: var(--svc-navy);
        margin-bottom: 0.1rem;
        line-height: 1.2;
    }

    .svc-board__social-copy span {
        display: block;
        font-size: 0.7rem;
        color: #4a5568;
        line-height: 1.3;
    }

.svc-board__brand-ico {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    overflow: hidden;
    line-height: 0;
    box-sizing: border-box;
}

    .svc-board__brand-ico svg {
        width: 18px;
        height: 18px;
        display: block;
        flex-shrink: 0;
    }

.svc-board__brand-ico--ig {
    background: radial-gradient(circle at 30% 30%, #feda75, #fa7e1e 35%, #d62976 55%, #962fbf 75%, #4f5bd5);
}

.svc-board__brand-ico--fb { background: #1877f2; }
.svc-board__brand-ico--yt {
    background: #ff0000;
}

    .svc-board__brand-ico--yt svg {
        width: 20px;
        height: 20px;
    }
.svc-board__brand-ico--wa { background: #25d366; }

/* Marketplaces — 3 equal columns; logos without box chrome */
.svc-board__listings {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    flex: 0 0 auto;
}

.svc-board__listing {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    padding: 0.75rem 0.45rem 0.7rem;
    border: 1px solid rgba(19, 42, 85, 0.1);
    box-shadow: 0 4px 12px rgba(11, 26, 58, 0.05);
    min-height: 0;
}

.svc-board__listing-logo {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.45rem;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

    .svc-board__listing-logo img {
        max-width: 100%;
        max-height: 36px;
        width: auto;
        height: auto;
        object-fit: contain;
        display: block;
    }

.svc-board__listing-copy {
    margin: 0;
    font-size: 0.64rem;
    line-height: 1.35;
    color: #334155;
    font-weight: 600;
}

/* Center hero (navy branding + night skyline photo like brochure) */
.svc-board__hero {
    position: relative;
    flex: 1 1 auto;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #071028;
}

.svc-board__skyline-photo {
    position: absolute;
    inset: 0;
    background-image: var(--svc-skyline);
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    opacity: 1;
    pointer-events: none;
}

.svc-board__skyline-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 16, 40, 0.55) 0%, rgba(7, 16, 40, 0.25) 45%, rgba(7, 16, 40, 0.65) 100%);
}

.svc-board__hero-inner {
    position: relative;
    z-index: 1;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1rem 1.15rem;
    min-height: 0;
}

.svc-board__brand {
    text-align: center;
    position: relative;
    z-index: 1;
    padding-top: 0.1rem;
}

.svc-board__eagle {
    width: min(148px, 42%);
    height: auto;
    max-height: 118px;
    object-fit: contain;
    margin: 0 auto 0.35rem;
    display: block;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35));
}

.svc-board__logo {
    width: 92px;
    height: 92px;
    object-fit: contain;
    margin: 0 auto 0.45rem;
    border-radius: 50%;
    background: #0a1628;
    padding: 4px;
    box-shadow: 0 0 0 2px rgba(212, 160, 23, 0.55), 0 8px 20px rgba(0, 0, 0, 0.25);
    display: block;
}

.svc-board__brand-name {
    margin: 0 0 0.25rem;
    line-height: 1.05;
}

.svc-board__brand-line1 {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.65rem, 2.6vw, 2.15rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.06em;
}

.svc-board__brand-line2 {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.05rem, 1.7vw, 1.3rem);
    font-weight: 700;
    color: var(--svc-gold-soft);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 0.18rem;
}

.svc-board__rule {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.4rem auto;
    max-width: 220px;
}

    .svc-board__rule span {
        display: block;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--svc-gold), transparent);
        position: relative;
    }

    .svc-board__rule span::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        width: 7px;
        height: 7px;
        transform: translate(-50%, -50%) rotate(45deg);
        background: var(--svc-gold);
    }

.svc-board__brand-tag {
    margin: 0.2rem 0;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.35;
}

.svc-board__values {
    margin: 0.45rem 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--svc-gold-soft);
    letter-spacing: 0.05em;
}

.svc-board__pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding-top: 0.35rem;
}

.svc-board__pillar {
    text-align: center;
    padding: 0.45rem 0.25rem;
    background: rgba(7, 16, 40, 0.35);
    border-radius: 10px;
    border: 1px solid rgba(212, 160, 23, 0.2);
}

.svc-board__pillar-ico {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--svc-gold);
    color: var(--svc-gold-soft);
    display: grid;
    place-items: center;
    margin: 0 auto 0.4rem;
    background: rgba(11, 26, 58, 0.55);
}

    .svc-board__pillar-ico svg {
        width: 18px;
        height: 18px;
        display: block;
    }

.svc-board__pillar span:last-child {
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.95);
}

/* Compact gold-bordered CTA strip */
.svc-board__cta-panel {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, #0d2148 0%, #0a1836 100%);
    color: #fff;
    border-top: 3px solid var(--svc-gold);
    border-bottom: 3px solid var(--svc-gold);
    padding: 0.75rem 1rem 0.8rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 0 0 auto;
}

.svc-board__cta-script {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    color: var(--svc-gold-soft);
    line-height: 1.25;
}

.svc-board__cta-script--alt {
    color: #fff;
    font-size: clamp(0.98rem, 1.4vw, 1.15rem);
    position: relative;
}

.svc-board__cta-strong {
    margin: 0.2rem 0 0;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.4;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.94);
}

/* Contact block — beige/tan footer, vertical one-by-one list */
.svc-board__contact-block {
    background: linear-gradient(180deg, #f0d78a 0%, var(--svc-tan) 40%, #ead9b0 100%);
    padding: 0.8rem 1rem 0.95rem;
    flex: 0 0 auto;
}

.svc-board__regards {
    margin: 0 0 0.6rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--svc-navy);
    line-height: 1.35;
}

    .svc-board__regards em {
        font-style: italic;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--svc-navy);
    }

.svc-board__contact-bar {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 320px;
    width: 100%;
}

    .svc-board__contact-bar li {
        margin: 0;
        min-width: 0;
    }

    .svc-board__contact-bar a,
    .svc-board__contact-static {
        display: grid;
        grid-template-columns: 28px minmax(0, 1fr);
        column-gap: 0.65rem;
        align-items: center;
        width: 100%;
        min-width: 0;
        color: var(--svc-navy);
        text-decoration: none;
    }

    .svc-board__contact-bar a:hover .svc-board__contact-text {
        text-decoration: underline;
    }

.svc-board__contact-ico {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--svc-navy);
    color: var(--svc-gold-soft);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    overflow: hidden;
}

    .svc-board__contact-ico svg {
        width: 13px;
        height: 13px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        display: block;
    }

.svc-board__contact-text {
    min-width: 0;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.3;
    word-break: break-word;
}

/* Why Choose Us — compact 5-up with solid icon badges */
.svc-board__why-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.45rem;
    margin-bottom: 0.55rem;
    align-items: stretch;
}

.svc-board__why-item {
    background: #fff;
    border: 1px solid rgba(19, 42, 85, 0.1);
    border-radius: 12px;
    padding: 0.65rem 0.3rem 0.55rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    min-height: 0;
    box-shadow: 0 3px 10px rgba(11, 26, 58, 0.04);
}

.svc-board__why-ico {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0;
    color: #fff;
    background: linear-gradient(145deg, var(--svc-navy-mid), var(--svc-navy));
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(11, 26, 58, 0.18);
}

    .svc-board__why-ico svg {
        width: 20px;
        height: 20px;
        display: block;
    }

.svc-board__why-item span:last-child {
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    line-height: 1.25;
    color: #1e293b;
    margin-top: 0;
}

/* Unified CTA footer — one panel, no empty twin columns */
.svc-board__tail {
    margin-top: 0.75rem;
}

.svc-board__cta {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background:
        radial-gradient(ellipse 80% 90% at 100% 0%, rgba(240, 193, 75, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse 70% 80% at 0% 100%, rgba(37, 99, 235, 0.2) 0%, transparent 50%),
        linear-gradient(145deg, #0a1733 0%, #132a55 48%, #0d2148 100%);
    color: #fff;
    border: 1px solid rgba(240, 193, 75, 0.35);
    box-shadow: 0 12px 32px rgba(11, 26, 58, 0.22);
}

.svc-board__cta::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--svc-gold-soft), var(--svc-gold), #b8860b);
    border-radius: 16px 0 0 16px;
}

.svc-board__cta-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem 1.25rem;
    align-items: center;
    padding: 1.1rem 1.2rem 1rem 1.35rem;
}

.svc-board__future-copy {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    min-width: 0;
}

.svc-board__cta-kicker {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--svc-gold-soft);
}

.svc-board__future-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: none;
    color: #fff;
    line-height: 1.3;
}

.svc-board__cta-sub {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.45;
    color: rgba(226, 232, 240, 0.88);
    max-width: 36rem;
}

.svc-board__cta-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    margin-top: 0.35rem;
}

.svc-board__cta-wa {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
    transition: transform 0.15s ease, filter 0.15s ease;
}

    .svc-board__cta-wa svg {
        width: 16px;
        height: 16px;
        display: block;
        flex-shrink: 0;
    }

    .svc-board__cta-wa:hover {
        transform: translateY(-1px);
        filter: brightness(1.06);
        color: #fff;
    }

.svc-board__qmark {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
    line-height: 0;
    color: var(--svc-gold);
    vertical-align: -0.08em;
    margin-right: 0.1rem;
}

.svc-board__qmark--end {
    margin-left: 0.1rem;
    margin-right: 0;
}

.svc-board__bars {
    display: flex;
    align-items: flex-end;
    gap: 0.2rem;
    height: 28px;
    width: max-content;
    opacity: 0.95;
}

    .svc-board__bars span {
        width: 9px;
        border-radius: 2px 2px 0 0;
        background: linear-gradient(180deg, var(--svc-gold-soft), var(--svc-gold));
        flex-shrink: 0;
    }

    .svc-board__bars span:nth-child(1) { height: 30%; }
    .svc-board__bars span:nth-child(2) { height: 48%; }
    .svc-board__bars span:nth-child(3) { height: 62%; }
    .svc-board__bars span:nth-child(4) { height: 80%; }
    .svc-board__bars span:nth-child(5) { height: 100%; }

.svc-board__qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    text-align: center;
    text-decoration: none;
    margin: 0;
    flex-shrink: 0;
    transition: transform 0.15s ease;
}

    .svc-board__qr:hover {
        transform: translateY(-2px);
    }

.svc-board__qr-ring {
    display: grid;
    place-items: center;
    padding: 0.4rem;
    border-radius: 14px;
    background: #fff;
    box-shadow:
        0 0 0 2px rgba(240, 193, 75, 0.55),
        0 8px 22px rgba(0, 0, 0, 0.28);
}

.svc-board__qr-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    display: block;
    border-radius: 4px;
    background: #fff;
}

.svc-board__qr-label {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--svc-gold-soft);
}

/* Follow strip: full-width bar under the main CTA (no tall empty box) */
.svc-board__follow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    padding: 0.8rem 1.15rem 0.85rem 1.35rem;
    margin: 0;
    border-top: 1px solid rgba(240, 193, 75, 0.22);
    background: rgba(0, 0, 0, 0.18);
}

.svc-board__follow-text {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
    min-width: 0;
}

.svc-board__follow-label {
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--svc-gold-soft);
    margin: 0;
    line-height: 1.2;
}

.svc-board__follow-hint {
    font-size: 0.7rem;
    color: rgba(203, 213, 225, 0.85);
    line-height: 1.3;
}

.svc-board__follow-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-items: center;
    justify-content: flex-end;
    margin-left: 0;
}

.svc-board__follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 38px;
    padding: 0.35rem 0.7rem 0.35rem 0.4rem;
    border-radius: 999px;
    color: #fff;
    border: 0;
    overflow: hidden;
    line-height: 1;
    flex-shrink: 0;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

    .svc-board__follow-btn svg {
        width: 18px;
        height: 18px;
        display: block;
        flex-shrink: 0;
        margin-left: 0.15rem;
    }

    .svc-board__follow-btn > span {
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.02em;
        white-space: nowrap;
        padding-right: 0.15rem;
    }

    .svc-board__follow-btn:hover {
        transform: translateY(-2px);
        filter: brightness(1.08);
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
        color: #fff;
    }

.svc-board__follow-btn--ig {
    background: radial-gradient(circle at 30% 30%, #feda75, #fa7e1e 35%, #d62976 55%, #962fbf 75%, #4f5bd5);
}

.svc-board__follow-btn--fb { background: #1877f2; }
.svc-board__follow-btn--yt {
    background: #ff0000;
}

    .svc-board__follow-btn--yt svg {
        width: 18px;
        height: 18px;
    }

.svc-board__follow-btn--wa { background: #25d366; }

.svc-board__col--right {
    padding-bottom: 1.25rem;
}

.svc-board__col--right .svc-board__service-list {
    margin-bottom: 0.25rem;
}

.svc-board__ribbon {
    max-width: none;
    width: 100%;
}

.svc-board__ribbon--tall {
    max-width: none;
}

/* Membership duration picker (Subscribe) */
.duration-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.65rem;
}

.duration-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.85rem 0.45rem;
    border: 2px solid rgba(19, 42, 85, 0.12);
    border-radius: 12px;
    background: #f8fafc;
    cursor: pointer;
    text-align: center;
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

    .duration-card input {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    .duration-card.is-active,
    .duration-card:has(input:checked) {
        border-color: var(--primary, #1a237e);
        background: #fff;
        box-shadow: 0 0 0 1px rgba(26, 35, 126, 0.15), 0 8px 18px rgba(15, 23, 42, 0.08);
    }

.duration-card__months {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--primary, #1a237e);
}

.duration-card__price {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--muted-foreground, #64748b);
}

@media (max-width: 900px) {
    .svc-board__service-list,
    .svc-board__social-list {
        grid-template-columns: 1fr;
    }

    .svc-board__cta-top {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .svc-board__cta-sub {
        margin-inline: auto;
    }

    .svc-board__cta-actions {
        justify-content: center;
    }

    .svc-board__follow {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .svc-board__follow-links {
        justify-content: center;
    }

    .svc-board__why-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .svc-board__col--left,
    .svc-board__col--right {
        border-bottom: 1px solid rgba(19, 42, 85, 0.1);
        padding: 1.15rem 1.05rem 1.2rem;
    }

    .svc-board__col--right {
        border-bottom: none;
    }
}

@media (max-width: 720px) {
    .svc-board-section {
        padding: 1.35rem 0 0.35rem;
    }

    .svc-board {
        border-radius: 14px;
    }

    .svc-board__col {
        padding: 1rem 0.85rem 1.1rem;
    }

    .svc-board__service {
        grid-template-columns: 36px minmax(0, 1fr) 50px;
    }

    .svc-board__listings {
        grid-template-columns: 1fr;
    }

    .svc-board__listing {
        flex-direction: row;
        text-align: left;
        min-height: 0;
        gap: 0.65rem;
        padding: 0.55rem 0.65rem;
    }

    .svc-board__listing-logo {
        width: 96px;
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .svc-board__why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .svc-board__cta-top {
        padding: 1rem 0.9rem 0.85rem 1rem;
    }

    .svc-board__future-title {
        font-size: 0.95rem;
    }

    .svc-board__follow {
        padding: 0.75rem 0.85rem 0.85rem;
    }

    .svc-board__follow-btn > span {
        display: none;
    }

    .svc-board__follow-btn {
        width: 40px;
        height: 40px;
        min-height: 40px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }

        .svc-board__follow-btn svg {
            margin-left: 0;
        }

    .svc-board__qr-img {
        width: 92px;
        height: 92px;
    }

    .svc-board__contact-bar {
        max-width: none;
    }

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

@media (max-width: 420px) {
    .svc-board__service {
        grid-template-columns: 34px minmax(0, 1fr);
    }

    .svc-board__thumb {
        display: none;
    }

    .svc-board__why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .svc-board__svc-copy strong {
        font-size: 0.74rem;
    }

    .svc-board__svc-copy span {
        font-size: 0.68rem;
    }
}

/* —— Offer / services tiles + hover-forward —— */
.dock-grid {
    align-items: stretch;
    padding-block: 0.85rem 1.5rem;
    overflow: visible;
}

    .dock-grid .offer-card {
        transform-origin: center center;
        transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
        z-index: 1;
        will-change: transform;
    }

        .dock-grid .offer-card.is-dock-focus {
            z-index: 6;
            transform: translateY(-10px) scale(1.06);
            box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12), 0 28px 56px rgba(26, 35, 126, 0.14);
        }

/* Services / What We Offer — navy top accent + gold-tinted icon */
.offer-card {
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-top: 3px solid var(--primary);
    border-radius: 14px;
    padding: 1.6rem 1.5rem 1.55rem;
    background: var(--card);
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.04), 0 10px 28px rgba(15, 23, 42, 0.08), 0 22px 48px rgba(26, 35, 126, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

    .offer-card::before {
        display: none;
    }

    .offer-card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient( 120deg, transparent 28%, rgba(255, 255, 255, 0.55) 48%, transparent 68% );
        transform: translateX(-130%) translateY(-10%);
        pointer-events: none;
        opacity: 0;
        z-index: 2;
    }

    .offer-card:hover::after,
    .dock-grid .offer-card.is-dock-focus::after {
        opacity: 1;
        animation: card-shine 0.9s ease forwards;
    }

    .offer-card .offer-icon {
        width: 44px;
        height: 44px;
        border-radius: 10px;
        background: rgba(245, 158, 11, 0.12);
        border: 1px solid rgba(245, 158, 11, 0.22);
        color: var(--primary);
        box-shadow: none;
        margin-bottom: 1rem;
        transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
        position: relative;
        z-index: 1;
    }

        .offer-card .offer-icon .icon {
            width: 22px;
            height: 22px;
            color: var(--primary);
        }

    .offer-card:hover .offer-icon,
    .dock-grid .offer-card.is-dock-focus .offer-icon {
        transform: scale(1.1) rotate(-4deg);
        background: rgba(245, 158, 11, 0.2);
        box-shadow: 0 6px 14px rgba(245, 158, 11, 0.28);
    }

    .offer-card h3,
    .offer-card p {
        position: relative;
        z-index: 1;
    }

    .offer-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.55rem;
        color: var(--primary);
        padding-left: 0;
        min-height: 2.5em;
        display: flex;
        align-items: flex-end;
    }

    .offer-card p {
        font-size: 0.92rem;
        color: var(--muted-foreground);
        line-height: 1.55;
        padding-left: 0;
        margin: 0;
        width: 100%;
    }

.offer-card__link {
    margin-top: auto;
    padding-top: 1rem;
    color: var(--primary);
    font-size: 0.84rem;
    font-weight: 700;
}

.subscription-grid,
.news-grid,
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

/* Subscriptions: equal columns, stretch so left/right/center cards match height */
.subscription-grid {
    align-items: stretch;
    max-width: 1080px;
    margin-inline: auto;
}

.subscription-card,
.news-card,
.testimonial-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.subscription-card {
    display: flex;
    flex-direction: column;
    border-top: 3px solid var(--primary);
    min-height: 100%;
    height: 100%;
}

    .subscription-card.is-featured {
        border-color: rgba(245, 158, 11, 0.55);
        border-top-color: var(--accent);
        transform: none;
        box-shadow: 0 12px 32px rgba(245, 158, 11, 0.12), 0 10px 28px rgba(15, 23, 42, 0.06);
    }

.subscription-card__label,
.news-card__date {
    color: var(--gold-600);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.subscription-card h3,
.news-card h3,
.testimonial-card h3 {
    margin: 0.55rem 0;
}

.subscription-card__price {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0.35rem 0 0.8rem;
}

.subscription-card ul {
    display: grid;
    gap: 0.55rem;
    margin-bottom: 1.25rem;
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

    .subscription-card ul li::before {
        content: '✓';
        color: var(--success);
        font-weight: 800;
        margin-right: 0.5rem;
    }

.subscription-card .btn {
    margin-top: auto;
}

.testimonial-rating {
    color: var(--accent);
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.testimonial-card blockquote {
    color: var(--foreground);
    margin-bottom: 1rem;
}

.testimonial-card footer {
    color: var(--muted-foreground);
    font-size: 0.84rem;
    font-weight: 600;
}

.feedback-form {
    max-width: 760px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.feedback-rating {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

    .feedback-rating label {
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
        padding: 0.55rem 0.7rem;
        background: var(--navy-50);
        border-radius: 8px;
        cursor: pointer;
    }

/* About MVV — centered soft navy wash */
.mvv-card {
    text-align: center;
    background: linear-gradient(180deg, #eef0fb 0%, #ffffff 58%);
    border: 1px solid rgba(170, 179, 235, 0.4);
    padding: 1.75rem 1.4rem;
}

    .mvv-card:hover {
        border-color: rgba(26, 35, 126, 0.28);
    }

    .mvv-card h4 {
        position: relative;
        display: inline-block;
        padding-bottom: 0.55rem;
        margin-bottom: 0.75rem;
    }

        .mvv-card h4::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 0;
            width: 36px;
            height: 2px;
            background: var(--accent);
            transform: translateX(-50%);
        }

/* MSME schemes — gold top + category emphasis */
.scheme-card {
    border-top: 3px solid var(--accent);
    background: #fff;
}

    .scheme-card:hover {
        border-top-color: var(--gold-600);
        border-color: rgba(226, 232, 240, 0.9);
    }

    .scheme-card .scheme-cat {
        display: inline-block;
        background: rgba(245, 158, 11, 0.12);
        color: var(--gold-600);
        padding: 0.2rem 0.5rem;
        border-radius: 4px;
        margin-bottom: 0.65rem;
    }

/* Leadership — centered header, start-aligned grey copy */
.leader-card {
    text-align: center;
    padding: 1.85rem 1.4rem 1.5rem;
    background: #fff;
    border: 1px solid var(--border);
}

    .leader-card .leader-photo {
        margin-left: auto;
        margin-right: auto;
        box-shadow: 0 0 0 3px #fff, 0 0 0 5px rgba(26, 35, 126, 0.18);
    }

    .leader-card .leader-meta {
        margin-top: 0.85rem;
        padding-top: 0.85rem;
        border-top: 1px solid var(--border);
        align-items: center;
    }

    .leader-card .leader-vertical,
    .leader-card > p:not(.leader-title) {
        text-align: start;
        margin-left: 0;
        margin-right: 0;
        max-width: none;
    }

/* Events — soft ticket / schedule card */
.event-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfd 100%);
    border: 1px solid var(--border);
    padding: 1.25rem 1.5rem 0;
}

.event-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px dashed rgba(148, 163, 184, 0.45);
    position: relative;
    z-index: 1;
}

.event-card .event-footer {
    margin: auto -1.5rem 0;
    padding: 1rem 1.5rem;
    background: rgba(238, 240, 251, 0.65);
    border-top: 1px solid var(--border);
    border-radius: 0 0 14px 14px;
    margin-top: auto;
}

/* Opportunities — soft surface + investment emphasis */
.idea-card {
    background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 70%);
    border: 1px solid rgba(226, 232, 240, 0.95);
}

    .idea-card:hover {
        background: #fff;
        border-color: rgba(170, 179, 235, 0.45);
    }

    .idea-card .idea-invest {
        background: rgba(255, 255, 255, 0.7);
        border: 1px solid rgba(226, 232, 240, 0.9);
        border-radius: 8px;
        padding: 0.75rem 0.85rem;
        margin-top: 1rem;
    }

/* Success stories — quote-led editorial */
.story-card {
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: #fff;
    padding-left: 1.35rem;
}

    .story-card::before {
        content: '';
        position: absolute;
        left: 0;
        top: 1.25rem;
        bottom: 1.25rem;
        width: 3px;
        background: var(--accent);
        border-radius: 2px;
    }

    .story-card blockquote::before {
        color: var(--accent);
    }

.offer-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--navy-50);
    color: var(--primary);
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(213, 217, 245, 0.8);
}

.offer-card h3,
.scheme-card h3,
.idea-card h3,
.event-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.55rem;
    color: var(--primary);
}

.offer-card p,
.scheme-card p,
.idea-card p {
    font-size: 0.92rem;
    color: var(--muted-foreground);
}

/* —— About —— */
.about-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: start;
}

.about-copy h2 {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    margin-bottom: 1rem;
    color: var(--primary);
}

.about-copy p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    font-size: 1.02rem;
}

.founder-card {
    background: linear-gradient( 135deg, rgba(10, 22, 40, 0.98) 0%, rgba(13, 31, 60, 0.96) 50%, rgba(26, 47, 78, 0.98) 100% );
    color: var(--primary-foreground);
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.18);
}

    .founder-card .role {
        color: var(--gold-400);
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        margin-bottom: 0.4rem;
    }

    .founder-card h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
        color: var(--primary-foreground);
    }

    .founder-card .addr {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 1rem;
    }

    .founder-card .contacts {
        display: flex;
        flex-direction: column;
        gap: 0.45rem;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

        .founder-card .contacts a:hover {
            color: var(--gold-400);
        }

.founder-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

    .founder-stats strong {
        display: block;
        font-size: 1.35rem;
        color: var(--gold-400);
    }

    .founder-stats span {
        font-size: 0.72rem;
        color: rgba(255, 255, 255, 0.6);
    }

.mvv-card h4 {
    color: var(--primary);
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.55rem;
}

.mvv-card p {
    font-size: 0.92rem;
    color: var(--muted-foreground);
}

/* —— Leadership —— */
.leader-card {
    text-align: center;
}

.leader-photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--primary), var(--navy-900));
    color: var(--gold-400);
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    border: 2px solid var(--navy-100);
}

.leader-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--warning-bg);
    padding: 0.25rem 0.55rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.leader-card h3 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 0.2rem;
}

.leader-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--foreground);
    margin-bottom: 0.15rem;
}

.leader-vertical {
    font-size: 0.8rem;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
}

.leader-card p {
    font-size: 0.88rem;
    color: var(--muted-foreground);
    margin-bottom: 0.85rem;
}

.leader-meta {
    font-size: 0.82rem;
    color: var(--primary);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.leader-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.88rem;
    color: var(--muted-foreground);
}

/* —— Events —— */
.event-id {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--muted-foreground);
}

.event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin: 0.75rem 0 1rem;
}

.tag {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    background: var(--secondary);
    color: var(--primary);
    border: 1px solid var(--border);
}

.event-meta {
    font-size: 0.88rem;
    color: var(--muted-foreground);
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 1.15rem;
    flex: 1;
}

    .event-meta .meta-row .icon {
        color: var(--primary);
        opacity: 0.75;
    }

.event-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

    .event-footer .fee strong {
        display: block;
        color: var(--primary);
        font-size: 1.05rem;
    }

    .event-footer .fee strong.fee-price {
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
        gap: 0.4rem 0.55rem;
    }

    .event-footer .fee .fee-was {
        font-size: 0.92rem;
        font-weight: 600;
        color: #94a3b8;
        text-decoration: line-through;
        text-decoration-thickness: 1.5px;
    }

    .event-footer .fee .fee-now {
        font-size: 1.1rem;
        font-weight: 800;
        color: var(--primary);
    }

    .event-footer .fee span {
        font-size: 0.72rem;
        color: var(--muted-foreground);
    }

    .event-footer .fee span.fee-was,
    .event-footer .fee span.fee-now {
        font-size: inherit;
        color: inherit;
    }

/* —— Schemes —— */
.scheme-cat {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.45rem;
}

/* —— Ideas —— */
.idea-top {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.65rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    border: 1px solid transparent;
    letter-spacing: 0.02em;
}

.pill-trending {
    background: rgba(245, 158, 11, 0.18);
    color: #b45309;
    border-color: rgba(217, 119, 6, 0.35);
}

.pill-high {
    background: rgba(22, 163, 74, 0.14);
    color: #15803d;
    border-color: rgba(22, 163, 74, 0.3);
}

.pill-vhigh {
    background: rgba(37, 99, 235, 0.14);
    color: #1d4ed8;
    border-color: rgba(37, 99, 235, 0.3);
}

.pill-steady {
    background: rgba(100, 116, 139, 0.12);
    color: #475569;
    border-color: rgba(100, 116, 139, 0.25);
}

.idea-sector {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
}

.idea-invest {
    margin: 1rem 0 0.75rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
}

    .idea-invest span {
        color: var(--muted-foreground);
        display: block;
        font-size: 0.75rem;
        margin-bottom: 0.15rem;
    }

    .idea-invest strong {
        color: var(--primary);
    }

/* —— Stories —— */
.story-card {
    display: flex;
    flex-direction: column;
}

    .story-card blockquote {
        font-size: 0.98rem;
        color: var(--foreground);
        flex: 1;
        margin-bottom: 1.25rem;
        quotes: '"' '"';
        position: relative;
    }

        .story-card blockquote::before {
            content: open-quote;
            font-size: 1.35em;
            color: var(--accent);
            font-weight: 800;
            line-height: 0;
            margin-right: 0.15em;
            vertical-align: -0.15em;
        }

        .story-card blockquote::after {
            content: close-quote;
            font-size: 1.35em;
            color: var(--accent);
            font-weight: 800;
            line-height: 0;
            margin-left: 0.1em;
            vertical-align: -0.15em;
        }

.story-author strong {
    display: block;
    color: var(--primary);
    font-size: 0.95rem;
}

.story-author span {
    font-size: 0.82rem;
    color: var(--muted-foreground);
}

.story-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.75rem;
}

/* —— CTA band (centered, compact) —— */
.cta-band {
    background: linear-gradient( 135deg, rgba(10, 22, 40, 0.98) 0%, rgba(13, 31, 60, 0.95) 55%, rgba(26, 47, 78, 0.95) 100% );
    color: var(--primary-foreground);
    padding: 2.75rem 0 2.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(251, 191, 36, 0.22);
}

.cta-band-inner {
    width: 100%;
    max-width: 46rem;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-band .cta-logo {
    width: auto !important;
    height: 78px !important;
    max-width: min(280px, 80vw) !important;
    margin: 0 auto 0.95rem;
    flex-shrink: 0;
    box-shadow: none;
    background: transparent !important;
    border-radius: 0 !important;
    object-fit: contain !important;
    filter: none;
}

.cta-band .eyebrow {
    margin-bottom: 0.45rem;
}

.cta-band h2 {
    font-size: clamp(1.35rem, 2.6vw, 1.85rem);
    margin: 0 auto 0.55rem;
    max-width: 30ch;
    color: var(--primary-foreground);
    line-height: 1.25;
}

.cta-band .cta-lead {
    color: rgba(255, 255, 255, 0.72);
    max-width: 50ch;
    margin: 0 auto 1.25rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cta-band .btn-group {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.cta-band .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    min-width: 10.5rem;
}

/* —— Footer —— */
.site-footer {
    background: #0b1220;
    color: rgba(255, 255, 255, 0.68);
    padding: 2.5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.9fr 0.9fr 1.7fr;
    gap: 1.75rem 1.5rem;
    margin-bottom: 1.75rem;
    align-items: start;
}

.footer-contact {
    min-width: 0;
}

.footer-brand .logo {
    margin-bottom: 0.75rem;
}

.footer-brand .logo-img {
    width: auto;
    height: 56px;
    max-width: min(200px, 100%);
    background: transparent;
    padding: 0;
}

.footer-brand > p:not(.footer-motto) {
    font-size: 0.88rem;
    max-width: 36ch;
    margin-bottom: 0.65rem;
    line-height: 1.5;
}

.footer-motto {
    color: var(--gold-400);
    font-style: italic;
    font-size: 0.84rem;
    margin: 0;
    line-height: 1.4;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
    padding-bottom: 0.45rem;
    border-bottom: 2px solid rgba(251, 191, 36, 0.45);
    display: inline-block;
}

.footer-col a {
    display: block;
    font-size: 0.86rem;
    padding: 0.25rem 0;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.68);
    transition: color 0.2s, padding-left 0.2s;
}

    .footer-col a:hover {
        color: var(--gold-400);
        padding-left: 0.2rem;
    }

.footer-contact a {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    padding: 0.35rem 0;
    min-width: 0;
}

    .footer-contact a span {
        overflow-wrap: break-word;
        word-break: keep-all;
        white-space: nowrap;
        font-size: 0.8rem;
        line-height: 1.35;
    }

    .footer-contact a:hover {
        padding-left: 0;
    }

.footer-contact .ico {
    width: 1rem;
    height: 1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
    color: var(--gold-400);
}

    .footer-contact .ico.icon-fill {
        color: #25d366;
    }

.footer-bottom {
    background: #050914;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
    padding: 1.05rem max(1.25rem, calc((100vw - var(--max)) / 2 + 1.25rem));
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem 1.25rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.48);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.62);
    font-weight: 600;
}

    .footer-legal a:hover {
        color: var(--gold-400);
    }

/* —— Page hero (inner pages) —— */
.page-hero {
    background: linear-gradient( 125deg, #0a1628 0%, #122844 55%, #1a2f4e 100% );
    color: var(--primary-foreground);
    padding: 1.75rem 0 1.65rem;
    position: relative;
    border-bottom: 3px solid var(--gold-500);
}

    .page-hero::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 50% 80% at 90% 20%, rgba(245, 158, 11, 0.12), transparent 55%), radial-gradient(ellipse 40% 60% at 10% 90%, rgba(99, 120, 220, 0.18), transparent 50%);
        pointer-events: none;
    }

    .page-hero .container {
        position: relative;
        z-index: 1;
    }

.page-hero-logo {
    display: none !important;
}

.page-hero .eyebrow {
    color: var(--gold-400);
    margin-bottom: 0.65rem;
    letter-spacing: 0.14em;
}

.page-hero h1 {
    font-size: clamp(1.85rem, 3.8vw, 2.55rem);
    margin-bottom: 0.7rem;
    color: var(--primary-foreground);
    max-width: 18ch;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.74);
    max-width: 54ch;
    font-size: 1.02rem;
    line-height: 1.65;
}

/* —— Contact —— */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-info h2 {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 1.05rem 1.1rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.04), 0 10px 24px rgba(15, 23, 42, 0.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

    .contact-item:hover {
        box-shadow: 0 4px 8px rgba(15, 23, 42, 0.05), 0 14px 32px rgba(15, 23, 42, 0.09);
        transform: translateY(-2px);
    }

    .contact-item .ico {
        width: 40px;
        height: 40px;
        border-radius: 8px;
        background: var(--navy-50);
        display: grid;
        place-items: center;
        flex-shrink: 0;
        font-size: 1.1rem;
    }

    .contact-item strong {
        display: block;
        font-size: 0.82rem;
        color: var(--muted-foreground);
        font-weight: 600;
        margin-bottom: 0.15rem;
    }

    .contact-item a,
    .contact-item span {
        font-weight: 700;
        color: var(--primary);
    }

.contact-form {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem 1.75rem;
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.04), 0 12px 32px rgba(15, 23, 42, 0.06);
}

    .contact-form h3 {
        font-size: 1.35rem;
        color: var(--foreground);
        margin-bottom: 0.35rem;
    }

    .contact-form .form-lead {
        font-size: 0.92rem;
        color: var(--muted-foreground);
        margin-bottom: 1.5rem;
        padding-bottom: 1.15rem;
        border-bottom: 1px solid var(--border);
    }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1rem;
}

.form-row {
    margin-bottom: 1.15rem;
}

    .form-row.full {
        grid-column: 1 / -1;
    }

    .form-row label {
        display: block;
        font-size: 0.88rem;
        font-weight: 600;
        color: #2d3748;
        margin-bottom: 0.4rem;
    }

    .form-row label .req,
    label .req,
    .req {
        color: #c62828;
        font-weight: 800;
        margin-left: 0.1rem;
    }

    .register-form input.is-invalid,
    .register-form select.is-invalid,
    .register-form textarea.is-invalid,
    form[data-validate] input.is-invalid,
    form[data-validate] select.is-invalid,
    form[data-validate] textarea.is-invalid,
    .tel-group.is-invalid {
        border-color: #c62828 !important;
        box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.18);
        outline: none;
    }

    .form-row .field-hint {
        display: block;
        margin-top: 0.3rem;
        font-size: 0.75rem;
        color: #718096;
        font-weight: 400;
    }

    .form-row input,
    .form-row select,
    .form-row textarea {
        width: 100%;
        padding: 0.7rem 0.85rem;
        border: 1px solid #e2e8f0;
        border-radius: 6px;
        font-family: inherit;
        font-size: 0.95rem;
        color: var(--foreground);
        background: #ffffff;
        transition: border-color 0.2s, box-shadow 0.2s;
    }

        .form-row input::placeholder,
        .form-row textarea::placeholder {
            color: #a0aec0;
        }

        .form-row input:focus,
        .form-row select:focus,
        .form-row textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.12);
            background: #fff;
        }

    .form-row textarea {
        min-height: 110px;
        resize: vertical;
    }

    .form-row select {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 0.85rem center;
        padding-right: 2.25rem;
    }

.form-msg {
    display: none;
    margin-top: 0.85rem;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

    .form-msg.show {
        display: block;
        background: var(--success-bg);
        color: var(--success);
    }

/* —— Floating action buttons —— */
.fab-stack {
    position: fixed;
    right: max(1rem, env(safe-area-inset-right, 0px));
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
    z-index: 250;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
    pointer-events: none;
}

    .fab-stack > * {
        pointer-events: auto;
    }

.fab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.12), 0 14px 28px rgba(15, 23, 42, 0.16);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
}

    .fab:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 14px rgba(15, 23, 42, 0.14), 0 18px 32px rgba(15, 23, 42, 0.18);
    }

    .fab .icon {
        width: 18px;
        height: 18px;
    }

.fab-updates {
    min-height: 48px;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--navy-900));
    color: #fff;
    font-size: 0.82rem;
    animation: fab-highlight 2.2s ease-in-out infinite;
}

    .fab-updates .icon {
        color: var(--gold-400);
    }

    .fab-updates:hover {
        animation-play-state: paused;
    }

.fab-whatsapp {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    opacity: 1;
    visibility: visible;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.35), 0 12px 24px rgba(15, 23, 42, 0.12);
    animation: fab-soft-float 3.6s ease-in-out infinite;
}

    .fab-whatsapp:hover {
        filter: brightness(1.05);
        color: #fff;
    }

    .fab-whatsapp .icon {
        width: 22px;
        height: 22px;
        color: #fff;
    }

.fab-top {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    border: 1px solid rgba(226, 232, 240, 0.95);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
}

    .fab-top.is-visible {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        animation: fab-soft-float 3.6s ease-in-out infinite;
    }

@media (max-width: 860px) {
    .fab-stack {
        right: max(0.85rem, env(safe-area-inset-right, 0px));
        bottom: max(0.85rem, env(safe-area-inset-bottom, 0px));
        gap: 0.7rem;
    }

    .fab-label {
        display: none;
    }

    .fab-updates {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
        padding: 0;
        border-radius: 50%;
    }

    .fab-whatsapp,
    .fab-top {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
    }
}

@media (max-width: 480px) {
    .fab-stack {
        right: max(0.75rem, env(safe-area-inset-right, 0px));
        bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
    }
}

/* —— Feature updates popup —— */
.updates-modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: grid;
    place-items: center;
    padding: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

    .updates-modal.is-open {
        opacity: 1;
        visibility: visible;
    }

.updates-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, 0.62);
    backdrop-filter: blur(3px);
}

.updates-modal__dialog {
    position: relative;
    width: min(100%, 560px);
    max-height: none;
    overflow: visible;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(10, 22, 40, 0.35);
    z-index: 1;
}

@media (max-height: 720px) {
    .updates-modal__dialog {
        max-height: 94vh;
        overflow-y: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

        .updates-modal__dialog::-webkit-scrollbar {
            width: 0;
            height: 0;
        }
}

.updates-modal__close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.15rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    display: grid;
    place-items: center;
}

    .updates-modal__close:hover {
        background: rgba(255, 255, 255, 0.22);
    }

.updates-modal__head {
    position: relative;
    text-align: center;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(145deg, #0f1450 0%, #1a237e 55%, #283593 100%);
    color: #fff;
    overflow: hidden;
}

    .updates-modal__head::before,
    .updates-modal__head::after {
        content: '';
        position: absolute;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.06);
        pointer-events: none;
    }

    .updates-modal__head::before {
        width: 180px;
        height: 180px;
        top: -60px;
        left: -40px;
    }

    .updates-modal__head::after {
        width: 140px;
        height: 140px;
        right: -30px;
        bottom: -50px;
    }

.updates-modal__badge {
    position: relative;
    width: 48px;
    height: 48px;
    margin: 0 auto 0.85rem;
    border-radius: 12px;
    border: 1.5px solid rgba(251, 191, 36, 0.65);
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
}

    .updates-modal__badge img {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        object-fit: contain;
    }

.updates-modal__eyebrow {
    position: relative;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 0.45rem;
}

.updates-modal__head h2 {
    position: relative;
    font-size: 1.35rem;
    color: #fff;
    margin: 0;
    line-height: 1.25;
}

.updates-modal__body {
    padding: 1.25rem 1.65rem 1.5rem;
}

.updates-modal__intro {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    margin-bottom: 0.85rem;
    line-height: 1.5;
}

.updates-modal .form-row {
    margin-bottom: 0.7rem;
}

    .updates-modal .form-row label {
        font-size: 0.82rem;
    }

.updates-modal__actions {
    display: grid;
    gap: 0.65rem;
    margin-top: 0.35rem;
}

.updates-modal__secondary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
}

    .updates-modal__secondary a,
    .updates-modal__secondary button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.65rem 0.5rem;
        border-radius: 8px;
        border: 1px solid #e2e8f0;
        background: #fff;
        color: #64748b;
        font-family: inherit;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        cursor: pointer;
    }

        .updates-modal__secondary a:hover,
        .updates-modal__secondary button:hover {
            border-color: var(--navy-200);
            color: var(--primary);
        }

.updates-modal__submit {
    width: 100%;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-500), #fbbf24);
    color: #0f1450;
    border: none;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.35);
}

    .updates-modal__submit:hover {
        filter: brightness(1.04);
    }

.updates-modal__note {
    margin-top: 0.75rem;
    font-size: 0.72rem;
    color: #94a3b8;
    text-align: center;
}

.updates-modal__success {
    display: none;
    text-align: center;
    padding: 0.5rem 0 0.25rem;
}

    .updates-modal__success.is-visible {
        display: block;
    }

    .updates-modal__success p {
        font-size: 0.95rem;
        color: var(--primary);
        font-weight: 600;
    }

/* —— Reveal —— */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease, transform 0.55s ease;
    transition-delay: var(--reveal-delay, 0ms);
}

    .reveal.visible {
        opacity: 1;
        transform: none;
    }

/* —— Subtle theme motion —— */
@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes soft-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.35);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(245, 158, 11, 0);
    }
}

@keyframes card-shine {
    0% {
        transform: translate(-130%, -20%);
    }

    100% {
        transform: translate(130%, 20%);
    }
}

@keyframes fab-highlight {
    0%, 100% {
        box-shadow: 0 4px 10px rgba(15, 23, 42, 0.16), 0 0 0 0 rgba(245, 158, 11, 0.55), 0 0 0 0 rgba(26, 35, 126, 0.25);
        transform: scale(1);
    }

    40% {
        box-shadow: 0 8px 22px rgba(15, 23, 42, 0.2), 0 0 0 6px rgba(245, 158, 11, 0.2), 0 0 22px 2px rgba(251, 191, 36, 0.4);
        transform: scale(1.03);
    }

    70% {
        box-shadow: 0 6px 16px rgba(15, 23, 42, 0.18), 0 0 0 14px rgba(245, 158, 11, 0), 0 0 18px 2px rgba(26, 35, 126, 0.15);
        transform: scale(1.02);
    }
}

@keyframes fab-soft-float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

@keyframes spin-ring {
    to {
        transform: rotate(360deg);
    }
}

@keyframes bar-grow {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.hero-animate > * {
    opacity: 0;
    animation: fade-up 0.7s ease forwards;
}

    .hero-animate > *:nth-child(1) {
        animation-delay: 0.05s;
    }

    .hero-animate > *:nth-child(2) {
        animation-delay: 0.12s;
    }

    .hero-animate > *:nth-child(3) {
        animation-delay: 0.2s;
    }

    .hero-animate > *:nth-child(4) {
        animation-delay: 0.28s;
    }

    .hero-animate > *:nth-child(5) {
        animation-delay: 0.36s;
    }

    .hero-animate > *:nth-child(6) {
        animation-delay: 0.44s;
    }

.hero .forum-card.hero-animate-card {
    opacity: 0;
    animation: fade-up 0.75s ease 0.2s forwards;
}

.progress-bar > span {
    transform-origin: left center;
}

.progress-bar.is-animated > span {
    animation: bar-grow 1.1s ease forwards;
}

/* —— Global loader —— */
.app-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: rgba(10, 22, 40, 0.55);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

    .app-loader.is-visible {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

.app-loader__card {
    background: #fff;
    border-radius: 14px;
    padding: 1.75rem 1.85rem;
    text-align: center;
    min-width: min(280px, 86vw);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25);
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.app-loader__spinner {
    width: 42px;
    height: 42px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    border: 3px solid rgba(26, 35, 126, 0.15);
    border-top-color: var(--accent);
    border-right-color: var(--primary);
    animation: spin-ring 0.85s linear infinite;
}

.app-loader__card p {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--primary);
}

/* —— Error / downtime page —— */
.error-panel {
    min-height: calc(100vh - var(--header-h) - 280px);
    display: grid;
    place-items: center;
    padding: 3.5rem 0 4rem;
    background: radial-gradient(ellipse 70% 60% at 80% 0%, rgba(245, 158, 11, 0.08), transparent 55%), var(--background);
}

.error-card {
    width: min(100% - 2.5rem, 560px);
    text-align: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 16px 40px rgba(15, 23, 42, 0.06);
}

    .error-card .eyebrow {
        color: var(--accent);
    }

    .error-card h1 {
        font-size: clamp(1.6rem, 3vw, 2rem);
        color: var(--primary);
        margin-bottom: 0.75rem;
    }

    .error-card p {
        color: var(--muted-foreground);
        font-size: 1rem;
        max-width: 42ch;
        margin: 0 auto 1.5rem;
        line-height: 1.65;
    }

    .error-card .btn-group {
        justify-content: center;
    }

.error-meta {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--muted-foreground);
}

    .error-meta a {
        color: var(--primary);
        font-weight: 700;
    }

        .error-meta a:hover {
            color: var(--accent);
        }

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero-animate > *,
    .hero .forum-card.hero-animate-card,
    .nav-cta,
    .progress-bar.is-animated > span,
    .app-loader__spinner,
    .fab-updates,
    .fab-top.is-visible,
    .offer-card:hover::after,
    .dock-grid .offer-card.is-dock-focus::after {
        animation: none !important;
    }

    .offer-card:hover .offer-icon,
    .dock-grid .offer-card.is-dock-focus .offer-icon {
        transform: none;
    }

    .dock-grid .offer-card.is-dock-focus {
        transform: none !important;
    }

    .hero-animate > *,
    .hero .forum-card.hero-animate-card {
        opacity: 1;
    }

    .btn:hover,
    .offer-card:hover,
    .scheme-card:hover,
    .idea-card:hover,
    .event-card:hover,
    .leader-card:hover,
    .mvv-card:hover,
    .story-card:hover,
    .contact-item:hover {
        transform: none;
    }

    .updates-modal {
        transition: none;
    }
}

/* —— Responsive —— */
@media (max-width: 1180px) {
    .site-header .logo {
        max-width: min(200px, 34vw);
    }

    .site-header .logo-img {
        width: 100%;
        height: 66px;
        max-width: min(200px, 34vw);
    }

    .site-header .nav a:not(.nav-cta):not(.nav-crm) {
        font-size: 0.78rem;
        padding: 0.4rem 0.45rem;
    }

    .nav-crm,
    .nav-cta {
        padding: 0.52rem 0.9rem !important;
        font-size: 0.76rem !important;
        margin-left: 0.3rem;
    }
}

@media (max-width: 1024px) {
    .site-header .logo {
        max-width: min(190px, 32vw);
    }

    .site-header .logo-img {
        height: 62px;
        max-width: min(190px, 32vw);
    }

    .site-header .nav a:not(.nav-cta):not(.nav-crm) {
        font-size: 0.74rem;
        padding: 0.35rem 0.32rem;
    }

    .nav-crm,
    .nav-cta {
        padding: 0.5rem 0.85rem !important;
        font-size: 0.74rem !important;
    }

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

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

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

    .footer-brand {
        grid-column: 1 / -1;
    }

    .subscription-grid,
    .news-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* Stack hero: tablets + mobile “Request desktop site” (avoids 2-col overlap) */
    .hero {
        min-height: 0 !important;
        display: block !important;
        padding: 1.75rem 0 2.25rem;
    }

    .hero > .container.hero-grid,
    .hero-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        width: min(100% - 2.5rem, var(--max));
        max-width: 100%;
    }

        .hero-grid > * {
            min-width: 0;
            max-width: 100%;
        }

        .hero h1 {
            max-width: none;
        }
}

@media (max-width: 860px) {
    :root {
        --header-h: 96px;
    }

    .container {
        width: min(100% - 1.75rem, var(--max));
    }

    .site-header .header-inner {
        width: 100%;
        justify-content: space-between;
        gap: 0.65rem;
    }

    .site-header .nav {
        margin-left: 0;
    }

    .site-header .logo {
        flex: 0 1 auto;
        min-width: 0;
        max-width: min(210px, calc(100% - 3.75rem));
        gap: 0.12rem;
        margin-right: 0;
    }

    .site-header .logo-text {
        display: flex !important;
        min-width: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.06rem;
        padding-left: 0;
        text-align: left;
        width: 100%;
        max-width: 100%;
    }

        .site-header .logo-text .brand-tagline,
        .site-header .logo-text .brand-audience {
            display: block;
            font-size: 0.5rem;
            line-height: 1.3;
            white-space: nowrap;
            overflow: hidden;
            max-width: 100%;
            text-align: left;
        }

    .site-header .logo-img {
        width: 100%;
        height: 62px;
        max-width: min(210px, 60vw);
    }

    .nav-toggle {
        display: grid;
        place-items: center;
        flex: 0 0 auto;
        flex-shrink: 0;
        margin-left: auto;
        order: 2;
    }

    .site-header .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--card);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
        gap: 0.25rem;
        max-height: calc(100vh - var(--header-h));
        overflow-y: auto;
        order: 3;
        width: 100%;
        margin-left: 0;
    }

        .site-header .nav.open {
            display: flex;
        }

        .site-header .nav a {
            padding: 0.75rem 1rem;
            font-size: 0.95rem;
            white-space: normal;
            font-weight: 500;
        }

            .site-header .nav a:not(.nav-cta):not(.nav-crm).active,
            .site-header .nav a:not(.nav-cta):not(.nav-crm)[aria-current="page"] {
                font-weight: 700;
                background: var(--navy-50);
                color: var(--primary);
            }

    .nav-crm,
    .nav-cta {
        margin-left: 0;
        text-align: center;
        justify-content: center;
    }

    .hero {
        min-height: 0 !important;
        display: block !important;
        padding: 1.5rem 0 2rem;
        justify-content: flex-start;
    }

    .hero > .container.hero-grid,
    .hero-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        width: min(100% - 2.25rem, var(--max));
        max-width: 100%;
        align-items: stretch;
    }

        .hero-grid > * {
            min-width: 0;
            max-width: 100%;
        }

        .hero h1 {
            font-size: clamp(1.75rem, 7vw, 2.35rem);
            max-width: none;
            margin-bottom: 0.75rem;
        }

    .hero-lead {
        font-size: 0.95rem;
        max-width: none;
    }

    .hero-motto {
        font-size: 0.88rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

        .hero-stats strong {
            font-size: 1.45rem;
        }

    .about-layout,
    .contact-grid,
    .register-layout {
        grid-template-columns: 1fr;
    }

    .msme-filters {
        flex-direction: column;
        gap: 0.85rem;
        padding: 1.1rem;
    }

        .msme-filters .filter-field {
            flex: 0 0 auto;
            width: 100%;
        }

    .msme-stats {
        grid-template-columns: 1fr;
        max-width: none;
    }

    .hero-stats,
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }

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

    .subscription-grid,
    .news-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .dock-grid {
        padding-block: 0.25rem 0.5rem;
    }

        .dock-grid .offer-card.is-dock-focus {
            transform: translateY(-4px) !important;
        }

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

    .section-head-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.35rem;
        margin-bottom: 1.35rem;
    }

    .footer-contact a span {
        white-space: normal;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .cta-band {
        padding: 2.25rem 0 2rem;
    }

        .cta-band .btn-group {
            width: 100%;
        }

            .cta-band .btn-group .btn {
                flex: 1 1 auto;
                min-width: 0;
            }

    .btn-group {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

        .btn-group .btn {
            width: 100%;
        }

    .logo-img {
        width: auto;
        height: 68px;
        max-width: min(220px, 70vw);
    }

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

    .updates-modal__dialog {
        border-radius: 22px;
    }

    .updates-modal__secondary {
        grid-template-columns: 1fr;
    }

    .page-hero-logo,
    .hero-brand-logo {
        width: 72px;
        height: 72px;
    }

    .page-hero {
        padding: 2.5rem 0 2.25rem;
    }

        .page-hero h1 {
            font-size: clamp(1.65rem, 7vw, 2.25rem);
            overflow-wrap: anywhere;
        }
}

@media (max-width: 480px) {
    .container {
        width: min(100% - 1.35rem, var(--max));
    }

    .site-header .logo-text .brand-tagline,
    .site-header .logo-text .brand-audience {
        display: block;
        font-size: 0.48rem;
        line-height: 1.25;
        white-space: nowrap;
        max-width: 100%;
        overflow: hidden;
        text-align: left;
    }

    .site-header .logo-text {
        padding-left: 0;
        align-items: flex-start;
        text-align: left;
        width: 100%;
    }

    .site-header .logo-img {
        width: 100%;
        height: 56px;
        max-width: min(190px, 68vw);
    }

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

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

    .eyebrow-pill {
        font-size: 0.72rem;
        padding: 0.35rem 0.7rem;
    }
}

/* —— Footer legal links + social row —— */
.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 0.9rem;
}

    .footer-legal a {
        color: rgba(255, 255, 255, 0.68);
        font-weight: 600;
        transition: color 0.2s;
    }

        .footer-legal a:hover {
            color: var(--gold-400);
        }

.footer-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 1rem;
}

    .footer-social a {
        width: 34px;
        height: 34px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.18);
        color: rgba(255, 255, 255, 0.75);
        flex-shrink: 0;
        transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
    }

        .footer-social a:hover {
            color: var(--gold-400);
            border-color: rgba(251, 191, 36, 0.55);
            background: rgba(251, 191, 36, 0.08);
            transform: translateY(-2px);
        }

    .footer-social .icon {
        width: 16px;
        height: 16px;
    }

/* —— Leadership: photo upload —— */
.leader-photo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.leader-card .leader-photo-wrap .leader-photo {
    margin-bottom: 0;
}

.leader-photo.has-photo {
    color: transparent;
}

.leader-upload {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.3rem 0.75rem;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

    .leader-upload:hover {
        color: var(--accent);
        border-color: var(--accent);
        background: var(--warning-bg);
    }

/* —— Leadership: featured founder card —— */
.leader-card--founder {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 860px;
    margin-inline: auto;
    padding: 0;
    overflow: hidden;
    text-align: left;
    background: linear-gradient( 125deg, #0a1628 0%, #122844 48%, #1a2f4e 100% );
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 40px rgba(10, 22, 40, 0.18);
}

.leader-card--founder::after {
    content: "";
    position: absolute;
    right: -2%;
    bottom: -8%;
    width: min(48%, 280px);
    aspect-ratio: 1;
    background: url("../assets/logo.png?v=20260812a") center / contain no-repeat;
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
}

.founder-layout {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 0;
}

.founder-aside {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    padding: 2rem 1.5rem;
    background: rgba(0, 0, 0, 0.22);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.leader-card--founder .leader-photo-wrap {
    margin-bottom: 0;
}

.leader-card--founder .leader-photo {
    width: 112px;
    height: 112px;
    font-size: 2rem;
    border-color: rgba(251, 191, 36, 0.45);
    box-shadow: 0 0 0 3px rgba(10, 22, 40, 0.9), 0 0 0 5px rgba(251, 191, 36, 0.35);
}

.founder-body {
    position: relative;
    z-index: 1;
    padding: 2rem 2.25rem 1.85rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.leader-card--founder .leader-badge {
    margin-bottom: 0.75rem;
    background: rgba(251, 191, 36, 0.14);
    color: var(--gold-400);
    border: 1px solid rgba(251, 191, 36, 0.35);
}

.leader-card--founder h3 {
    color: #fff;
    font-size: clamp(1.45rem, 2.4vw, 1.85rem);
    margin-bottom: 0.35rem;
    letter-spacing: -0.02em;
}

.leader-card--founder .leader-title {
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 1rem;
    font-weight: 500;
}

.founder-bio {
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 0.95rem !important;
    line-height: 1.65;
    margin-bottom: 1.25rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: none !important;
    width: 100%;
    text-align: left !important;
}

.founder-contacts {
    list-style: none;
    margin: 0;
    padding: 1rem 0 0;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.5rem;
}

    .founder-contacts li {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        font-size: 0.88rem;
        color: var(--gold-400);
    }

    .founder-contacts .icon {
        width: 15px;
        height: 15px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
        flex-shrink: 0;
    }

    .founder-contacts a {
        color: inherit;
        text-decoration: none;
    }

        .founder-contacts a:hover {
            color: #fff;
            text-decoration: underline;
        }

.leader-card--founder .leader-upload {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.85);
}

    .leader-card--founder .leader-upload:hover {
        color: var(--gold-400);
        border-color: var(--gold-400);
        background: rgba(251, 191, 36, 0.12);
    }

@media (max-width: 720px) {
    .founder-layout {
        grid-template-columns: 1fr;
    }

    .founder-aside {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 1.75rem 1.4rem 1.25rem;
    }

    .founder-body {
        padding: 1.5rem 1.4rem 1.65rem;
        align-items: center;
        text-align: center;
    }

    .founder-bio {
        text-align: center !important;
    }

    .founder-contacts {
        justify-content: center;
    }
}

/* —— Legal pages (Privacy / Terms / Refund) —— */
.legal-content {
    max-width: 74ch;
}

.legal-updated {
    font-size: 0.85rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.25rem;
    color: var(--primary);
    margin: 2rem 0 0.75rem;
}

    .legal-content h2:first-of-type {
        margin-top: 0;
    }

.legal-content p {
    color: var(--muted-foreground);
    margin-bottom: 0.85rem;
    line-height: 1.65;
}

.legal-content ul {
    color: var(--muted-foreground);
    margin: 0 0 1rem 1.25rem;
    line-height: 1.65;
}

.legal-content li {
    margin-bottom: 0.4rem;
}

.legal-content ul.legal-contact {
    list-style: none;
    margin-left: 0;
}

.legal-content a {
    color: var(--primary);
    font-weight: 600;
}

    .legal-content a:hover {
        color: var(--accent);
    }

/* —— Register page (contact + payment) —— */
/* Classic two-column: aside (benefits / summary) | form card */
.register-layout {
    display: grid;
    grid-template-columns: 0.92fr 1.28fr;
    gap: 1.5rem;
    align-items: start;
}

.register-aside {
    background: linear-gradient(165deg, #eef0fb 0%, #f7f8fd 55%, #ffffff 100%);
    border: 1px solid rgba(213, 217, 245, 0.95);
    border-radius: 16px;
    padding: 1.6rem 1.45rem 1.5rem;
    box-shadow: 0 10px 28px rgba(26, 35, 126, 0.06);
}

    .register-aside h2 {
        font-size: 1.4rem;
        color: var(--primary);
        margin-bottom: 1.25rem;
    }

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 1.05rem 1.1rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.04), 0 10px 24px rgba(15, 23, 42, 0.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

    .benefit-item:hover {
        box-shadow: 0 4px 8px rgba(15, 23, 42, 0.05), 0 14px 32px rgba(15, 23, 42, 0.09);
        transform: translateY(-2px);
    }

    .benefit-item .ico {
        width: 40px;
        height: 40px;
        border-radius: 8px;
        background: var(--navy-50);
        color: var(--primary);
        display: grid;
        place-items: center;
        flex-shrink: 0;
        font-size: 1.1rem;
    }

    .benefit-item strong {
        display: block;
        font-size: 0.92rem;
        color: var(--primary);
        margin-bottom: 0.2rem;
    }

    .benefit-item span {
        font-size: 0.82rem;
        color: var(--muted-foreground);
        font-weight: 400;
    }

.register-form-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.85rem 1.65rem 1.75rem;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04), 0 14px 32px rgba(15, 23, 42, 0.07);
}

    .register-form-card h3 {
        font-size: 1.35rem;
        color: var(--primary);
        margin-bottom: 0.35rem;
    }

    .register-form-card .form-lead {
        font-size: 0.92rem;
        color: var(--muted-foreground);
        margin-bottom: 1.5rem;
        padding-bottom: 1.15rem;
        border-bottom: 1px solid var(--border);
    }

    .register-form-card .btn {
        width: 100%;
        max-width: 100%;
    }

.form-section {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fbfcfe;
    padding: 1.15rem 1.2rem 0.4rem;
    margin: 0 0 1.15rem;
    min-width: 0;
    overflow: hidden;
}

.form-section--meetup {
    background: #fff;
    border-color: var(--border);
}

.form-section-title {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0 0 1rem;
    padding: 0 0 0.55rem;
    border-bottom: 1px solid rgba(26, 35, 126, 0.12);
}

.form-section .form-grid {
    clear: both;
    min-width: 0;
}

.form-section .form-row {
    min-width: 0;
}

.form-section .fee-breakdown {
    margin: 0.35rem 0 1.15rem;
}

.tel-group {
    display: flex;
    align-items: stretch;
}

    .tel-group .tel-prefix {
        display: flex;
        align-items: center;
        padding: 0 0.75rem;
        border: 1px solid #e2e8f0;
        border-right: none;
        border-radius: 6px 0 0 6px;
        background: var(--secondary);
        color: var(--muted-foreground);
        font-weight: 600;
        font-size: 0.95rem;
        flex-shrink: 0;
    }

    .tel-group input {
        border-radius: 0 6px 6px 0 !important;
    }

.checkbox-row {
    margin-top: 0.5rem;
}

    .checkbox-row label {
        display: flex;
        align-items: flex-start;
        gap: 0.6rem;
        font-size: 0.85rem;
        font-weight: 400;
        color: var(--muted-foreground);
        cursor: pointer;
    }

    .checkbox-row input[type='checkbox'] {
        width: 16px;
        height: 16px;
        padding: 0;
        margin-top: 0.2rem;
        border: 1px solid #cbd5e1;
        border-radius: 4px;
        accent-color: var(--primary);
        flex-shrink: 0;
        background: #fff;
    }

    .checkbox-row a {
        color: var(--primary);
        font-weight: 600;
    }

        .checkbox-row a:hover {
            color: var(--accent);
        }

.fee-breakdown {
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1rem 1.1rem;
    margin: 0.25rem 0 1.35rem;
}

.fee-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.88rem;
    color: var(--muted-foreground);
    padding: 0.35rem 0;
}

    .fee-row .fee-was {
        text-decoration: line-through;
        color: #94a3b8;
        font-weight: 600;
    }

    .fee-row.fee-total {
        margin-top: 0.35rem;
        padding-top: 0.75rem;
        border-top: 1px dashed rgba(148, 163, 184, 0.55);
        font-weight: 700;
    }

        .fee-row.fee-total span {
            color: var(--primary);
            font-size: 0.95rem;
        }

        .fee-row.fee-total strong {
            color: var(--gold-600);
            font-size: 1.2rem;
        }

/* —— MSME Hub —— */
.msme-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    max-width: 640px;
}

    .msme-stats strong {
        display: block;
        font-size: 1.5rem;
        color: #ffb800;
        margin-bottom: 0.2rem;
        font-variant-numeric: tabular-nums;
    }

    .msme-stats span {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.72);
    }

.page-hero--msme {
    padding: 3rem 0;
}

.page-hero-msme {
    display: grid;
    grid-template-columns: 1.35fr 0.9fr;
    gap: 2rem 2.5rem;
    align-items: center;
}

.page-hero-msme__copy h1 {
    max-width: 14ch;
}

.page-hero-msme__copy p {
    max-width: 48ch;
}

.page-hero-msme__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.35rem;
}

.page-hero--msme .btn-outline {
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
    background: transparent;
}

    .page-hero--msme .btn-outline:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: #fff;
        color: #fff;
    }

.page-hero-msme__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.msme-stat-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    padding: 1.15rem 1rem;
    backdrop-filter: blur(6px);
}

.msme-stat-card--wide {
    grid-column: 1 / -1;
}

.msme-stat-card strong {
    display: block;
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
    color: var(--gold-400);
    margin-bottom: 0.25rem;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}

.msme-stat-card span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 500;
}

@media (max-width: 860px) {
    .page-hero-msme {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .page-hero-msme__copy h1 {
        max-width: none;
    }
}

.msme-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.04), 0 10px 24px rgba(15, 23, 42, 0.06);
    margin-bottom: 1rem;
    align-items: stretch;
}

.filter-field {
    flex: 1 1 200px;
    min-width: 0;
}

    .filter-field label {
        display: block;
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--muted-foreground);
        text-transform: uppercase;
        letter-spacing: 0.04em;
        margin-bottom: 0.4rem;
    }

    .filter-field select {
        width: 100%;
        padding: 0.65rem 0.85rem;
        border: 1px solid #e2e8f0;
        border-radius: 6px;
        font-family: inherit;
        font-size: 0.9rem;
        color: var(--foreground);
        background: #fff;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 0.85rem center;
        padding-right: 2.25rem;
        transition: border-color 0.2s, box-shadow 0.2s;
    }

        .filter-field select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.12);
        }

.filter-actions {
    display: flex;
    align-items: flex-end;
    flex: 0 0 auto;
}

.btn-reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: #fff;
    color: var(--primary);
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, border-color 0.2s;
    align-self: flex-end;
}

    .btn-reset:hover {
        background: var(--navy-50);
        border-color: #c5cde0;
    }

.featured-schemes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.featured-scheme {
    display: grid;
    grid-template-columns: 118px 1fr;
    min-height: 100%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .featured-scheme:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
    }

.featured-scheme__rail {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.35rem;
    padding: 1.25rem 0.75rem;
    background: linear-gradient(180deg, #1a237e 0%, #0f1a4d 100%);
    color: #fff;
}

.featured-scheme__label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(251, 191, 36, 0.9);
}

.featured-scheme__amount {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #fff;
}

.featured-scheme__hint {
    font-size: 0.68rem;
    font-weight: 600;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.72);
    max-width: 9ch;
}

.featured-scheme__content {
    padding: 1.2rem 1.25rem 1.15rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.featured-scheme__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
    margin-bottom: 0.55rem;
}

.featured-scheme h3 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
    line-height: 1.25;
}

.featured-scheme .scheme-ministry {
    margin-bottom: 0.55rem;
}

.featured-scheme p {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    line-height: 1.55;
    margin: 0;
    text-align: left;
}

.featured-scheme .scheme-tags {
    margin: 0.85rem 0 0.75rem;
}

.featured-scheme .scheme-meta {
    margin-top: auto;
    width: 100%;
}

.scheme-card--featured {
    border-top-color: var(--primary);
    background: linear-gradient(180deg, #eef0fb 0%, #ffffff 60%);
}

@media (max-width: 900px) {
    .featured-schemes {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .featured-scheme {
        grid-template-columns: 1fr;
    }

    .featured-scheme__rail {
        flex-direction: row;
        justify-content: flex-start;
        gap: 0.75rem;
        padding: 0.9rem 1.1rem;
        text-align: left;
    }

    .featured-scheme__hint {
        max-width: none;
    }
}

.scheme-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.7rem;
}

.scheme-status {
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.22rem 0.55rem;
    border-radius: 999px;
    background: var(--success-bg);
    color: var(--success);
    border: 1px solid rgba(22, 163, 74, 0.25);
    white-space: nowrap;
}

.scheme-status--featured {
    background: rgba(245, 158, 11, 0.12);
    color: var(--gold-600);
    border-color: rgba(217, 119, 6, 0.3);
}

.scheme-ministry {
    font-size: 0.78rem;
    color: var(--muted-foreground);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.scheme-benefit {
    font-size: 0.92rem;
    color: var(--foreground);
    margin-bottom: 0.65rem;
}

    .scheme-benefit strong {
        color: var(--primary);
    }

.scheme-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin: 0.9rem 0 0.9rem;
}

.scheme-meta {
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--muted-foreground);
    padding-top: 0.75rem;
    border-top: 1px dashed rgba(148, 163, 184, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.scheme-card.is-hidden,
.featured-scheme.is-hidden {
    display: none !important;
}

/* —— Mobile polish (must stay last to win cascade) —— */
@media (max-width: 860px) {
    .register-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .register-aside {
        padding: 1.35rem 1.15rem 1.25rem;
    }

    .register-form-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 1.6rem 1.15rem 1.5rem;
        box-sizing: border-box;
    }

        .register-form-card h3 {
            font-size: 1.15rem;
            line-height: 1.3;
            overflow-wrap: anywhere;
        }

    .register-form,
    .register-form .form-grid,
    .register-form .form-row,
    .register-form .tel-group {
        min-width: 0;
        max-width: 100%;
    }

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

        .register-form input,
        .register-form select,
        .register-form textarea {
            max-width: 100%;
            min-width: 0;
        }

    .register-aside .forum-card {
        max-width: 100%;
    }

    .benefit-item {
        min-width: 0;
    }

    .page-hero {
        overflow-wrap: anywhere;
    }

    .hero-grid,
    .about-layout,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .msme-filters {
        flex-direction: column;
        gap: 0.85rem;
        padding: 1.1rem;
    }

        .msme-filters .filter-field {
            flex: 0 0 auto;
            width: 100%;
            max-width: 100%;
        }

    .featured-schemes {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 3.25rem 0;
    }
}

@media (max-width: 480px) {
    .register-form-card {
        padding: 1.15rem 0.95rem 1.35rem;
        border-radius: 10px;
    }

    .fee-breakdown {
        padding: 0.85rem 0.9rem;
    }

    .form-section-title {
        font-size: 0.95rem;
    }

    .whatsapp-chip {
        flex-wrap: wrap;
    }

    .site-header .logo {
        max-width: calc(100% - 3.75rem);
        flex: 0 1 auto;
        margin-right: 0;
    }

    .nav-toggle {
        margin-left: auto;
    }
}

/* —— Cross-device layout polish —— */
@media (min-width: 861px) and (max-width: 1100px) {
    .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    body:not(.crm-body) {
        background-attachment: scroll, scroll;
        background-size: auto, min(52vw, 320px) auto;
    }
}

@media (max-width: 860px) {
    .datahub-container,
    .datahub-container--locked,
    .datahub-container--open {
        max-width: 100%;
    }

    .datahub-session-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .datahub-action-grid,
    .datahub-upload-grid {
        grid-template-columns: 1fr;
    }

    .section-head-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .fab-stack {
        /* Keep floating actions above footer without huge dead zones */
        bottom: max(1rem, env(safe-area-inset-bottom, 0px));
    }

    .site-footer {
        padding-bottom: 5.5rem;
    }

    input,
    select,
    textarea,
    button {
        max-width: 100%;
    }

    table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 480px) {
    .container {
        width: min(100% - 1.25rem, var(--max));
    }

    .page-hero h1 {
        font-size: clamp(1.45rem, 7.5vw, 1.85rem);
    }

    .datahub-card {
        padding: 1.15rem 0.95rem 1.35rem;
    }

    .datahub-auth-form .btn,
    .datahub-action-btn {
        min-height: 2.85rem;
        font-size: 0.9rem;
    }
}

/* —— CRM Pipeline Dashboard —— */
.crm-body {
    padding-top: 0;
    background: #eef1f7;
}

.crm-shell {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
}

.crm-sidebar {
    background: #0b1220;
    color: rgba(255, 255, 255, 0.78);
    padding: 1.25rem 1rem 2rem;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.crm-brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1.15rem;
    padding: 0.35rem 0.4rem;
}

    .crm-brand img {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: #0a1628;
        box-shadow: 0 0 0 1.5px rgba(245, 158, 11, 0.4);
    }

    .crm-brand strong {
        display: block;
        color: #fff;
        font-size: 0.95rem;
    }

    .crm-brand small {
        color: var(--gold-400);
        font-size: 0.72rem;
    }

.crm-admin-chip {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.85rem 0.9rem;
    margin-bottom: 1.25rem;
}

    .crm-admin-chip strong {
        display: block;
        color: #fff;
        font-size: 0.88rem;
        margin-bottom: 0.2rem;
    }

    .crm-admin-chip span {
        font-size: 0.72rem;
        color: rgba(255, 255, 255, 0.55);
        line-height: 1.35;
    }

.crm-nav-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
    margin: 1rem 0.5rem 0.45rem;
}

.crm-side-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.55rem 0.7rem;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.86rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

    .crm-side-nav a:hover,
    .crm-side-nav a.is-active {
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
    }

    .crm-side-nav a.is-active {
        background: rgba(245, 158, 11, 0.16);
        color: var(--gold-400);
    }

.crm-badge {
    background: var(--gold-500);
    color: #0b1220;
    font-size: 0.68rem;
    font-weight: 800;
    min-width: 1.3rem;
    height: 1.3rem;
    border-radius: 999px;
    display: grid;
    place-items: center;
    padding: 0 0.35rem;
}

.crm-main {
    min-width: 0;
}

.crm-topbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.35rem 1.5rem 1rem;
    background: #fff;
    border-bottom: 1px solid var(--border);
}

    .crm-topbar h1 {
        font-size: 1.55rem;
        margin: 0.15rem 0 0.25rem;
    }

.crm-updated {
    font-size: 0.82rem;
    color: var(--muted-foreground);
    margin: 0;
}

.crm-top-actions {
    display: flex;
    gap: 0.55rem;
    flex-shrink: 0;
}

.crm-btn {
    padding: 0.55rem 0.95rem;
    font-size: 0.82rem;
    min-width: auto;
}

.crm-content {
    padding: 1.25rem 1.5rem 2.5rem;
}

.crm-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 1.15rem;
}

.crm-filters--inline {
    margin-bottom: 0.85rem;
}

.crm-filters label {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.crm-filters select {
    min-width: 160px;
    padding: 0.55rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    font-family: inherit;
    font-size: 0.88rem;
    color: var(--foreground);
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
}

.crm-kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-bottom: 1.15rem;
}

.crm-kpi {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.05rem 1.1rem;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

    .crm-kpi p {
        font-size: 0.8rem;
        color: var(--muted-foreground);
        margin: 0 0 0.45rem;
    }

    .crm-kpi strong {
        display: block;
        font-size: 1.55rem;
        color: var(--primary);
        letter-spacing: -0.02em;
        margin-bottom: 0.35rem;
    }

    .crm-kpi span,
    .crm-kpi small,
    .crm-kpi a {
        display: block;
        font-size: 0.78rem;
        color: var(--muted-foreground);
    }

    .crm-kpi a {
        color: var(--primary);
        font-weight: 700;
        margin-top: 0.35rem;
    }

.crm-kpi--warn {
    border-color: rgba(245, 158, 11, 0.35);
    background: linear-gradient(180deg, #fffbeb 0%, #fff 70%);
}

.crm-up {
    color: #15803d !important;
    font-weight: 700;
}

.crm-down {
    color: #b45309 !important;
    font-weight: 700;
}

.crm-panels {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 0.9rem;
    margin-bottom: 1.15rem;
}

.crm-panel {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.15rem 1.2rem 1.25rem;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
    margin-bottom: 1.15rem;
}

.crm-panels .crm-panel {
    margin-bottom: 0;
}

.crm-panel__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.35rem;
}

.crm-panel h2 {
    font-size: 1.05rem;
    margin: 0;
}

.crm-panel__sub {
    font-size: 0.82rem;
    color: var(--muted-foreground);
    margin: 0 0 1rem;
}

.crm-bars {
    display: flex;
    align-items: flex-end;
    gap: 0.65rem;
    height: 180px;
    padding-top: 0.5rem;
}

.crm-bar {
    flex: 1;
    height: var(--h);
    background: linear-gradient(180deg, #aab3eb 0%, #1a237e 100%);
    border-radius: 8px 8px 4px 4px;
    position: relative;
    min-height: 18px;
}

    .crm-bar.is-hot {
        background: linear-gradient(180deg, #fbbf24 0%, #d97706 100%);
    }

    .crm-bar span {
        position: absolute;
        left: 50%;
        bottom: -1.35rem;
        transform: translateX(-50%);
        font-size: 0.72rem;
        color: var(--muted-foreground);
        font-weight: 600;
    }

.crm-mix {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin: 0;
    padding: 0;
}

    .crm-mix li {
        display: grid;
        grid-template-columns: 7.5rem 1fr 2.5rem;
        gap: 0.55rem;
        align-items: center;
        font-size: 0.82rem;
    }

.crm-mix__track {
    height: 8px;
    background: #eef0fb;
    border-radius: 999px;
    overflow: hidden;
}

    .crm-mix__track i {
        display: block;
        height: 100%;
        background: linear-gradient(90deg, #1a237e, #f59e0b);
        border-radius: inherit;
    }

.crm-mix strong {
    text-align: right;
    color: var(--primary);
}

.crm-table-wrap {
    overflow-x: auto;
}

.crm-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.84rem;
    min-width: 860px;
}

    .crm-table th {
        text-align: left;
        font-size: 0.72rem;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: var(--muted-foreground);
        padding: 0.65rem 0.55rem;
        border-bottom: 1px solid var(--border);
        white-space: nowrap;
    }

    .crm-table td {
        padding: 0.8rem 0.55rem;
        border-bottom: 1px solid #eef2f7;
        vertical-align: top;
        color: var(--foreground);
    }

        .crm-table td strong {
            display: block;
            color: var(--primary);
            font-size: 0.88rem;
        }

        .crm-table td small {
            display: block;
            color: var(--muted-foreground);
            margin-top: 0.15rem;
            font-size: 0.76rem;
        }

.crm-actions {
    display: flex;
    gap: 0.35rem;
    white-space: nowrap;
}

.crm-approve,
.crm-reject {
    border: none;
    border-radius: 7px;
    padding: 0.35rem 0.6rem;
    font-family: inherit;
    font-size: 0.74rem;
    font-weight: 700;
    cursor: pointer;
}

.crm-approve {
    background: #dcfce7;
    color: #15803d;
}

.crm-reject {
    background: #fee2e2;
    color: #b91c1c;
}

.crm-tag {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    background: var(--navy-50);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 700;
}

.crm-tag--ok {
    background: #dcfce7;
    color: #15803d;
}

.crm-tag--new {
    background: #fff7ed;
    color: #c2410c;
}

@media (max-width: 1100px) {
    .crm-shell {
        grid-template-columns: 1fr;
    }

    .crm-sidebar {
        position: relative;
        height: auto;
    }

    .crm-kpi-grid,
    .crm-panels {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .crm-topbar {
        flex-direction: column;
    }

    .crm-content {
        padding: 1rem;
    }
}
