:root {
    --ink: #e8eef8;
    --ink-2: #d4def5;
    --muted: #9fb0d3;
    --bg: #0b1326;
    --surface: #0f1a30;
    --glass: rgba(18, 27, 48, 0.82);
    --accent: #2aa5ff;
    --accent-2: #f2b35f;
    --border: rgba(255, 255, 255, 0.12);
    --radius: 16px;
    --shadow: 0 18px 48px rgba(3, 8, 20, 0.26);
    --shadow-soft: 0 12px 28px rgba(3, 8, 20, 0.18);
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 48px;
    --space-6: 64px;
    --hero-overlap: 0;

}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    background:
        radial-gradient(circle at 18% 16%, rgba(42, 165, 255, 0.18), transparent 32%),
        radial-gradient(circle at 82% 6%, rgba(242, 179, 95, 0.16), transparent 36%),
        linear-gradient(180deg, #0c172e 0%, #0f1d3a 32%, #0b1326 100%);
    color: var(--ink);
    line-height: 1.7;
    letter-spacing: 0.01em;
}

.ms-icon {
    font-family: "Material Symbols Rounded";
    font-weight: 400;
    font-style: normal;
    font-size: 1em;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: none;
    letter-spacing: normal;
    white-space: nowrap;
    direction: ltr;
    font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: rgba(42, 165, 255, 0.2);
}

a:focus-visible {
    border-radius: 10px;
}

h1, h2, h3, h4 {
    letter-spacing: -0.02em;
}

h2 {
    font-size: 32px;
    line-height: 1.2;
    margin: 0 0 12px;
    color: var(--ink-2);
}

h3 {
    font-size: 18px;
    line-height: 1.25;
    margin: 0 0 10px;
    color: var(--ink-2);
}

p {
    margin: 0 0 12px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s ease, opacity 0.15s ease;
}

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

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

.site-header .container {
    max-width: 100%;
    width: 100%;
    padding: 0 18px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
    margin-bottom: 18px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(11, 181, 181, 0.1);
    border: 1px solid rgba(12, 18, 32, 0.06);
    color: var(--accent);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 12px;
}

.eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 10px 20px rgba(11, 181, 181, 0.25);
}

.btn,
.card {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: -40% -60%;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.6), transparent 40%);
    transform: translateX(-40%) rotate(12deg);
    opacity: 0;
    transition: opacity var(--t-med) var(--ease-out), transform var(--t-med) var(--ease-out);
    pointer-events: none;
}

.btn:hover::before {
    opacity: 1;
    transform: translateX(10%) rotate(12deg);
}

.btn .icon,
.btn .arrow {
    transition: transform var(--t-fast) var(--ease-out);
}

.btn:hover .icon,
.btn:hover .arrow {
    transform: translateX(5px);
}

.btn:active {
    transform: translateY(-1px) scale(0.98);
}

.btn:focus-visible,
.filter-btn:focus-visible,
.menu-toggle:focus-visible,
.drawer-close:focus-visible,
.dot:focus-visible,
.slider-btn:focus-visible,
.back-to-top:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(11, 181, 181, 0.22);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(12, 18, 32, 0.05);
    box-shadow: 0 10px 22px rgba(12, 18, 32, 0.05);
    width: 100%;
    align-self: stretch;
}

.scroll-progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: rgba(12, 18, 32, 0.06);
    overflow: hidden;
}

.scroll-progress > span {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    transform-origin: left center;
    transition: width var(--t-fast) var(--ease-out);
}

.site-header.is-scrolled .header-inner {
    height: 66px;
}

.site-header.is-scrolled .logo-img {
    height: 54px;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.88);
}

.header-inner {
    display: flex;
    align-items: center;
    height: 78px;
    gap: 12px;
    justify-content: flex-start;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 0 12px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.logo > a {
    display: inline-flex;
    align-items: center;
}

.logo-img {
    height: 62px;
    width: auto;
    max-width: 100%;
    display: block;
    flex-shrink: 0;
}

.logo-text {
    display: none;
}

.footer-logo-img {
    height: 74px;
    max-width: min(100%, 320px);
}

.nav {
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 700;
    margin-left: auto;
}

.nav a {
    padding: 8px 0;
    color: #1e2c45;
    position: relative;
    font-weight: 700;
}

.nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    transition: width 0.2s ease;
}

.nav a:hover::after {
    width: 100%;
}

.nav a[aria-current="page"],
.nav a.is-active {
    color: #0f7bdc;
}

.nav a[aria-current="page"]::after,
.nav a.is-active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), #0fa3a3);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.01em;
    border: none;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    box-shadow: 0 14px 28px rgba(11, 181, 181, 0.26);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(11, 181, 181, 0.34);
}

.btn.ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid rgba(12, 18, 32, 0.1);
    box-shadow: none;
}

.btn-ghost-dark {
    background: rgba(255, 255, 255, 0.08);
    color: #e8eef8;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: none;
}

.btn-ghost-dark:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-outline {
    background: transparent;
    color: #e8eef8;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: none;
}

.btn.ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.menu-toggle {
    display: none;
    position: relative;
    border: 1px solid rgba(11, 210, 255, 0.24);
    background: linear-gradient(180deg, #fdfefe 0%, #edf7ff 100%);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    color: #5d7694;
    font-size: 16px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.menu-toggle-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.menu-toggle-bars {
    position: relative;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
}

.menu-toggle-bars::before,
.menu-toggle-bars::after {
    content: '';
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
}

.menu-toggle-bars::before { top: -6px; }
.menu-toggle-bars::after { top: 6px; }

/* Drawer menu */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 15, 32, 0.58);
    backdrop-filter: blur(10px);
    z-index: 30;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-med) var(--ease-out);
}

.drawer-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
}

.nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(390px, 100vw);
    background:
        radial-gradient(circle at top left, rgba(11, 210, 255, 0.14), transparent 34%),
        linear-gradient(180deg, #f8fbff 0%, #edf4ff 100%);
    backdrop-filter: none;
    border-left: 1px solid rgba(12, 18, 32, 0.08);
    transform: translateX(110%);
    transition: transform var(--t-slow) var(--ease-out);
    z-index: 40;
    display: grid;
    grid-template-rows: auto 1fr auto;
    padding: 22px 18px 20px;
    gap: 18px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.nav-drawer.open {
    transform: translateX(0);
    box-shadow: -20px 0 60px rgba(12, 18, 32, 0.25);
}

.drawer-open {
    overflow: hidden;
}

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

@media (min-width: 821px) {
    .nav-drawer,
    .drawer-overlay {
        display: none !important;
    }
}

.drawer-close {
    border: 1px solid rgba(12, 18, 32, 0.1);
    background: rgba(255, 255, 255, 0.94);
    border-radius: 12px;
    padding: 10px 12px;
    font-weight: 700;
    cursor: pointer;
}

.drawer-intro {
    display: grid;
    gap: 6px;
    padding: 0 4px;
}

.drawer-kicker {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0f7bdc;
}

.drawer-intro p {
    margin: 0;
    color: #475569;
    line-height: 1.5;
}

.drawer-body {
    display: grid;
    gap: 14px;
    align-content: start;
}

.drawer-search-card {
    width: 100%;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.96);
    border-radius: 24px;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
    padding: 16px 18px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    text-align: left;
    color: #0f172a;
    cursor: pointer;
}

.drawer-search-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(11, 210, 255, 0.18), rgba(14, 240, 184, 0.18));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0f7bdc;
}

.drawer-search-copy {
    display: grid;
    gap: 3px;
}

.drawer-search-label {
    font-size: 17px;
    font-weight: 800;
    line-height: 1.1;
}

.drawer-search-text {
    font-size: 13px;
    color: #64748b;
}

.drawer-search-arrow {
    color: #0f7bdc;
    font-size: 20px;
}

.drawer-nav {
    display: grid;
    gap: 12px;
    padding: 0;
    justify-items: stretch;
}

.drawer-link-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 16px 18px;
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
    color: #0f172a;
    min-height: 88px;
}

.drawer-link-card:hover {
    border-color: rgba(11, 210, 255, 0.32);
    transform: translateY(-1px);
}

.drawer-link-card.is-featured {
    background: linear-gradient(135deg, rgba(11, 210, 255, 0.12), rgba(14, 240, 184, 0.12));
    border-color: rgba(11, 210, 255, 0.22);
}

.drawer-link-icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.06);
    color: #0f7bdc;
    font-size: 22px;
}

.drawer-link-card.is-featured .drawer-link-icon {
    background: rgba(255, 255, 255, 0.72);
}

.drawer-link-copy {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.drawer-link-eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #64748b;
}

.drawer-link-title {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #0f172a;
}

.drawer-link-desc {
    font-size: 13px;
    line-height: 1.45;
    color: #475569;
}

.drawer-link-arrow {
    color: #0f7bdc;
    font-size: 20px;
}

.drawer-cta {
    display: grid;
    gap: 10px;
    justify-items: stretch;
}

.drawer-cta .btn {
    width: 100%;
}

.drawer-contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: rgba(255, 255, 255, 0.7);
    color: #0f172a;
    font-weight: 700;
    letter-spacing: 0.01em;
}

main {
    padding-top: 12px;
}

.section {
    padding: 72px 0;
}

.section + .section {
    border-top: none;
}

.band {
    padding: 64px 0;
    background: linear-gradient(135deg, rgba(42, 165, 255, 0.08), rgba(15, 26, 48, 0.65));
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.band-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.spotlight-card {
    padding: 18px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(15, 26, 48, 0.82);
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 10px;
    min-height: 100%;
    position: relative;
    overflow: hidden;
}

.spotlight-card::after {
    content: '';
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 30% 30%, rgba(42, 165, 255, 0.18), transparent 42%);
    opacity: 0.6;
    pointer-events: none;
}

.spotlight-card h3 {
    margin: 0;
    color: #fff;
}

.spotlight-card p {
    margin: 0;
    color: var(--muted);
}

.spotlight-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    color: var(--muted);
}

.spotlight-meta::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(42, 165, 255, 0.16);
}

.hero {
    padding: 110px 0 80px;
    position: relative;
    overflow: hidden;
    transition: transform var(--t-slow) var(--ease-out), opacity var(--t-med) var(--ease-out);
}

.hero.hero-small {
    padding: 86px 0 56px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.05);
    opacity: 0.9;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 22% 32%, rgba(11, 181, 181, 0.22), transparent 36%), linear-gradient(120deg, rgba(12, 18, 32, 0.76) 0%, rgba(12, 18, 32, 0.46) 46%, rgba(12, 18, 32, 0.08) 100%);
}

.hero-bg-graphic {
    position: absolute;
    right: -14%;
    bottom: -18%;
    width: 74%;
    aspect-ratio: 1;
    background:
        radial-gradient(circle at 50% 50%, rgba(42, 165, 255, 0.08), transparent 32%),
        radial-gradient(circle at 60% 44%, rgba(11, 181, 181, 0.16), transparent 36%),
        radial-gradient(circle at 40% 50%, rgba(245, 159, 68, 0.12), transparent 42%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 60%),
        url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%20120%20120%27%20fill%3D%27none%27%3E%3Cg%20stroke%3D%27%230bb5b5%27%20stroke-opacity%3D%270.32%27%20stroke-width%3D%270.8%27%3E%3Ccircle%20cx%3D%2260%22%20cy%3D%2260%22%20r%3D%2248%22/%3E%3Ccircle%20cx%3D%2260%22%20cy%3D%2260%22%20r%3D%2232%22/%3E%3Ccircle%20cx%3D%2260%22%20cy%3D%2260%22%20r%3D%2216%22/%3E%3C/g%3E%3Cg%20stroke%3D%27%23f59f44%27%20stroke-opacity%3D%270.2%27%20stroke-width%3D%270.8%27%3E%3Cpath%20d%3D%27M60%206%20l0%20108M6%2060%20h108M22%2022l76%2076M22%2098l76-76%27/%3E%3C/g%3E%3C/svg%3E");
    background-size: 120% 120%, 120% 120%, 140% 140%, 100% 100%, 56% 56%;
    background-repeat: no-repeat;
    filter: blur(0px);
    opacity: 0.82;
    animation: heroGraphicDrift 22s ease-in-out infinite alternate;
}

.js .hero.hero-secondary {
    transform: translateY(calc(180px * (1 - var(--hero-overlap, 0))));
    opacity: calc(0.25 + (0.75 * var(--hero-overlap, 0)));
    filter: saturate(calc(0.8 + (0.2 * var(--hero-overlap, 0))));
    box-shadow: 0 -40px 80px rgba(0, 0, 0, calc(0.25 + 0.25 * var(--hero-overlap, 0)));
    will-change: transform, opacity, filter;
}

.js .hero.hero-home {
    transform: translateY(calc(var(--hero-overlap, 0) * -16px));
    filter: saturate(calc(1 - (0.08 * var(--hero-overlap, 0)))) brightness(calc(1 - (0.04 * var(--hero-overlap, 0))));
    will-change: transform, filter;
}

.js .hero.hero-home.is-overlapped {
    transform: translateY(calc(var(--hero-overlap, 0) * -16px)) scale(calc(1 - (0.01 * var(--hero-overlap, 0))));
}

.hero.hero-secondary {
    margin-top: 0;
    padding: 180px 0 140px;
    z-index: 1;
    min-height: var(--hero-height, auto);
}

.hero.hero-home {
    z-index: 0;
}

.hero.hero-secondary {
    z-index: 5;
    box-shadow: 0 -40px 80px rgba(0, 0, 0, 0.4);
}

.hero.hero-secondary::before,
.hero.hero-secondary::after {
    display: none;
}

.hero-bg-secondary .hero-bg-video {
    filter: saturate(1.2) hue-rotate(-30deg) brightness(0.72);
    opacity: 0.8;
}

.hero-bg-secondary .hero-bg-gradient {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(6, 12, 22, 0.82) 35%, rgba(0, 0, 0, 0.68) 100%);
}

.hero-bg-secondary .hero-bg-graphic {
    width: 90%;
    right: -10%;
    bottom: -16%;
    background:
        radial-gradient(circle at 52% 50%, rgba(0, 255, 136, 0.22), transparent 32%),
        radial-gradient(circle at 40% 48%, rgba(0, 255, 80, 0.18), transparent 42%),
        radial-gradient(circle at 58% 52%, rgba(0, 255, 170, 0.14), transparent 48%),
        url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%20120%20120%27%20fill%3D%27none%27%3E%3Cg%20stroke%3D%27%2300ff7f%27%20stroke-opacity%3D%270.26%27%20stroke-width%3D%271.2%27%3E%3Cpath%20d%3D%27M60%206l12%2048-12%2048-12-48z%27/%3E%3Cpath%20d%3D%27M6%2060l48-12%2048%2012-48%2012z%27/%3E%3C/g%3E%3C/svg%3E");
    background-size: 140% 140%, 160% 160%, 120% 120%, 60% 60%;
    filter: blur(0px);
    opacity: 0.9;
}

.hero-secondary-inner {
    position: relative;
    z-index: 1;
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.hero-secondary-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #d1e7ff;
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    margin-bottom: 12px;
}

.hero-secondary-title {
    color: #f5f7fb;
    font-size: clamp(32px, 3.2vw, 44px);
    margin: 0 0 14px;
}

.hero-secondary-sub {
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    margin: 0 auto;
    max-width: 760px;
}

.hero-secondary-cta {
    justify-content: center;
    margin-top: 30px;
}

.hero-secondary-cta .btn {
    box-shadow: 0 16px 36px rgba(0, 255, 140, 0.25);
}

.hero-secondary-cta .btn.ghost {
    background: rgba(255, 255, 255, 0.1);
    color: #eaf5ff;
    border-color: rgba(255, 255, 255, 0.22);
}

.hero-visual-secondary {
    margin-top: 36px;
}

.hero.hero-secondary .hero-visual {
    max-width: 640px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 26px;
    align-items: start;
}

.hero-copy,
.hero-visual {
    min-width: 0;
}

.hero-profile-wrap {
    position: relative;
}

.hero-profile-card {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    padding: 18px;
    background: linear-gradient(160deg, rgba(48, 63, 111, 0.88), rgba(18, 32, 64, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 28px 68px rgba(5, 8, 20, 0.45);
    color: #e9eeff;
    min-height: 520px;
    display: grid;
    grid-template-rows: auto 1fr auto;
    isolation: isolate;
}

.hero-profile-glow {
    position: absolute;
    inset: -18%;
    background:
        radial-gradient(circle at 20% 30%, rgba(113, 196, 255, 0.32), transparent 40%),
        radial-gradient(circle at 72% 24%, rgba(96, 73, 110, 0.38), transparent 40%),
        radial-gradient(circle at 50% 70%, rgba(39, 191, 255, 0.26), transparent 46%);
    filter: blur(4px);
    opacity: 0.9;
    z-index: 0;
    animation: glowPulse 10s ease-in-out infinite;
}

.hero-profile-head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.hero-profile-name {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-profile-title {
    color: rgba(233, 238, 255, 0.78);
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-top: 4px;
}

.hero-profile-btn {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.1);
    color: #e9eeff;
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    backdrop-filter: blur(8px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-profile-btn:hover {
    border-color: rgba(113, 196, 255, 0.6);
    color: #fff;
}

.hero-profile-avatar {
    position: relative;
    z-index: 1;
    margin: 16px -4px 12px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.18);
}

.hero-profile-avatar img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-profile-footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(12, 18, 32, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.hero-profile-mini {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-profile-mini-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

.hero-profile-mini-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-profile-handle {
    font-weight: 700;
    color: #e9eeff;
}

.hero-profile-status {
    font-size: 13px;
    color: rgba(233, 238, 255, 0.76);
}

.hero-profile-pill {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(113, 196, 255, 0.12);
    color: #b9ddff;
    font-weight: 800;
    letter-spacing: -0.01em;
    border: 1px solid rgba(113, 196, 255, 0.4);
}

.hero-side-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 18px;
    position: relative;
    overflow: hidden;
}

.hero-side-card::before {
    content: '';
    position: absolute;
    inset: -60px;
    background:
        radial-gradient(circle at 20% 20%, rgba(11, 181, 181, 0.12), transparent 42%),
        radial-gradient(circle at 80% 15%, rgba(245, 159, 68, 0.10), transparent 42%);
    pointer-events: none;
}

.hero-visual-card {
    isolation: isolate;
}

.hero-visual-bg {
    position: absolute;
    inset: -80px;
    background:
        radial-gradient(circle at 25% 30%, rgba(11, 181, 181, 0.14), transparent 45%),
        radial-gradient(circle at 75% 20%, rgba(245, 159, 68, 0.12), transparent 46%),
        radial-gradient(circle at 60% 80%, rgba(120, 90, 220, 0.10), transparent 50%);
    opacity: 0.9;
    filter: blur(0px);
    z-index: 0;
    pointer-events: none;
}

.hero-side-head {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.hero-side-title {
    font-weight: 900;
    color: var(--ink-2);
    letter-spacing: -0.02em;
}

.hero-side-sub {
    color: var(--muted);
    font-weight: 700;
    font-size: 13px;
}

.hero-side-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.mini-card {
    padding: 14px;
    border-radius: 14px;
    background: rgba(16, 26, 48, 0.78);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.mini-card-title {
    font-weight: 900;
    color: var(--ink-2);
    letter-spacing: -0.02em;
}

.mini-card-sub {
    margin-top: 2px;
    color: var(--muted);
    font-weight: 700;
    font-size: 12px;
}

.hero-side-foot {
    position: relative;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(12, 18, 32, 0.06);
}

.hero-side-contacts .chip {
    background: rgba(12, 18, 32, 0.04);
    color: var(--ink-2);
    border-color: rgba(12, 18, 32, 0.08);
}

.hero-visual {
    position: relative;
    display: grid;
    justify-items: center;
    align-items: start;
    gap: 12px;
    padding: 10px 6px 62px;
    max-width: 560px;
    margin: 0 auto;
    isolation: isolate;
}

.hero-media-main {
    width: 100%;
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgba(11, 181, 181, 0.12), rgba(245, 159, 68, 0.08)),
        rgba(16, 26, 48, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-media-main .chip {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--ink-2);
    border-color: rgba(255, 255, 255, 0.12);
}

.hero-media-glow {
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at 22% 20%, rgba(11, 181, 181, 0.18), transparent 32%),
        radial-gradient(circle at 78% 12%, rgba(245, 159, 68, 0.16), transparent 36%),
        radial-gradient(circle at 64% 80%, rgba(120, 90, 220, 0.12), transparent 42%);
    pointer-events: none;
    filter: blur(2px);
    opacity: 0.9;
    z-index: 0;
    animation: glowPulse 8s ease-in-out infinite;
}

.hero-media-head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.hero-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(12, 18, 32, 0.28);
    color: var(--ink-2);
    font-weight: 800;
}

.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: radial-gradient(circle at 40% 40%, #fff, var(--accent));
    box-shadow: 0 0 0 6px rgba(11, 181, 181, 0.16);
    display: inline-block;
}

.hero-ui {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 12px;
}

.hero-ui-panel {
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
}

.hero-ui-title {
    font-weight: 800;
    color: var(--ink-2);
    margin-bottom: 10px;
}

.hero-ui-bars {
    display: grid;
    gap: 6px;
    margin-bottom: 10px;
}

.hero-ui-bars span {
    display: block;
    height: 10px;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    width: var(--w, 80%);
    opacity: 0.85;
}

.hero-ui-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-weight: 800;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.02em;
}

.hero-ui-tags span {
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-ui-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.hero-ui-card {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(12, 18, 32, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
}

.hero-ui-label {
    color: var(--muted);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.01em;
}

.hero-ui-value {
    margin-top: 4px;
    color: var(--ink-2);
    font-weight: 900;
    letter-spacing: -0.01em;
}

.hero-media-footer {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.hero-media-footer .chip {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.hero-media-video {
    position: absolute;
    right: -12px;
    top: 36%;
    width: 260px;
    border-radius: 16px;
    padding: 10px;
    background: rgba(12, 18, 32, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow);
    z-index: 2;
}

.hero-video-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--ink-2);
    font-weight: 800;
    margin-bottom: 8px;
}

.hero-video-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-soft);
}

.hero-video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.08);
}

.hero-video-foot {
    margin-top: 8px;
    color: var(--muted);
    font-weight: 700;
    font-size: 13px;
}

.hero-media-note {
    position: absolute;
    left: -14px;
    bottom: -18px;
    width: 220px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
    color: #0b1326;
    border: 1px solid rgba(12, 18, 32, 0.06);
    box-shadow: var(--shadow);
    padding: 14px;
    z-index: 2;
}

.hero-note-title {
    font-weight: 900;
    letter-spacing: -0.01em;
    margin: 0 0 6px;
    color: #0b1326;
}

.hero-note-value {
    font-weight: 900;
    font-size: 20px;
    color: var(--accent);
    margin-bottom: 6px;
}

.hero-note-copy {
    margin: 0;
    color: #2b3a57;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.5;
}

.section-alt {
    position: relative;
}

.section-alt::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.55);
    border-top: 1px solid rgba(12, 18, 32, 0.04);
    border-bottom: 1px solid rgba(12, 18, 32, 0.04);
    z-index: -1;
}

.lead-magnet {
    margin-top: 18px;
    border-radius: 18px;
    border: 1px solid rgba(12, 18, 32, 0.08);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-soft);
    padding: 18px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 14px;
    align-items: start;
}

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

.wizard {
    border-radius: 18px;
    border: 1px solid rgba(12, 18, 32, 0.08);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-soft);
    padding: 18px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 14px;
    align-items: center;
    margin-bottom: 18px;
}

.wizard-copy h3 {
    margin: 0 0 8px;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

@media (max-width: 960px) {
    .lead-magnet,
    .wizard {
        grid-template-columns: 1fr;
    }

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

.hero::before {
    content: '';
    position: absolute;
    inset: 12px;
    background: linear-gradient(135deg, rgba(11, 181, 181, 0.08), rgba(245, 159, 68, 0.08));
    border-radius: 30px;
    z-index: -1;
    box-shadow: var(--shadow-soft);
}

@keyframes heroGridDrift {
    0% {
        background-position: 0px 0px, 0px 0px, 0px 0px;
    }
    100% {
        background-position: 120px 60px, -80px 120px, 0px 0px;
    }
}

@keyframes glowPulse {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }
    100% {
        transform: scale(1.04);
        opacity: 1;
    }
}

@keyframes heroGraphicDrift {
    0% {
        transform: translate(4%, -2%) scale(1);
        filter: blur(0px);
    }
    100% {
        transform: translate(-2%, 4%) scale(1.04);
        filter: blur(0.6px);
    }
}

.hero.hero-home::after {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 30px;
    z-index: -1;
    pointer-events: none;
    opacity: 0.42;
    background-image:
        linear-gradient(to right, rgba(12, 18, 32, 0.07) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(12, 18, 32, 0.07) 1px, transparent 1px),
        url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20width%3D%27120%27%20height%3D%27120%27%3E%3Cfilter%20id%3D%27n%27%3E%3CfeTurbulence%20type%3D%27fractalNoise%27%20baseFrequency%3D%270.85%27%20numOctaves%3D%272%27%20stitchTiles%3D%27stitch%27/%3E%3C/filter%3E%3Crect%20width%3D%27120%27%20height%3D%27120%27%20filter%3D%27url(%23n)%27%20opacity%3D%270.18%27/%3E%3C/svg%3E");
    background-size: 44px 44px, 44px 44px, 180px 180px;
    background-repeat: repeat;
    mix-blend-mode: multiply;
    animation: heroGridDrift 22s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
    .hero.hero-home::after {
        animation: none;
    }

    .hero.hero-secondary {
        transform: none !important;
        opacity: 1 !important;
    }

    .hero.hero-home.is-overlapped {
        transform: none !important;
        filter: none !important;
    }

    :root {
        --hero-overlap: 1 !important;
    }
}

.hero-kpis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
    max-width: 520px;
}

.kpi {
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(12, 18, 32, 0.08);
    background: rgba(255, 255, 255, 0.66);
    box-shadow: var(--shadow-soft);
}

.kpi-val {
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--ink-2);
    font-size: 18px;
}

.kpi-label {
    margin-top: 4px;
    color: var(--muted);
    font-weight: 800;
    font-size: 12px;
}

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

.hero h1, .hero h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 3.4vw, 46px);
    line-height: 1.15;
    margin: 0 0 16px;
    color: var(--ink-2);
}

.subhead {
    font-size: 18px;
    color: var(--muted);
    max-width: 740px;
}

.cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero-cta-pop .btn {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
    animation: heroPop 380ms var(--ease-out) forwards;
}

.hero-cta-pop .btn:nth-child(2) {
    animation-delay: 80ms;
}

.hero-cta-pop .btn:nth-child(3) {
    animation-delay: 140ms;
}

@keyframes heroPop {
    0% {
        opacity: 0;
        transform: translateY(14px) scale(0.96);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.announce-bar {
    background: linear-gradient(135deg, rgba(11, 181, 181, 0.16), rgba(245, 159, 68, 0.14));
    border-bottom: 1px solid rgba(12, 18, 32, 0.08);
}

.announce-bar[data-kind="success"] {
    background: linear-gradient(135deg, rgba(18, 140, 90, 0.18), rgba(11, 181, 181, 0.10));
}

.announce-bar[data-kind="warning"] {
    background: linear-gradient(135deg, rgba(245, 159, 68, 0.22), rgba(245, 88, 88, 0.12));
}

.announce-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
}

.announce-text {
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--ink-2);
}

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

.announce-text a:hover {
    text-decoration: underline;
}

.announce-close {
    border: 1px solid rgba(15, 23, 42, 0.18);
    background: #ffffff;
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 900;
    color: #0f172a;
    cursor: pointer;
    transition: transform var(--t-fast) var(--ease-out), border-color var(--t-fast) var(--ease-out), background var(--t-fast) var(--ease-out), color var(--t-fast) var(--ease-out);
}

.announce-close:hover {
    transform: translateY(-1px);
    border-color: rgba(11, 181, 181, 0.35);
    background: rgba(11, 181, 181, 0.12);
    color: #0f172a;
}

.nav-item {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.has-mega::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 0;
    width: min(680px, calc(100vw - 32px));
    height: 12px;
}

.has-mega .mega {
    position: absolute;
    top: 100%;
    margin-top: 12px;
    right: 0;
    left: auto;
    width: min(680px, calc(100vw - 32px));
    background: #ffffff;
    border: 1px solid rgba(12, 18, 32, 0.10);
    box-shadow: var(--shadow);
    border-radius: 18px;
    padding: 16px;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity var(--t-med) var(--ease-out), transform var(--t-med) var(--ease-out);
    z-index: 60;
    backdrop-filter: blur(10px);
}

.has-mega:hover .mega,
.has-mega:focus-within .mega {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mega-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 16px;
}

.mega-title {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 10px;
}

.mega-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.mega-list a {
    display: block;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #ffffff;
    font-weight: 900;
    color: #0f172a;
    text-decoration: none;
    transition: transform var(--t-fast) var(--ease-out), border-color var(--t-fast) var(--ease-out);
}

.mega-list a:hover {
    transform: translateY(-1px);
    border-color: rgba(11, 181, 181, 0.22);
}

.mega-note {
    margin-top: 12px;
    color: #64748b;
    font-weight: 700;
    font-size: 13px;
}

.has-mega .cta-row {
    justify-content: flex-start;
    align-items: center;
}

.has-mega .cta-row .btn,
.has-mega .cta-row .btn.ghost {
    background: #ffffff;
    color: #0f172a;
    border: 1px solid rgba(15, 23, 42, 0.16);
    box-shadow: none;
}

.has-mega .cta-row .btn:hover,
.has-mega .cta-row .btn.ghost:hover {
    border-color: #0bd2ff;
    color: #0f172a;
}

.icon-btn {
    border: 1px solid rgba(15, 23, 42, 0.18);
    background: #ffffff;
    border-radius: 999px;
    padding: 10px 12px;
    font-weight: 900;
    color: #0f172a;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform var(--t-fast) var(--ease-out), border-color var(--t-fast) var(--ease-out), background var(--t-fast) var(--ease-out), color var(--t-fast) var(--ease-out);
}

.icon-btn .ms-icon {
    font-size: 20px;
}

.icon-btn-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.icon-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(11, 181, 181, 0.35);
    background: rgba(11, 181, 181, 0.12);
    color: #0f172a;
}

.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 10, 18, 0.50);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity var(--t-med) var(--ease-out);
    z-index: 90;
}

.search-overlay.is-active {
    opacity: 1;
}

.search-modal {
    position: fixed;
    top: 14vh;
    left: 50%;
    transform: translateX(-50%) translateY(14px);
    width: min(860px, 92vw);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(12, 18, 32, 0.10);
    box-shadow: var(--shadow);
    border-radius: 18px;
    padding: 16px;
    z-index: 100;
    color: #0f172a;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-med) var(--ease-out), transform var(--t-med) var(--ease-out);
    backdrop-filter: blur(10px);
}

.search-modal.open {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.search-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.search-title {
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.search-sub {
    color: #334155;
    font-weight: 700;
    font-size: 13px;
    margin-top: 4px;
}

.search-box {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 12px;
}

.search-input {
    flex: 1;
    background: #ffffff;
    color: #0f172a;
}

.search-input::placeholder {
    color: #64748b;
}

.search-results {
    margin-top: 12px;
    max-height: min(50vh, 520px);
    overflow: auto;
}

.search-list {
    display: grid;
    gap: 10px;
}

.search-item {
    display: block;
    padding: 12px 12px;
    border-radius: 16px;
    border: 1px solid rgba(12, 18, 32, 0.08);
    background: rgba(255, 255, 255, 0.68);
    text-decoration: none;
    transition: transform var(--t-fast) var(--ease-out), border-color var(--t-fast) var(--ease-out);
}

.search-item:hover {
    transform: translateY(-2px);
    border-color: rgba(11, 181, 181, 0.22);
}

.search-item-title {
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.01em;
}

.search-item-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
    color: #475569;
}

.search-modal .btn.ghost {
    background: #ffffff;
    color: #0f172a;
    border-color: rgba(15, 23, 42, 0.18);
}

.search-modal .btn.ghost:hover {
    border-color: rgba(11, 181, 181, 0.35);
    color: #0f172a;
}

.search-modal .muted,
.search-foot {
    color: #475569;
}

.search-foot {
    margin-top: 12px;
    font-size: 13px;
}

.service-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.service-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: linear-gradient(135deg, #0bd2ff, #0ef0b8);
    color: #0b1326;
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(11, 210, 255, 0.25);
    transition: transform var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease-out), filter var(--t-fast) var(--ease-out);
}

.service-book-btn.large {
    padding: 12px 22px;
    font-size: 14px;
}

.service-book-btn:hover {
    transform: translateY(-1px);
    filter: brightness(0.98);
    box-shadow: 0 12px 24px rgba(11, 210, 255, 0.32);
}

.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 140;
    display: none;
}

.booking-modal.is-open {
    display: block;
}

.booking-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 12, 24, 0.55);
    backdrop-filter: blur(6px);
}

.booking-dialog {
    position: relative;
    margin: 6vh auto;
    width: min(1120px, 94vw);
    background: #e6eff4;
    border-radius: 26px;
    padding: 28px 32px 32px;
    box-shadow: 0 30px 80px rgba(8, 12, 24, 0.35);
    border: 1px solid rgba(15, 23, 42, 0.1);
    color: #0f172a;
}

.booking-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.booking-back,
.booking-close {
    border: none;
    background: transparent;
    color: #0f172a;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 8px;
    cursor: pointer;
}

.booking-back:hover,
.booking-close:hover {
    background: rgba(15, 23, 42, 0.08);
}

.booking-head h2 {
    font-size: 32px;
    margin: 0 0 6px;
    color: #0f172a;
}

.booking-head p {
    margin: 0 0 20px;
    color: #425166;
    max-width: 520px;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.9fr;
    gap: 26px;
}

.booking-section-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: #56657a;
    margin-bottom: 10px;
}

.booking-month {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.booking-month-label {
    font-weight: 700;
    color: #1f2937;
}

.booking-nav {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid rgba(15, 23, 42, 0.16);
    background: #ffffff;
    color: #0f172a;
    cursor: pointer;
}

.booking-weekdays,
.booking-days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 6px;
}

.booking-weekdays span {
    font-size: 12px;
    color: #56657a;
    text-align: center;
    font-weight: 600;
}

.booking-day {
    height: 36px;
    border-radius: 8px;
    border: 1px solid transparent;
    background: transparent;
    color: #1f2937;
    font-weight: 600;
    cursor: pointer;
}

.booking-day.is-muted {
    color: #a6b3c5;
    cursor: default;
}

.booking-day.is-selected {
    background: #5b6770;
    color: #ffffff;
}

.booking-times {
    display: flex;
    flex-direction: column;
}

.booking-availability {
    color: #425166;
    margin-bottom: 12px;
}

.booking-note {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 12px;
}

.booking-slots {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.time-slot {
    border: 1px solid rgba(15, 23, 42, 0.18);
    background: #e8f0f4;
    color: #1f2937;
    padding: 10px 12px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.time-slot.is-selected {
    background: #4b5563;
    color: #ffffff;
    border-color: #4b5563;
}

.time-slot.is-booked,
.time-slot:disabled {
    background: #d7dee5;
    color: #9aa6b2;
    border-color: rgba(15, 23, 42, 0.12);
    cursor: not-allowed;
    text-decoration: line-through;
}

.booking-details {
    border-left: 1px solid rgba(15, 23, 42, 0.12);
    padding-left: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.booking-service {
    font-weight: 700;
    color: #1f2937;
}

.booking-toggle {
    border: none;
    background: transparent;
    color: #1f2937;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-align: left;
}

.booking-fields {
    display: grid;
    gap: 10px;
    margin-top: 6px;
}

.booking-input {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(15, 23, 42, 0.16);
    background: #ffffff;
    padding: 10px 12px;
    font-size: 14px;
    font-family: inherit;
    color: #0f172a;
}

.booking-input:focus {
    outline: none;
    border-color: rgba(11, 181, 181, 0.5);
    box-shadow: 0 0 0 3px rgba(11, 181, 181, 0.18);
}

.booking-desc {
    color: #425166;
    font-size: 14px;
    line-height: 1.5;
}

.booking-status {
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.6);
    color: #1f2937;
    font-size: 13px;
    padding: 8px 10px;
    border-radius: 10px;
    margin-top: 4px;
}

.booking-status.is-error {
    border-color: rgba(185, 28, 28, 0.2);
    background: rgba(254, 226, 226, 0.7);
    color: #b91c1c;
}

.booking-cta {
    margin-top: 6px;
    background: #5f6666;
    color: #ffffff;
    border: 1px solid #5f6666;
    border-radius: 10px;
    padding: 12px 14px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: transform var(--t-fast) var(--ease-out), background var(--t-fast) var(--ease-out);
}

.booking-cta:hover {
    background: #505757;
}

.booking-cta:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

body.booking-open {
    overflow: hidden;
}

@media (max-width: 980px) {
    .booking-grid {
        grid-template-columns: 1fr;
    }
    .booking-details {
        border-left: none;
        border-top: 1px solid rgba(15, 23, 42, 0.12);
        padding-left: 0;
        padding-top: 16px;
    }
}

@media (max-width: 640px) {
    .booking-dialog {
        padding: 22px;
    }
    .booking-head h2 {
        font-size: 26px;
    }
    .booking-slots {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.home-proof-strip {
    padding-top: 24px;
    padding-bottom: 0;
}

.logo-wall {
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(12, 18, 32, 0.08);
    background: rgba(255, 255, 255, 0.65);
    box-shadow: var(--shadow-soft);
}

.logo-wall-title {
    font-weight: 900;
    color: var(--ink-2);
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.logo-wall-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.logo-tile {
    border-radius: 16px;
    border: 1px solid rgba(12, 18, 32, 0.08);
    background: rgba(255, 255, 255, 0.72);
    padding: 12px;
    box-shadow: var(--shadow-soft);
    min-height: 74px;
    display: grid;
    place-items: center;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.logo-tile a {
    color: inherit;
    text-decoration: none;
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
}

.logo-tile img {
    max-width: 100%;
    max-height: 34px;
    opacity: 0.86;
    filter: grayscale(1);
    transition: opacity var(--t-med) var(--ease-out), filter var(--t-med) var(--ease-out), transform var(--t-med) var(--ease-out);
}

.logo-mark-tile {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(11, 181, 181, 0.12), rgba(245, 159, 68, 0.10));
    border: 1px solid rgba(12, 18, 32, 0.10);
    font-weight: 900;
    letter-spacing: 0.06em;
    color: var(--ink-2);
}

.logo-name {
    margin-top: 10px;
    font-weight: 900;
    color: var(--ink-2);
    font-size: 12px;
    line-height: 1.2;
    opacity: 0.85;
}

.logo-tile:hover img {
    opacity: 1;
    filter: grayscale(0);
    transform: translateY(-1px);
}

@media (max-width: 980px) {
    .logo-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.insights-tabs {
    margin-bottom: 14px;
}

.case-chips {
    margin-bottom: 10px;
}

@media (max-width: 880px) {
    .mega-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .icon-btn:not(.search-toggle) {
        display: none;
    }
    .search-modal {
        top: 10vh;
    }
    .search-box {
        flex-direction: column;
        align-items: stretch;
    }
}
.updates-stats {
    margin-top: 18px;
}

.updates-hero .mini-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(12, 18, 32, 0.06);
}

.updates-toolbar {
    display: grid;
    gap: 14px;
    margin-bottom: 18px;
}

.updates-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.updates-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.chip {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(12, 18, 32, 0.08);
    background: rgba(255, 255, 255, 0.65);
    color: var(--ink-2);
    font-weight: 900;
    letter-spacing: -0.01em;
    transition: transform var(--t-fast) var(--ease-out), border-color var(--t-fast) var(--ease-out), background var(--t-fast) var(--ease-out);
}

.chip:hover {
    transform: translateY(-1px);
    border-color: rgba(11, 181, 181, 0.24);
}

.chip.active {
    background: rgba(11, 181, 181, 0.12);
    border-color: rgba(11, 181, 181, 0.28);
    color: var(--accent);
}

.chip.ghost {
    background: transparent;
}

.updates-count {
    justify-self: end;
    align-self: center;
    font-weight: 800;
    color: var(--muted);
    letter-spacing: -0.01em;
}

.updates-switch {
    display: flex;
    justify-content: flex-end;
}

.updates-switch-inner {
    display: inline-flex;
    gap: 8px;
    padding: 6px;
    border-radius: 999px;
    border: 1px solid rgba(12, 18, 32, 0.08);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
}

.updates-table {
    margin-bottom: 18px;
}

.updates-tableish .updates-row {
    grid-template-columns: 1.8fr 0.9fr 0.55fr 0.35fr;
}

.updates-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 10, 18, 0.44);
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity var(--t-med) var(--ease-out);
    z-index: 70;
}

.updates-overlay.is-active {
    opacity: 1;
}

.updates-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: min(520px, 92vw);
    background: rgba(255, 255, 255, 0.92);
    border-left: 1px solid rgba(12, 18, 32, 0.10);
    box-shadow: var(--shadow);
    transform: translateX(102%);
    transition: transform var(--t-med) var(--ease-out);
    z-index: 80;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.updates-drawer.open {
    transform: translateX(0);
}

.updates-drawer-head {
    padding: 16px 16px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid rgba(12, 18, 32, 0.08);
}

.updates-drawer-title {
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--ink-2);
}

.updates-drawer-body {
    padding: 14px 16px;
    overflow: auto;
}

.updates-drawer-h {
    margin: 10px 0 10px;
    letter-spacing: -0.02em;
}

.updates-drawer-section {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(12, 18, 32, 0.08);
}

.updates-drawer-label {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
}

.updates-drawer-text {
    color: var(--ink-2);
    line-height: 1.55;
}

.updates-drawer-list {
    margin: 0;
    padding-left: 18px;
    color: var(--ink-2);
}

.updates-drawer-foot {
    padding: 12px 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
    border-top: 1px solid rgba(12, 18, 32, 0.08);
}

.update-card.is-hidden {
    display: none;
}

.update-card.is-filtered-out {
    display: none;
}

.update-card.is-bookmarked {
    border-left-color: rgba(245, 159, 68, 0.55);
}

.span-2 {
    grid-column: 1 / -1;
}

.hp {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.check-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
}

.check {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(12, 18, 32, 0.08);
    background: rgba(255, 255, 255, 0.72);
    font-weight: 800;
    color: var(--ink-2);
}

.check input {
    width: 18px;
    height: 18px;
}

@media (max-width: 860px) {
    .updates-tableish .updates-row {
        grid-template-columns: 1.4fr 1fr 0.7fr 0.4fr;
    }
}

@media (max-width: 720px) {
    .updates-switch {
        justify-content: flex-start;
    }
    .updates-switch-inner {
        width: 100%;
        justify-content: space-between;
    }
    .updates-tableish .updates-row {
        grid-template-columns: 1.4fr 0.9fr 0.7fr;
    }
    .updates-tableish .updates-row > :last-child {
        display: none;
    }
}

.tab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(12, 18, 32, 0.10);
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink-2);
    font-weight: 800;
    font-size: 13px;
    appearance: none;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: transform var(--t-fast) var(--ease-out), border-color var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease-out);
}

.tab:hover {
    transform: translateY(-1px);
    border-color: rgba(11, 181, 181, 0.28);
    box-shadow: var(--shadow-soft);
}

.tab.active {
    background: rgba(11, 181, 181, 0.12);
    border-color: rgba(11, 181, 181, 0.28);
    color: var(--accent);
}

.pill {
    padding: 8px 14px;
    background: rgba(11, 181, 181, 0.12);
    border-radius: 999px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.mobile-sticky-cta {
    display: none;
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 80;
    padding: 14px 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(11, 181, 181, 0.94), rgba(9, 150, 150, 0.94));
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.mobile-sticky-cta:active {
    transform: scale(0.99);
}

@media (max-width: 760px) {
    .mobile-sticky-cta {
        display: block;
    }
    body {
        padding-bottom: 76px;
    }
}

.pill.new {
    background: linear-gradient(135deg, rgba(245, 159, 68, 0.22), rgba(11, 181, 181, 0.14));
    color: #7a3a0e;
    border: 1px solid rgba(245, 159, 68, 0.30);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.grid {
    display: grid;
    gap: 20px;
}

.grid > * {
    min-width: 0;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.featured-team-photo {
    width: 198px;
    height: 198px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
}

.card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(4px);
    --lift: 0px;
    --scale: 1;
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    transform: perspective(900px) translateY(var(--lift)) scale(var(--scale)) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
    transform-style: preserve-3d;
    transition: transform var(--t-med) var(--ease-out), box-shadow var(--t-med) var(--ease-out), border-color var(--t-med) var(--ease-out);
}

.card:hover {
    --lift: -5px;
    box-shadow: var(--shadow);
    border-color: rgba(11, 181, 181, 0.25);
}

.card:active {
    --lift: -2px;
    --scale: 0.99;
}

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

.update-card {
    padding: 20px;
    border-left: 4px solid rgba(11, 181, 181, 0.26);
}

.update-card[data-source="rbi"] {
    border-left-color: rgba(11, 181, 181, 0.36);
}

.update-card[data-source="cbic"] {
    border-left-color: rgba(120, 90, 220, 0.40);
}

.update-card[data-source="income-tax-india"] {
    border-left-color: rgba(245, 159, 68, 0.46);
}

.update-card[data-source="esic"] {
    border-left-color: rgba(18, 120, 200, 0.36);
}

.update-card[data-source="epfo"] {
    border-left-color: rgba(18, 140, 90, 0.34);
}

.update-inner {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    align-items: start;
}

.update-avatar {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(11, 181, 181, 0.14), rgba(245, 159, 68, 0.10));
    border: 1px solid rgba(12, 18, 32, 0.10);
    box-shadow: var(--shadow-soft);
    font-weight: 900;
    letter-spacing: 0.06em;
    color: var(--ink-2);
    user-select: none;
    transition: transform var(--t-fast) var(--ease-out);
}

.update-card .update-title {
    margin: 0 0 10px;
    letter-spacing: -0.02em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.update-summary {
    margin: -2px 0 10px;
    color: var(--ink-2);
    opacity: 0.86;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.update-sub {
    font-weight: 700;
    font-size: 13px;
    margin-top: -6px;
}

.update-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.update-card:hover .update-avatar {
    transform: rotate(-2deg) translateY(-1px);
    transition: transform var(--t-fast) var(--ease-out);
}

.card[data-tilt]::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--gx, 50%) var(--gy, 40%), rgba(255, 255, 255, 0.35), transparent 55%);
    opacity: 0;
    transition: opacity var(--t-med) var(--ease-out);
    pointer-events: none;
}

.card[data-tilt]:hover::after {
    opacity: 1;
}

.muted {
    color: var(--muted);
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
    margin-top: 26px;
}

.trust-card {
    padding: 15px 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(11, 181, 181, 0.08), rgba(255, 255, 255, 0.9));
    border: 1px dashed rgba(12, 18, 32, 0.15);
    font-weight: 700;
    color: var(--ink-2);
    transition: transform var(--t-fast) var(--ease-out), border-color var(--t-fast) var(--ease-out);
}

.trust-card:hover {
    transform: translateY(-2px);
    border-color: rgba(11, 181, 181, 0.3);
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(11, 181, 181, 0.14), rgba(245, 159, 68, 0.14));
    display: grid;
    place-items: center;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 12px;
    transition: transform var(--t-med) var(--ease-out);
}

.card:hover .service-icon {
    transform: translateY(-2px) rotate(6deg);
    transition: transform var(--t-med) var(--ease-out);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
    transition: transform var(--t-fast) var(--ease-out), color var(--t-fast) var(--ease-out);
}

.link-arrow:hover {
    color: #078a8a;
    transform: translateX(4px);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 22px;
}

.process-steps-lg {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.process-step {
    padding: 16px;
    border-radius: 14px;
    border: 1px solid rgba(12, 18, 32, 0.08);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 12px;
    background: rgba(11, 181, 181, 0.12);
    color: var(--accent);
    font-weight: 800;
    margin-right: 10px;
}

.list-bullets {
    list-style: none;
    padding-left: 0;
    margin: 12px 0 0;
}

.list-bullets li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(12, 18, 32, 0.08);
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.list-bullets li:last-child {
    border-bottom: none;
}

.marker {
    color: var(--accent);
    font-weight: 800;
}

.cta-panel {
    background: linear-gradient(135deg, #0e1a32, #0c223f);
    color: #fff;
    border-radius: 22px;
    padding: 30px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 20px;
    align-items: center;
    box-shadow: 0 32px 70px rgba(12, 18, 32, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-panel h3 {
    margin: 0 0 12px;
}

.cta-panel .muted {
    color: rgba(255, 255, 255, 0.78);
}

.cta-panel a {
    color: #fff;
}

.linkedin-feed-shell {
    padding: 30px;
    border-radius: 26px;
    background:
        linear-gradient(135deg, rgba(12, 24, 45, 0.94), rgba(15, 34, 63, 0.96)),
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 32px 70px rgba(12, 18, 32, 0.45);
}

.linkedin-feed-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.linkedin-feed-head h2 {
    margin-bottom: 10px;
}

.linkedin-feed-head .muted {
    max-width: 720px;
}

.linkedin-feed-frame {
    min-height: 360px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(241, 247, 255, 0.96);
    border: 1px solid rgba(9, 19, 37, 0.08);
    overflow: hidden;
}

.linkedin-feed-frame > [class*="sk-ww-linkedin"] {
    min-height: 328px;
}

.linkedin-feed-placeholder {
    min-height: 328px;
    display: grid;
    place-items: center;
    text-align: center;
    gap: 10px;
    padding: 32px 24px;
    color: #10213e;
}

.linkedin-feed-placeholder h3 {
    margin: 0;
    color: #10213e;
}

.linkedin-feed-placeholder .muted {
    color: rgba(16, 33, 62, 0.72);
    max-width: 540px;
}

form {
    display: grid;
    gap: 12px;
}

input, textarea, select {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(16, 26, 48, 0.82);
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: rgba(42, 165, 255, 0.55);
    box-shadow: 0 0 0 3px rgba(42, 165, 255, 0.16);
}

textarea {
    min-height: 120px;
}

.search-input {
    border-radius: 16px;
    padding: 14px 14px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-weight: 800;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 10px;
}

.breadcrumbs a {
    color: var(--ink-2);
    opacity: 0.85;
}

.breadcrumbs a:hover {
    color: var(--accent);
    opacity: 1;
}

.crumb-sep {
    color: rgba(12, 18, 32, 0.25);
}

.form-row {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.filters-card {
    padding: 18px;
}

.filters-card .field-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
}

.filters-actions {
    margin-top: 12px;
    justify-content: flex-end;
}

.meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
}

.pill.soft {
    background: rgba(12, 18, 32, 0.06);
    color: var(--ink-2);
    letter-spacing: 0.02em;
    text-transform: none;
}

.badge-soft {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(11, 181, 181, 0.12);
    border: 1px solid rgba(11, 181, 181, 0.2);
    font-weight: 700;
    color: #9aeff2;
    letter-spacing: 0.04em;
}

.card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

pre.code {
    margin: 12px 0 0;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(12, 18, 32, 0.04);
    border: 1px solid rgba(12, 18, 32, 0.08);
    overflow: auto;
}

pre.code code {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    color: var(--ink-2);
}

@media (max-width: 720px) {
    .update-inner {
        grid-template-columns: 40px 1fr;
        gap: 12px;
    }

    .update-avatar {
        width: 40px;
        height: 40px;
        border-radius: 13px;
    }
}

.alert {
    padding: 12px;
    border-radius: 12px;
    background: rgba(11, 181, 181, 0.12);
    color: #075e5e;
    border: 1px solid rgba(11, 181, 181, 0.2);
}

.alert.error {
    background: rgba(245, 159, 68, 0.12);
    color: #8a4210;
    border-color: rgba(245, 159, 68, 0.22);
}

.testimonial-strip {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 20px;
    align-items: center;
}

.home-highlight {
    background: linear-gradient(135deg, rgba(11, 181, 181, 0.08), rgba(245, 159, 68, 0.06));
    border-color: rgba(11, 181, 181, 0.18);
}

.comparison {
    margin-top: 18px;
}

.comparison h3 {
    margin-bottom: 12px;
}

.comparison-note {
    margin-top: 10px;
}

.testimonial-card {
    background: var(--surface);
    border: 1px solid rgba(12, 18, 32, 0.08);
    padding: 22px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    transition: transform var(--t-med) var(--ease-out);
}

.case-slide-card {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(12, 18, 32, 0.08);
    padding: 22px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

.testimonial-nav {
    display: flex;
    gap: 10px;
}

.slider {
    position: relative;
}

.slider-viewport {
    overflow: hidden;
    border-radius: 16px;
}

.slider-track {
    display: flex;
    will-change: transform;
    transition: transform var(--t-slow) var(--ease-out);
}

.slider-track.dragging {
    transition: none;
}

.slider-track.no-anim {
    transition: none;
}

.slide {
    flex: 0 0 100%;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(12, 18, 32, 0.6);
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: transform var(--t-fast) var(--ease-out), opacity var(--t-fast) var(--ease-out);
}

.slider-btn:hover {
    transform: translateY(-50%) scale(1.03);
}

.slider-btn[data-slider-prev] {
    left: 10px;
}

.slider-btn[data-slider-next] {
    right: 10px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(12, 18, 32, 0.18);
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.dot.active {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border-color: transparent;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(11, 181, 181, 0.1);
    color: var(--accent);
    font-weight: 700;
    border: 1px solid rgba(12, 18, 32, 0.08);
    transition: transform var(--t-fast) var(--ease-out), background var(--t-fast) var(--ease-out);
}

.chip:hover {
    transform: translateY(-1px);
    background: rgba(11, 181, 181, 0.14);
}

.blog-card img {
    border-radius: 14px;
    transition: transform var(--t-med) var(--ease-out), filter var(--t-med) var(--ease-out);
}

.blog-card:hover img {
    transform: scale(1.03);
    filter: saturate(1.05);
}

.blog-meta {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 6px;
}

.case-card h3 {
    margin: 0 0 6px;
}

.case-meta {
    color: var(--muted);
    margin-bottom: 10px;
}

.metric-tag {
    display: inline-block;
    padding: 6px 10px;
    background: rgba(11, 181, 181, 0.1);
    border-radius: 10px;
    margin: 4px 4px 0 0;
    font-weight: 700;
    color: var(--accent);
}

.hero-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 12px 0 6px;
    color: var(--muted);
}

.hero-note {
    margin-top: 18px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(12, 18, 32, 0.08);
    background: rgba(255, 255, 255, 0.65);
    box-shadow: var(--shadow-soft);
    color: var(--ink-2);
}

.hero-note strong {
    color: var(--accent);
    font-weight: 800;
}

.contact-chips {
    margin-top: 14px;
}

.section-actions {
    margin-top: 18px;
}

@media (max-width: 560px) {
    .hero-side-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1180px) {
    .hero-media-video {
        right: 0;
    }

    .hero-media-note {
        left: 0;
    }

    .hero-bg-graphic {
        width: 92%;
        right: -26%;
        bottom: -14%;
    }

    .hero.hero-secondary {
        margin-top: 0;
    }
}

@media (min-width: 1181px) {
    .hero.hero-secondary {
        margin-top: -40px;
    }
}

@media (max-width: 1024px) {
    .hero-visual {
        padding: 6px 0 16px;
    }

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

    .hero-media-video,
    .hero-media-note {
        position: relative;
        inset: auto;
        width: 100%;
        margin-top: 12px;
    }

    .hero-media-video {
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-media-note {
        max-width: 520px;
        margin-left: 0;
        margin-right: auto;
    }

    .hero-bg-graphic {
        width: 120%;
        right: -38%;
    }

    .hero.hero-secondary {
        padding: 150px 0 120px;
    }

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

    .hero-profile-wrap {
        order: 2;
    }

    .hero.hero-home .hero-copy {
        order: 1;
    }
}

@media (max-width: 640px) {
    .hero-media-main .chip,
    .hero-media-footer .chip {
        width: 100%;
        justify-content: center;
    }

    .hero-video-label {
        width: 100%;
        justify-content: center;
    }

    .hero-bg-graphic {
        width: 140%;
        right: -52%;
    }

    .hero.hero-secondary {
        margin-top: 0;
        padding: 130px 0 110px;
    }

    .hero.hero-secondary {
        box-shadow: none;
    }
}

.faq {
    border: 1px solid rgba(12, 18, 32, 0.08);
    border-radius: 12px;
    background: var(--surface);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.faq-item {
    border-bottom: 1px solid rgba(12, 18, 32, 0.08);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--ink-2);
}

.faq-answer {
    padding: 0 16px;
    color: var(--muted);
}

.js .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--t-slow) var(--ease-out);
}

.faq-answer-inner {
    padding-bottom: 14px;
}

.faq-question .plus::after {
    content: '+';
    font-size: 18px;
    color: var(--accent);
    display: inline-block;
    transform: rotate(0deg);
    transition: transform var(--t-med) var(--ease-out);
}

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

.list-inline {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
    margin: 12px 0;
}

.list-inline li {
    padding: 9px 12px;
    background: rgba(12, 18, 32, 0.05);
    border-radius: 10px;
    font-weight: 700;
}

.two-col {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 28px;
    align-items: start;
}

.partner-hero {
    padding-bottom: 72px;
}

.partner-hero-shell {
    max-width: 1280px;
    display: grid;
    grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}

.partner-hero-head {
    min-width: 0;
}

.partner-photo-card {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: center;
}

.partner-photo-image {
    display: block;
    width: min(100%, 290px);
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 50% / 38%;
    margin: 0;
    box-shadow: 0 18px 36px rgba(2, 8, 20, 0.22);
}

.partner-main-content {
    min-width: 0;
    display: grid;
    gap: 30px;
    align-content: start;
}

.partner-role-line {
    max-width: none;
    margin: 0 0 26px;
}

.partner-profile-panel .muted {
    margin-bottom: 18px;
}

.partner-profile-block p:last-child {
    margin-bottom: 0;
}

.partner-hero-actions {
    margin-top: 0;
}

.partner-inline-section {
    min-width: 0;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.partner-inline-section h3 {
    margin-bottom: 14px;
}

.partner-inline-section .list-bullets {
    margin-top: 0;
}

.partner-inline-section .list-bullets li {
    padding: 12px 0;
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.stat-block {
    padding: 16px;
    border-radius: 14px;
    background: var(--glass);
    border: 1px solid rgba(12, 18, 32, 0.08);
    box-shadow: var(--shadow-soft);
    position: relative;
}

.stat-block::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(11, 181, 181, 0.45), rgba(245, 159, 68, 0.35), rgba(255, 255, 255, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.tag {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 10px;
    background: rgba(245, 159, 68, 0.12);
    color: #c45f12;
    font-weight: 700;
}

.site-footer {
    padding: 46px 0 14px;
    background: #ffffff;
    color: #0f172a;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.footer-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.site-footer a {
    color: #0f172a;
}

.footer-grid h4 {
    margin-top: 0;
    margin-bottom: 10px;
}

.footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-grid li {
    margin: 6px 0;
}

.footer-contact div {
    margin: 6px 0;
}

.footer-bottom {
    margin-top: 20px;
    padding-top: 12px;
    border-top: 1px solid rgba(15, 23, 42, 0.12);
    font-size: 14px;
    color: #475569;
}

.hero-mini {
    padding: 52px 0 32px;
}

.hero-mini .muted {
    max-width: 720px;
}

/* Home layout refinements */
.home-modern .hero {
    padding: 120px 0 80px;
    background: radial-gradient(circle at 18% 12%, rgba(42, 165, 255, 0.16), transparent 40%), radial-gradient(circle at 82% 8%, rgba(242, 179, 95, 0.14), transparent 44%), linear-gradient(135deg, rgba(15, 26, 48, 0.7), rgba(12, 18, 32, 0.92));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-modern .hero h1 {
    font-size: clamp(32px, 4vw, 44px);
    letter-spacing: -0.03em;
}

.home-modern .hero .card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.home-modern .section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.home-modern .section-title {
    margin: 0;
}

.home-modern .section-subtitle {
    margin: 4px 0 0;
    color: var(--muted);
}

.home-modern .card .link-arrow {
    font-weight: 700;
    color: var(--accent);
}

.home-modern .card .service-icon {
    background: rgba(11, 181, 181, 0.08);
    border: 1px solid rgba(11, 181, 181, 0.24);
    color: #d1f3ff;
}

.home-modern .hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 12px 0 14px;
}

.hero-stats-mini {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.stat-pill {
    display: grid;
    gap: 4px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 700;
}

.stat-pill strong {
    color: #f6f7fb;
    font-size: 15px;
}

.stat-pill span {
    color: var(--muted);
    font-size: 13px;
}

/* New homepage hero */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 120px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(4, 10, 26, 0.9) 0%, rgba(8, 16, 36, 0.95) 30%, #0c162d 100%),
        url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http://www.w3.org/2000/svg%27%20viewBox%3D%270%200%20200%20200%27%20fill%3D%27none%27%3E%3Cg%20stroke%3D%27%2300d2ff%27%20stroke-width%3D%271%27%20stroke-opacity%3D%270.16%27%3E%3Cpath%20d%3D%27M0%20100h200M100%200v200%27/%3E%3C/g%3E%3C/svg%3E");
    background-size: cover, 280px 280px;
    background-position: center;
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: -20% -10% auto auto;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at 40% 40%, rgba(0, 210, 255, 0.2), transparent 45%), radial-gradient(circle at 70% 20%, rgba(0, 255, 170, 0.14), transparent 50%);
    filter: blur(2px);
    opacity: 0.8;
    pointer-events: none;
}

.globe-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    pointer-events: none;
}

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

.hero-text {
    text-align: center;
    color: #f5f7fb;
}

.hero-title {
    font-size: clamp(52px, 9vw, 110px);
    line-height: 1.02;
    margin: 14px 0 18px;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #0bd2ff, #0ef0b8);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 22px;
    color: #d6deed;
    max-width: 820px;
    margin: 0 auto 26px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 32px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .stat-value {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #0bd2ff, #0ef0b8);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-stats .stat-label {
    color: var(--muted);
    font-size: 14px;
}

.hero-v2-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    align-items: start;
}

.hero-globe-title {
    font-size: clamp(48px, 8vw, 108px);
    line-height: 0.98;
    color: #f5f7fb;
    margin: 14px 0 18px;
}

.hero-globe-title .gradient-text {
    background: linear-gradient(135deg, #0bd2ff, #0ef0b8);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-globe-subhead {
    font-size: 22px;
    color: #d6deed;
    max-width: 760px;
    margin-bottom: 26px;
}

.hero-globe-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 28px;
}

.hero-v2-actions .btn-outline {
    border-color: rgba(255, 255, 255, 0.18);
    color: #e8eef8;
}

.hero-v2-actions .btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.hero-globe-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 10px;
}

.hero-globe-stat {
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-globe-stat .stat-value {
    color: #f5f7fb;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: 18px;
}

.hero-globe-stat .stat-label {
    color: var(--muted);
    font-size: 13px;
}

.section-header.centered {
    text-align: center;
}

.stats-v2 .stat-card {
    text-align: center;
}

.compliance-v2 {
    background: linear-gradient(180deg, #0b172f 0%, #0c1427 100%);
}

.compliance-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 48px;
    align-items: center;
}

.cta-v2 {
    padding: 80px 0;
}

.cta-v2 .cta-panel {
    background: linear-gradient(135deg, rgba(11, 181, 181, 0.14), rgba(15, 26, 48, 0.92));
}

@media (max-width: 720px) {
    .hero-v2-actions,
    .hero-globe-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-v2-actions .btn,
    .hero-v2-actions .btn-outline,
    .hero-globe-actions .btn,
    .hero-globe-actions .btn-outline,
    .hero-globe-actions .btn-ghost-dark {
        width: 100%;
        justify-content: center;
    }
}

.cta-row .btn,
.cta-row .btn.ghost {
    will-change: transform;
}

.two-col > .reveal {
    align-self: start;
}

.chip-filter {
    gap: 10px;
    margin: 12px 0 20px;
}

.filter-btn {
    background: rgba(12, 18, 32, 0.05);
    border: 1px solid rgba(12, 18, 32, 0.08);
    padding: 9px 12px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.15s ease;
}

.filter-btn.active {
    background: rgba(11, 181, 181, 0.12);
    color: var(--accent);
    border-color: rgba(11, 181, 181, 0.4);
}

.filter-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(11, 181, 181, 0.22);
}

.simple-hero {
    text-align: center;
    padding: 90px 0 50px;
}

.legal {
    max-width: 780px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid rgba(12, 18, 32, 0.08);
    border-radius: 16px;
    padding: 26px;
    box-shadow: var(--shadow-soft);
}

.tableish {
    border: 1px solid rgba(12, 18, 32, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.tableish-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(12, 18, 32, 0.08);
    align-items: center;
}

.tableish-row:last-child {
    border-bottom: none;
}

.tableish-head {
    background: rgba(12, 18, 32, 0.04);
    font-weight: 800;
}

.highlight {
    color: var(--accent);
    font-weight: 800;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}

.industry-card {
    padding: 18px;
    border-radius: 14px;
    background: var(--glass);
    border: 1px solid rgba(12, 18, 32, 0.08);
    box-shadow: var(--shadow-soft);
}

.map-embed {
    width: 100%;
    height: 240px;
    border-radius: 14px;
    border: 1px solid rgba(12, 18, 32, 0.12);
    overflow: hidden;
    background: #fff;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.blog-content h2, .blog-content h3 {
    margin-top: 24px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.stat {
    display: grid;
    gap: 6px;
    padding: 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(12, 18, 32, 0.08);
    box-shadow: var(--shadow-soft);
}

.stat .value {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 800;
    font-size: 34px;
    color: var(--ink-2);
    line-height: 1.1;
}

.stat .label {
    color: var(--muted);
    font-weight: 700;
}

/* Ripple */
.ripple {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: none;
    background: radial-gradient(circle, rgba(11, 181, 181, 0.35), transparent 60%);
    animation: ripple 520ms var(--ease-out) forwards;
}

@keyframes ripple {
    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(14);
    }
}

/* Back to top */
.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 50;
    border: 1px solid rgba(12, 18, 32, 0.1);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    padding: 12px 14px;
    font-weight: 800;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity var(--t-med) var(--ease-out), transform var(--t-med) var(--ease-out);
}

.back-to-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Mobile sticky CTA */
.sticky-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 70;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(12, 18, 32, 0.08);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
    transition: opacity var(--t-med) var(--ease-out), transform var(--t-med) var(--ease-out);
}

.sticky-cta.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 10px;
    border-radius: 14px;
    border: 1px solid rgba(12, 18, 32, 0.08);
    background: rgba(12, 18, 32, 0.03);
    font-weight: 900;
}

.sticky-btn.primary {
    background: linear-gradient(135deg, var(--accent), #0fa3a3);
    color: #fff;
    border-color: transparent;
}

@media (min-width: 821px) {
    .sticky-cta {
        display: none;
    }
}

/* Page transition (optional, very subtle) */
.page-transition {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(11, 181, 181, 0.12), transparent 38%),
        radial-gradient(circle at 80% 10%, rgba(245, 159, 68, 0.12), transparent 35%),
        rgba(255, 255, 255, 0.92);
    opacity: 0;
    pointer-events: none;
    z-index: 80;
    transition: opacity 150ms var(--ease-out);
}

.page-transition.is-active {
    opacity: 1;
}

@media (max-width: 1024px) {
    .hero h1, .hero h2 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

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

@media (max-width: 960px) {
    .cta-panel, .testimonial-strip, .two-col {
        grid-template-columns: 1fr;
    }

    .partner-hero-shell {
        grid-template-columns: 1fr;
        row-gap: 22px;
    }

    .partner-photo-card {
        width: min(100%, 440px);
        justify-self: center;
    }

    .partner-main-content {
        gap: 24px;
    }

    .partner-role-line {
        margin-bottom: 20px;
    }

    .linkedin-feed-head {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 720px) {
    .partner-hero {
        padding-bottom: 56px;
    }

    .partner-photo-card {
        padding: 16px;
    }

    .partner-photo-image {
        width: min(100%, 260px);
    }

    .partner-overview-grid {
        margin-top: 24px;
        gap: 18px;
    }

    .partner-main-content {
        gap: 20px;
    }
}

@media (max-width: 820px) {
    .site-header .container {
        padding: 0 10px;
    }

    .header-inner {
        min-height: 90px;
        height: auto;
        padding: 10px 8px;
        gap: 10px;
    }

    .site-header.is-scrolled .header-inner {
        min-height: 84px;
        height: auto;
    }

    .site-header .logo {
        flex: 1 1 auto;
        min-width: 0;
    }

    .site-header .logo > a {
        width: min(190px, 100%);
    }

    .site-header .logo-img {
        width: 100%;
        height: auto;
    }

    .nav {
        display: none;
        position: absolute;
        top: 92px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 12px 24px 20px;
        box-shadow: var(--shadow-soft);
        flex-direction: column;
        gap: 10px;
    }

    .nav.open {
        display: flex;
    }

    .header-actions {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-left: 0;
        flex-shrink: 0;
    }

    .header-actions .btn {
        display: none;
    }

    .header-actions .icon-btn {
        width: 44px;
        height: 44px;
        padding: 0;
        border-radius: 14px;
        flex-shrink: 0;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        margin-left: 0;
        border-radius: 14px;
        flex-shrink: 0;
    }

    .drawer-head {
        align-items: flex-start;
        gap: 10px;
    }

    .drawer-head .logo {
        flex: 1 1 auto;
        min-width: 0;
        padding: 12px 14px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    }

    .drawer-head .logo-img {
        width: min(220px, 100%);
        height: auto;
    }

    .drawer-close {
        padding: 10px 14px;
        border-radius: 14px;
        flex-shrink: 0;
    }

    .hero::before {
        inset: 6px;
    }

    html:not(.js) .nav {
        display: flex;
        position: static;
        box-shadow: none;
        padding: 12px 0 0;
        background: transparent;
    }

    html:not(.js) .menu-toggle,
    html:not(.js) .nav-drawer,
    html:not(.js) .drawer-overlay {
        display: none !important;
    }
}

@media (max-width: 640px) {
    .nav-drawer {
        width: 100vw;
        padding: 18px 16px 18px;
    }

    .site-header .logo > a {
        width: min(182px, 100%);
    }

    .drawer-head .logo-img {
        width: min(210px, 100%);
    }

    .drawer-link-card {
        min-height: 82px;
        padding: 15px 16px;
    }

    .drawer-link-title {
        font-size: 20px;
    }

    .footer-logo-img {
        height: 60px;
    }
}

@media (max-width: 380px) {
    .site-header .logo > a {
        width: min(164px, 100%);
    }

    .drawer-head .logo-img {
        width: min(190px, 100%);
    }
}

/* ================================
   AI Chatbot (JSA Assistant)
   ================================ */

.chatbot {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1200;
    font-family: inherit;
}

.chatbot-fab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 999px;
    border: 1px solid rgba(11, 181, 181, 0.22);
    background: rgba(12, 18, 32, 0.74);
    color: #fff;
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 42px rgba(12, 18, 32, 0.25);
    cursor: pointer;
    transition: transform var(--t-fast) var(--ease-out), box-shadow var(--t-med) var(--ease-out), background var(--t-med) var(--ease-out);
}

.chatbot-fab:hover { transform: translateY(-1px); box-shadow: 0 22px 52px rgba(12, 18, 32, 0.30); }
.chatbot-fab:active { transform: translateY(0) scale(0.99); }

.chatbot-fab-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), rgba(255,255,255,0.35));
    box-shadow: 0 0 0 5px rgba(11, 181, 181, 0.18);
}

.chatbot-fab-label {
    font-weight: 800;
    letter-spacing: -0.01em;
}

.chatbot-panel {
    position: absolute;
    right: 0;
    bottom: 56px;
    width: min(420px, calc(100vw - 36px));
    max-height: min(640px, calc(100vh - 110px));
    display: none;
    grid-template-rows: auto auto 1fr auto auto;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(12, 18, 32, 0.12);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    box-shadow: 0 24px 70px rgba(12, 18, 32, 0.26);
}

.chatbot.open .chatbot-panel { display: grid; animation: chatbotPop 220ms var(--ease-out); }

@keyframes chatbotPop {
    from { opacity: 0; transform: translateY(10px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.chatbot-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 14px 12px;
    border-bottom: 1px solid rgba(12, 18, 32, 0.10);
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.90));
}

.chatbot-title { font-weight: 900; letter-spacing: -0.02em; color: var(--ink); }
.chatbot-sub { margin-top: 4px; font-size: 12px; color: var(--muted); line-height: 1.4; }

.chatbot-close {
    border: 1px solid rgba(12, 18, 32, 0.10);
    border-radius: 14px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.70);
    cursor: pointer;
    font-weight: 800;
}

.chatbot-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding: 10px 12px 12px;
    border-bottom: 1px solid rgba(12, 18, 32, 0.08);
}

.chatbot-messages {
    padding: 12px;
    overflow: auto;
    scroll-behavior: smooth;
    background:
        radial-gradient(circle at 10% 0%, rgba(11, 181, 181, 0.06), transparent 52%),
        radial-gradient(circle at 90% 0%, rgba(245, 159, 68, 0.06), transparent 52%);
}

.chatbot-msg {
    display: flex;
    margin: 10px 0;
}

.chatbot-msg.user { justify-content: flex-end; }
.chatbot-msg.assistant { justify-content: flex-start; }

.chatbot-msg .bubble {
    max-width: 84%;
    padding: 10px 12px;
    border-radius: 16px;
    border: 1px solid rgba(12, 18, 32, 0.10);
    box-shadow: 0 10px 20px rgba(12, 18, 32, 0.06);
    font-size: 13px;
    line-height: 1.55;
}

.chatbot-msg.user .bubble {
    background: rgba(11, 181, 181, 0.12);
    border-color: rgba(11, 181, 181, 0.20);
}

.chatbot-msg.assistant .bubble {
    background: rgba(255, 255, 255, 0.90);
}

.chatbot-msg .bubble a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 800;
}
.chatbot-msg .bubble a:hover { text-decoration: underline; }

.chatbot-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 12px;
    border-top: 1px solid rgba(12, 18, 32, 0.10);
    background: rgba(255, 255, 255, 0.86);
}

.chatbot-form textarea {
    width: 100%;
    min-height: 44px;
    max-height: 120px;
    resize: none;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(12, 18, 32, 0.10);
    background: rgba(255, 255, 255, 0.86);
    font: inherit;
    outline: none;
}

.chatbot-form textarea:focus {
    border-color: rgba(11, 181, 181, 0.32);
    box-shadow: 0 0 0 4px rgba(11, 181, 181, 0.12);
}

.chatbot-note {
    padding: 10px 12px 12px;
    font-size: 11px;
    color: var(--muted);
    border-top: 1px solid rgba(12, 18, 32, 0.06);
    background: rgba(255, 255, 255, 0.86);
}

.chatbot .dots { display: inline-flex; gap: 4px; }
.chatbot .dots i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(12, 18, 32, 0.35);
    display: inline-block;
    animation: chatDot 900ms var(--ease-out) infinite;
}
.chatbot .dots i:nth-child(2) { animation-delay: 120ms; }
.chatbot .dots i:nth-child(3) { animation-delay: 240ms; }
@keyframes chatDot {
    0%, 100% { transform: translateY(0); opacity: 0.55; }
    50% { transform: translateY(-3px); opacity: 1; }
}

@media (max-width: 720px) {
    .chatbot { right: 12px; bottom: 12px; }
    .chatbot-panel { bottom: 54px; width: calc(100vw - 24px); }
}

@media (prefers-reduced-motion: reduce) {
    .chatbot-fab, .chatbot-panel, .chatbot .dots i {
        transition: none !important;
        animation: none !important;
    }
}

/* Home redesign */
body[data-page="index.php"] {
    --cyan-400: #22d3ee;
    --cyan-500: #06b6d4;
    --cyan-600: #0891b2;
    --cyan-50: #ecfeff;
    --cyan-200: #a5f3fc;
    --cyan-300: #67e8f9;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --purple-400: #a855f7;
    --amber-400: #f59e0b;
    --rose-400: #f43f5e;
    --indigo-400: #6366f1;
    --accent: #0bd2ff;
    --accent-2: #0ef0b8;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #020617;
    --container-max-width: 1280px;
    --section-padding: 160px;
    background: #ffffff;
    color: var(--slate-900);
}

html[data-page="index.php"],
body[data-page="index.php"] {
    scroll-behavior: smooth;
}

body[data-page="index.php"] main {
    padding: 0;
    margin: 0;
    background: transparent;
    color: inherit;
}

body[data-page="index.php"] .mobile-sticky-cta {
    display: none;
}

body[data-page="index.php"] .home-modern {
    background: #ffffff;
    color: var(--slate-900);
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    width: 100%;
}

body[data-page="index.php"] .home-modern,
body[data-page="index.php"] .home-modern * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body[data-page="index.php"] .home-modern * {
    box-sizing: border-box;
}

body[data-page="index.php"] .home-modern img {
    max-width: 100%;
    display: block;
}

body[data-page="index.php"] .home-modern a {
    color: inherit;
    text-decoration: none;
}

body[data-page="index.php"] .home-modern button {
    font-family: inherit;
}

body[data-page="index.php"] .home-modern h1,
body[data-page="index.php"] .home-modern h2,
body[data-page="index.php"] .home-modern h3,
body[data-page="index.php"] .home-modern h4,
body[data-page="index.php"] .home-modern p {
    margin: 0;
}

body[data-page="index.php"] .home-modern section {
    margin: 0;
}

body[data-page="index.php"] .home-modern section,
body[data-page="index.php"] .home-modern nav,
body[data-page="index.php"] .home-modern footer {
    position: relative;
    z-index: 1;
}

body[data-page="index.php"] .hero-section,
body[data-page="index.php"] .stats-section,
body[data-page="index.php"] .compliance-v2,
body[data-page="index.php"] .services-section,
body[data-page="index.php"] .interactive-features-section,
body[data-page="index.php"] .process-section,
body[data-page="index.php"] .live-stats-section,
body[data-page="index.php"] .testimonials-section,
body[data-page="index.php"] .insights-section,
body[data-page="index.php"] .cta-section {
    display: block;
    width: 100%;
    scroll-margin-top: 120px;
}

body[data-page="index.php"] .home-modern .container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

body[data-page="index.php"] .home-modern a {
    color: inherit;
    text-decoration: none;
}

body[data-page="index.php"] .home-modern button {
    font-family: inherit;
}

body[data-page="index.php"] .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background: #ffffff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

body[data-page="index.php"] .header-inner {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: none;
}

body[data-page="index.php"] .site-header.is-scrolled .header-inner {
    background: #ffffff;
}

body[data-page="index.php"] .nav a {
    color: #0f172a;
}

body[data-page="index.php"] .nav a[aria-current="page"],
body[data-page="index.php"] .nav a.is-active {
    color: #0ea5e9;
}

body[data-page="index.php"] .nav a::after {
    background: linear-gradient(90deg, #0bd2ff, #0ef0b8);
}

body[data-page="index.php"] .header-actions .btn {
    background: linear-gradient(135deg, #0bd2ff, #0ef0b8);
    color: #0f172a;
    box-shadow: 0 12px 28px rgba(11, 210, 255, 0.25);
}

body[data-page="index.php"] .header-actions .btn:hover {
    box-shadow: 0 16px 32px rgba(11, 210, 255, 0.35);
}

body[data-page="index.php"] .menu-toggle {
    border-color: rgba(15, 23, 42, 0.2);
    background: #ffffff;
    color: #0f172a;
}

/* Site header/footer are used; no custom nav/footer overrides here */

body[data-page="index.php"] .btn-primary {
    background: linear-gradient(135deg, var(--cyan-500), var(--emerald-500));
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.2);
}

body[data-page="index.php"] .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
}

body[data-page="index.php"] .btn-outline {
    background: transparent;
    color: #e8eef8;
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none;
}

body[data-page="index.php"] .btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

body[data-page="index.php"] .btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

body[data-page="index.php"] .btn-full {
    width: 100%;
    justify-content: center;
}

body[data-page="index.php"] .badge {
    display: inline-block;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--cyan-600);
    margin-bottom: 24px;
    white-space: nowrap;
}

body[data-page="index.php"] .badge-green {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
    color: var(--emerald-600);
}

body[data-page="index.php"] .hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 180px 0 110px;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 16% 20%, rgba(0, 210, 255, 0.14), transparent 32%),
        radial-gradient(circle at 82% 18%, rgba(16, 185, 129, 0.12), transparent 38%),
        linear-gradient(180deg, #0b1326 0%, #0f1d3a 42%, #0a1022 100%);
}

body[data-page="index.php"] .hero-section::after {
    content: none;
}

body[data-page="index.php"] .globe-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.45;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: screen;
}

body[data-page="index.php"] .hero-grid-bg {
    position: absolute;
    inset: -10% -10%;
    background:
        radial-gradient(circle at center, rgba(10, 226, 226, 0.18), transparent 50%),
        url("data:image/svg+xml,%3Csvg%20width%3D%22440%22%20height%3D%22440%22%20viewBox%3D%220%200%20440%20440%22%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%2300e0ff%27%20stroke-opacity%3D%270.25%27%20stroke-width%3D%270.8%27%3E%3Cpath%20d%3D%27M0%20220h440M220%200v440%27/%3E%3C/g%3E%3C/svg%3E");
    background-size: cover, 260px 260px;
    mix-blend-mode: screen;
    opacity: 0.82;
    z-index: 0;
    filter: blur(0.3px);
    pointer-events: none;
    transform: scale(1.3) perspective(820px) rotateX(26deg) rotateZ(-10deg);
    transform-origin: center;
    mask-image: radial-gradient(circle at 50% 42%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 42%, rgba(0, 0, 0, 0) 78%);
    -webkit-mask-image: radial-gradient(circle at 50% 42%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 42%, rgba(0, 0, 0, 0) 78%);
}

body[data-page="index.php"] .hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(8, 12, 26, 0) 0%, rgba(8, 12, 26, 0.45) 75%, rgba(8, 12, 26, 0.75) 100%);
    pointer-events: none;
    z-index: 2;
}

body[data-page="index.php"] .hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1180px;
}

body[data-page="index.php"] .hero-text {
    text-align: left;
    max-width: 720px;
}

body[data-page="index.php"] .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(68px, 10vw, 124px);
    font-weight: 800;
    line-height: 0.98;
    color: #ffffff;
    margin: 22px 0 16px;
}

body[data-page="index.php"] .hero-section .badge {
    background: rgba(34, 211, 238, 0.12);
    border-color: rgba(34, 211, 238, 0.28);
    color: #7dd3fc;
}

body[data-page="index.php"] .title-line {
    display: block;
}

body[data-page="index.php"] .gradient-text {
    background: linear-gradient(135deg, #08d4ff, #15f0c8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body[data-page="index.php"] .hero-description {
    font-size: 22px;
    color: #dbe7ff;
    margin: 0 0 36px;
    max-width: 700px;
    line-height: 1.6;
}

body[data-page="index.php"] .hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 38px;
}

body[data-page="index.php"] .hero-stats {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-top: 20px;
}

body[data-page="index.php"] .stat {
    text-align: left;
    padding: 12px 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

body[data-page="index.php"] .stat-value {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #0bd2ff, #0ef0b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

body[data-page="index.php"] .stat-label {
    font-size: 14px;
    color: var(--muted);
    font-weight: 600;
}

@keyframes float {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(-14px); opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

body[data-page="index.php"] .fade-in-up {
    animation: fadeInUp 1s ease-out;
}

body[data-page="index.php"] .delay-1 { animation-delay: 0.2s; }
body[data-page="index.php"] .delay-2 { animation-delay: 0.4s; }
body[data-page="index.php"] .delay-3 { animation-delay: 0.6s; }

body[data-page="index.php"] .stats-section {
    padding: var(--section-padding) 0;
    background: #ffffff;
    position: relative;
}

body[data-page="index.php"] .section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    margin-bottom: 80px;
}

body[data-page="index.php"] .section-header .badge {
    margin-bottom: 0;
}

body[data-page="index.php"] .section-title {
    font-size: 72px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 16px;
    line-height: 1.1;
}

body[data-page="index.php"] .section-subtitle {
    font-size: 24px;
    color: var(--slate-600);
}

body[data-page="index.php"] .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

body[data-page="index.php"] .stat-card {
    background: linear-gradient(135deg, var(--slate-50), #ffffff);
    border: 1px solid var(--slate-200);
    border-radius: 24px;
    padding: 48px 32px;
    text-align: center;
    transition: all 0.3s ease;
}

body[data-page="index.php"] .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.15);
    border-color: #67e8f9;
}

body[data-page="index.php"] .stat-icon {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--cyan-600);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

body[data-page="index.php"] .stat-number {
    font-size: 64px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--cyan-500), var(--emerald-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

body[data-page="index.php"] .stat-text {
    font-size: 18px;
    color: var(--slate-600);
    font-weight: 500;
}

body[data-page="index.php"] .compliance-v2 {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

body[data-page="index.php"] .particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

body[data-page="index.php"] .compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 80px;
    align-items: center;
}

body[data-page="index.php"] .compliance-content {
    color: #ffffff;
}

body[data-page="index.php"] .section-title-white {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 32px;
}

body[data-page="index.php"] .section-description-white {
    font-size: 24px;
    color: var(--slate-300);
    margin-bottom: 48px;
    line-height: 1.6;
}

body[data-page="index.php"] .feature-list {
    margin-bottom: 48px;
}

body[data-page="index.php"] .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--slate-300);
    font-size: 18px;
    transition: transform 0.3s ease;
}

body[data-page="index.php"] .feature-item:hover {
    transform: translateX(8px);
}

body[data-page="index.php"] .check-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--cyan-500), var(--emerald-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    flex-shrink: 0;
}

body[data-page="index.php"] .compliance-visual {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

body[data-page="index.php"] .dashboard-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

body[data-page="index.php"] .dashboard-image:hover {
    transform: scale(1.02);
}

body[data-page="index.php"] .dashboard-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

body[data-page="index.php"] .image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--slate-950), transparent);
}

body[data-page="index.php"] .floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 12px;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

body[data-page="index.php"] .badge-secure { top: 24px; right: 24px; }
body[data-page="index.php"] .badge-live { top: 24px; left: 24px; display: flex; align-items: center; gap: 8px; }

body[data-page="index.php"] .pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--emerald-400);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

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

body[data-page="index.php"] .metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

body[data-page="index.php"] .metric-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

body[data-page="index.php"] .metric-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.1);
}

body[data-page="index.php"] .metric-icon {
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--cyan-200);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
body[data-page="index.php"] .metric-value { font-size: 36px; font-weight: 700; color: #ffffff; margin-bottom: 4px; }
body[data-page="index.php"] .metric-label { font-size: 12px; color: var(--slate-400); font-weight: 500; }

body[data-page="index.php"] .services-section {
    padding: var(--section-padding) 0;
    background: #ffffff;
    position: relative;
}

body[data-page="index.php"] .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

body[data-page="index.php"] .service-card {
    background: #ffffff;
    border: 1px solid var(--slate-200);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
}

body[data-page="index.php"] .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.1);
    border-color: #a5f3fc;
}

body[data-page="index.php"] .service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

body[data-page="index.php"] .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

body[data-page="index.php"] .service-card:hover .service-image img {
    transform: scale(1.1);
}

body[data-page="index.php"] .service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8), transparent);
}

body[data-page="index.php"] .service-icon-float {
    position: absolute;
    bottom: 16px;
    left: 16px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--cyan-500), var(--emerald-500));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
    color: #ffffff;
}

body[data-page="index.php"] .service-content { padding: 32px; }
body[data-page="index.php"] .service-title { font-size: 24px; font-weight: 700; color: var(--slate-900); margin-bottom: 12px; }
body[data-page="index.php"] .service-description { font-size: 16px; color: var(--slate-600); margin-bottom: 16px; line-height: 1.6; }
body[data-page="index.php"] .service-badge {
    display: inline-block;
    background: #ecfeff;
    color: var(--cyan-600);
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

body[data-page="index.php"] .service-link {
    color: var(--cyan-600);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

body[data-page="index.php"] .service-link:hover {
    transform: translateX(4px);
}

body[data-page="index.php"] .interactive-features-section {
    padding: var(--section-padding) 0;
    background: var(--slate-950);
    position: relative;
    overflow: hidden;
}

body[data-page="index.php"] .feature-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

body[data-page="index.php"] .tab-button {
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--slate-300);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

body[data-page="index.php"] .tab-button.active {
    background: linear-gradient(135deg, var(--cyan-500), var(--emerald-500));
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
}

body[data-page="index.php"] .tab-button:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
}

body[data-page="index.php"] .feature-content {
    display: none;
}

body[data-page="index.php"] .feature-content.active {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 48px;
    align-items: center;
}

body[data-page="index.php"] .feature-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

body[data-page="index.php"] .feature-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

body[data-page="index.php"] .feature-icon-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--cyan-500), var(--emerald-500));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 32px rgba(6, 182, 212, 0.4);
    color: #ffffff;
}

body[data-page="index.php"] .feature-stats-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

body[data-page="index.php"] .mini-stat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

body[data-page="index.php"] .mini-stat-value {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--cyan-400), var(--emerald-400));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
}

body[data-page="index.php"] .mini-stat-label {
    font-size: 12px;
    color: var(--slate-400);
}

body[data-page="index.php"] .feature-details {
    color: #ffffff;
}

body[data-page="index.php"] .feature-details h3 {
    font-size: 48px;
    margin-bottom: 16px;
}

body[data-page="index.php"] .feature-details p {
    font-size: 20px;
    color: var(--slate-300);
    margin-bottom: 32px;
    line-height: 1.6;
}

body[data-page="index.php"] .feature-highlights {
    margin-bottom: 32px;
}

body[data-page="index.php"] .highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--slate-300);
}

body[data-page="index.php"] .process-section {
    padding: var(--section-padding) 0;
    background: var(--slate-950);
    position: relative;
}

body[data-page="index.php"] .process-timeline {
    position: relative;
    margin-bottom: 64px;
}

body[data-page="index.php"] .timeline-track {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 820px;
    margin: 0 auto;
}

body[data-page="index.php"] .timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%);
}

body[data-page="index.php"] .timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--cyan-500), var(--emerald-500));
    transition: width 0.5s ease;
}

body[data-page="index.php"] .timeline-step {
    position: relative;
    z-index: 10;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: var(--slate-400);
    border: 2px solid transparent;
}

body[data-page="index.php"] .timeline-step.active {
    background: linear-gradient(135deg, var(--cyan-500), var(--emerald-500));
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.5);
    transform: scale(1.05);
}

body[data-page="index.php"] .timeline-step.completed {
    background: rgba(6, 182, 212, 0.3);
    color: #ffffff;
}

body[data-page="index.php"] .process-content {
    display: none;
}

body[data-page="index.php"] .process-content.active {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 48px;
    align-items: center;
}

body[data-page="index.php"] .process-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

body[data-page="index.php"] .process-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

body[data-page="index.php"] .process-number-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--cyan-500), var(--emerald-500));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.5);
}

body[data-page="index.php"] .process-details {
    color: #ffffff;
}

body[data-page="index.php"] .process-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--cyan-500), var(--emerald-500));
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 24px;
    color: #ffffff;
}

body[data-page="index.php"] .process-details h3 {
    font-size: 44px;
    margin-bottom: 16px;
}

body[data-page="index.php"] .process-details p {
    font-size: 20px;
    color: var(--slate-300);
    margin-bottom: 32px;
    line-height: 1.6;
}

body[data-page="index.php"] .live-stats-section {
    padding: var(--section-padding) 0;
    background: var(--slate-950);
    position: relative;
    overflow: hidden;
}

body[data-page="index.php"] .live-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

body[data-page="index.php"] .live-stat-card {
    position: relative;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 36px;
    transition: all 0.3s ease;
}

body[data-page="index.php"] .live-stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
}

body[data-page="index.php"] .live-stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    color: #ffffff;
}

body[data-page="index.php"] .live-stat-icon.cyan { background: linear-gradient(135deg, var(--cyan-500), #3b82f6); }
body[data-page="index.php"] .live-stat-icon.emerald { background: linear-gradient(135deg, var(--emerald-500), #14b8a6); }
body[data-page="index.php"] .live-stat-icon.purple { background: linear-gradient(135deg, var(--purple-400), #ec4899); }
body[data-page="index.php"] .live-stat-icon.amber { background: linear-gradient(135deg, var(--amber-400), #f97316); }
body[data-page="index.php"] .live-stat-icon.rose { background: linear-gradient(135deg, var(--rose-400), #dc2626); }
body[data-page="index.php"] .live-stat-icon.indigo { background: linear-gradient(135deg, var(--indigo-400), #8b5cf6); }

body[data-page="index.php"] .live-stat-value {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

body[data-page="index.php"] .live-stat-label {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

body[data-page="index.php"] .live-stat-desc {
    font-size: 13px;
    color: var(--slate-400);
}

body[data-page="index.php"] .pulse-indicator {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

body[data-page="index.php"] .testimonials-section {
    padding: var(--section-padding) 0;
    background: #ffffff;
}

body[data-page="index.php"] .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
}

body[data-page="index.php"] .testimonial-card {
    background: linear-gradient(135deg, var(--slate-50), #ffffff);
    border: 1px solid var(--slate-200);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
}

body[data-page="index.php"] .testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.1);
}

body[data-page="index.php"] .quote-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--cyan-500);
}

body[data-page="index.php"] .stars {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

body[data-page="index.php"] .star {
    color: #fbbf24;
    font-size: 18px;
}

body[data-page="index.php"] .testimonial-quote {
    font-size: 18px;
    line-height: 1.7;
    color: var(--slate-700);
    font-style: italic;
    margin-bottom: 32px;
}

body[data-page="index.php"] .testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

body[data-page="index.php"] .author-image {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan-500), var(--emerald-500));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    border: 2px solid var(--cyan-200);
}

body[data-page="index.php"] .author-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 4px;
}

body[data-page="index.php"] .author-info p {
    font-size: 14px;
    color: var(--slate-600);
}

body[data-page="index.php"] .company-badge {
    display: inline-block;
    background: var(--cyan-50);
    color: var(--cyan-600);
    padding: 6px 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 24px;
}

body[data-page="index.php"] .trust-logos {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 72px;
    flex-wrap: wrap;
    opacity: 0.4;
}

body[data-page="index.php"] .trust-logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--slate-900);
}

body[data-page="index.php"] .insights-section {
    padding: var(--section-padding) 0;
    background: var(--slate-950);
}

body[data-page="index.php"] .insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

body[data-page="index.php"] .insight-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
}

body[data-page="index.php"] .insight-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

body[data-page="index.php"] .insight-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

body[data-page="index.php"] .insight-content {
    padding: 32px;
}

body[data-page="index.php"] .insight-category {
    display: inline-block;
    background: rgba(6, 182, 212, 0.2);
    color: var(--cyan-300);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

body[data-page="index.php"] .insight-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

body[data-page="index.php"] .insight-excerpt {
    font-size: 16px;
    color: var(--slate-400);
    margin-bottom: 24px;
    line-height: 1.6;
}

body[data-page="index.php"] .insight-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--slate-500);
    margin-bottom: 18px;
}

body[data-page="index.php"] .read-more {
    color: var(--cyan-400);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

body[data-page="index.php"] .read-more:hover {
    gap: 12px;
}

body[data-page="index.php"] .cta-section {
    padding: var(--section-padding) 0;
    background: var(--slate-950);
    position: relative;
}

body[data-page="index.php"] .cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 80px;
    align-items: center;
}

body[data-page="index.php"] .cta-content { color: #ffffff; }

body[data-page="index.php"] .contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 48px;
}

body[data-page="index.php"] .contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 18px;
    color: var(--slate-300);
}

body[data-page="index.php"] .contact-icon {
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan-200);
}

body[data-page="index.php"] .stat-icon .ms-icon,
body[data-page="index.php"] .metric-icon .ms-icon,
body[data-page="index.php"] .service-icon-float .ms-icon,
body[data-page="index.php"] .feature-icon-badge .ms-icon,
body[data-page="index.php"] .process-icon .ms-icon,
body[data-page="index.php"] .live-stat-icon .ms-icon {
    animation: iconFloat 6s ease-in-out infinite;
}

body[data-page="index.php"] .cta-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 48px;
}

body[data-page="index.php"] .form-title { font-size: 32px; font-weight: 700; color: #ffffff; margin-bottom: 8px; }
body[data-page="index.php"] .form-subtitle { font-size: 16px; color: var(--slate-400); margin-bottom: 32px; }

body[data-page="index.php"] .form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

body[data-page="index.php"] .form-input:focus {
    outline: none;
    border-color: var(--cyan-500);
    background: rgba(255, 255, 255, 0.08);
}

body[data-page="index.php"] .form-input::placeholder {
    color: var(--slate-500);
}

body[data-page="index.php"] textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

body[data-page="index.php"] .form-status {
    margin-bottom: 16px;
}

body[data-page="index.php"] .footer-modern {
    background: #0b1220;
    padding: 32px 0;
    color: #ffffff;
}

body[data-page="index.php"] .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

body[data-page="index.php"] .footer-modern .logo {
    font-size: 24px;
    font-weight: 700;
}

body[data-page="index.php"] .footer-tagline {
    color: var(--slate-400);
    font-size: 14px;
}

body[data-page="index.php"] .footer-modern .logo-accent {
    background: linear-gradient(135deg, var(--cyan-500), var(--emerald-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body[data-page="index.php"] .footer-content p {
    margin: 0;
}

@media (max-width: 1024px) {
    body[data-page="index.php"] { --section-padding: 120px; }
    body[data-page="index.php"] .hero-title { font-size: 80px; }
    body[data-page="index.php"] .section-title, body[data-page="index.php"] .section-title-white { font-size: 56px; }
    body[data-page="index.php"] .feature-details h3,
    body[data-page="index.php"] .process-details h3 { font-size: 40px; }
}

@media (max-width: 768px) {
    body[data-page="index.php"] { --section-padding: 80px; }
    body[data-page="index.php"] .nav-links { display: none; }
    body[data-page="index.php"] .mobile-menu-toggle { display: block; }
    body[data-page="index.php"] .hero-section { padding: 160px 0 90px; }
    body[data-page="index.php"] .hero-title { font-size: 56px; }
    body[data-page="index.php"] .hero-description { font-size: 20px; }
    body[data-page="index.php"] .hero-buttons { flex-direction: column; align-items: stretch; }
    body[data-page="index.php"] .hero-text { text-align: center; margin: 0 auto; }
    body[data-page="index.php"] .hero-buttons { justify-content: center; }
    body[data-page="index.php"] .hero-stats { gap: 20px; justify-content: center; }
    body[data-page="index.php"] .hero-grid-bg {
        transform: scale(1.15) perspective(720px) rotateX(22deg) rotateZ(-6deg);
    }
    body[data-page="index.php"] .globe-canvas { opacity: 0.25; }
    body[data-page="index.php"] .stat-value { font-size: 36px; }
    body[data-page="index.php"] .section-title, body[data-page="index.php"] .section-title-white { font-size: 40px; }
    body[data-page="index.php"] .section-subtitle, body[data-page="index.php"] .section-description-white { font-size: 18px; }
    body[data-page="index.php"] .compliance-grid-v2,
    body[data-page="index.php"] .cta-grid,
    body[data-page="index.php"] .feature-content.active,
    body[data-page="index.php"] .process-content.active { grid-template-columns: 1fr; gap: 40px; }
    body[data-page="index.php"] .services-grid,
    body[data-page="index.php"] .live-stats-grid,
    body[data-page="index.php"] .testimonials-grid,
    body[data-page="index.php"] .insights-grid { grid-template-columns: 1fr; }
    body[data-page="index.php"] .stat-number { font-size: 48px; }
    body[data-page="index.php"] .metrics-grid { grid-template-columns: 1fr; }
    body[data-page="index.php"] .feature-stats-mini { grid-template-columns: 1fr; }
    body[data-page="index.php"] .timeline-track { max-width: 100%; gap: 12px; }
    body[data-page="index.php"] .timeline-step { width: 52px; height: 52px; font-size: 16px; }
    body[data-page="index.php"] .process-image img { height: 360px; }
}

@media (max-width: 480px) {
    body[data-page="index.php"] .hero-section { padding: 150px 0 80px; }
    body[data-page="index.php"] .hero-title { font-size: 40px; }
    body[data-page="index.php"] .hero-description { font-size: 18px; }
    body[data-page="index.php"] .section-title, body[data-page="index.php"] .section-title-white { font-size: 32px; }
    body[data-page="index.php"] .stat-value { font-size: 28px; }
    body[data-page="index.php"] .stat-number { font-size: 36px; }
    body[data-page="index.php"] .hero-stats { flex-direction: column; }
    body[data-page="index.php"] .process-image img { height: 300px; }
}
