:root {
    --bg: #f4f8ff;
    --surface: #ffffff;
    --surface-soft: #f5f9ff;
    --ink: #0f223a;
    --muted: #5b6f87;
    --line: #d4e1f3;
    --brand: #0b6bcb;
    --brand-dark: #064f9a;
    --brand-alt: #0ea5a4;
    --logo-navy: #2d2b73;
    --logo-cyan: #2fa4dd;
    --menu-soft: #eef4ff;
    --menu-border: #cfdaf2;
    --success: #0e9f6e;
    --shadow: 0 14px 30px rgba(14, 35, 66, 0.1);
}

* { box-sizing: border-box; }

html,
body {
    margin: 0;
    padding: 0;
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 8% 0%, rgba(14, 165, 164, 0.1), transparent 34%),
        radial-gradient(circle at 92% 8%, rgba(11, 107, 203, 0.12), transparent 32%),
        linear-gradient(180deg, #f9fbff 0%, #eef4fb 100%);
}

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

.noise { display: none; }

.wrap {
    width: min(1140px, 92%);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 255, 0.92));
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--menu-border);
    box-shadow: 0 8px 20px rgba(35, 41, 102, 0.06);
}

.nav-row {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.brand-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0ea5a4, #0b6bcb);
}

.brand-logo {
    width: auto;
    height: 34px;
    max-width: 190px;
    object-fit: contain;
    display: block;
}

.brand-logo-sm {
    height: 28px;
    max-width: 150px;
}

.brand-logo-md {
    height: 34px;
    max-width: 190px;
}

.brand-logo-lg {
    height: 44px;
    max-width: 240px;
}

.brand strong {
    display: block;
    font-family: "Space Grotesk", sans-serif;
}

.brand small {
    display: block;
    font-size: 0.74rem;
    color: var(--muted);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    position: relative;
    row-gap: 6px;
}

.nav-links > a {
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 700;
    color: var(--logo-navy);
    font-size: 0.9rem;
    white-space: nowrap;
}

.nav-links > a:hover {
    background: rgba(47, 164, 221, 0.14);
    color: #25256a;
}

.nav-mega {
    position: relative;
}

.nav-mega-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    background: transparent;
    color: var(--logo-navy);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
}

.nav-mega-trigger:hover,
.nav-mega.open .nav-mega-trigger {
    background: rgba(47, 164, 221, 0.14);
}

.mega-caret {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-top: -2px;
    transition: transform 0.2s ease;
}

.nav-mega.open .mega-caret {
    transform: rotate(225deg);
    margin-top: 2px;
}

.mega-panel {
    position: fixed;
    top: 74px;
    left: 50%;
    width: min(1180px, 94vw);
    padding: 12px;
    border-radius: 14px;
    border: 1px solid #ccd8f2;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.96));
    backdrop-filter: blur(6px);
    box-shadow: 0 22px 38px rgba(32, 40, 100, 0.16);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 80;
}

.nav-mega.open .mega-panel,
.nav-mega:hover .mega-panel,
.nav-mega:focus-within .mega-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mega-item {
    display: block;
    border: 1px solid #d2def2;
    border-radius: 10px;
    padding: 11px;
    background: linear-gradient(180deg, #ffffff, #f9fcff);
}

.mega-item b {
    display: block;
    color: var(--logo-navy);
    font-size: 0.92rem;
}

.mega-item span {
    display: block;
    margin-top: 5px;
    color: #4d6181;
    font-size: 0.8rem;
    line-height: 1.45;
}

.mega-item:hover {
    border-color: #8bc7ea;
    background: linear-gradient(180deg, #f7fcff, #eef8ff);
}

.nav-links .btn-primary {
    background: linear-gradient(135deg, var(--logo-navy), #25256a 55%, var(--logo-cyan));
    border-color: transparent;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.nav-links .btn-primary:hover {
    background: linear-gradient(135deg, #262668, #21215e 55%, #289bd2);
    color: #ffffff;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 800;
    font-size: 0.9rem;
    transition: 0.2s ease;
}

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

.btn-primary {
    border-color: transparent;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark) 55%, #0a3f7f);
}

.btn-ghost {
    background: #fff;
    color: #17304d;
}

.ad-zone {
    margin-top: 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
    padding: 12px;
    box-shadow: var(--shadow);
}

.ad-zone-head {
    font-size: 0.72rem;
    font-weight: 700;
    color: #73859a;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}

.ad-placeholder {
    min-height: 110px;
    border: 1px dashed #bfd0e6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60758d;
    background: #f6faff;
    text-align: center;
    padding: 12px;
}

.hero {
    margin-top: 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: var(--shadow);
    padding: 28px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
}

.eyebrow {
    margin: 0;
    color: #3b6eb5;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
}

h1 {
    margin-top: 10px;
    font-size: clamp(1.7rem, 4.2vw, 2.8rem);
    line-height: 1.2;
    max-width: 18ch;
}

.lead {
    margin-top: 14px;
    color: var(--muted);
    line-height: 1.75;
    max-width: 64ch;
}

.hero-cta {
    margin-top: 18px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

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

.hero-metrics > div {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 10px;
    background: linear-gradient(180deg, #f8fbff 0%, #f1f7ff 100%);
}

.hero-metrics b {
    display: block;
    color: #0b4f9a;
    font-size: 1.2rem;
}

.hero-metrics span {
    display: block;
    margin-top: 4px;
    font-size: 0.8rem;
    color: var(--muted);
}

.signal-card {
    border: 1px solid #c9dcf5;
    border-radius: 12px;
    background: linear-gradient(170deg, #f4f9ff, #eff6ff);
    padding: 18px;
}

.signal-media {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
    border: 1px solid #d4e2f5;
}

.signal-media img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}

.signal-card h3 { font-size: 1.05rem; }

.signal-card ul {
    margin: 12px 0 0;
    padding-left: 18px;
}

.signal-card li {
    margin-bottom: 8px;
    color: #315274;
    line-height: 1.55;
}

.section {
    margin-top: 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    box-shadow: var(--shadow);
    padding: 22px;
}

.section-head { margin-bottom: 14px; }

.section-head h2 {
    margin-top: 8px;
    font-size: clamp(1.2rem, 3vw, 1.9rem);
    line-height: 1.3;
}

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

.service-card {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    padding: 16px;
    overflow: hidden;
}

.service-media {
    margin: -16px -16px 12px;
    border-bottom: 1px solid #dbe7f5;
    position: relative;
}

.service-media img {
    width: 100%;
    height: 168px;
    object-fit: cover;
    display: block;
}

.service-icon {
    position: absolute;
    left: 14px;
    bottom: -18px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    background: #ffffff;
    color: #1c3d60;
    box-shadow: 0 10px 18px rgba(16, 35, 70, 0.18);
    border: 1px solid #dbe8f6;
}

.service-card h3 {
    margin-top: 8px;
}

.service-card h3 {
    font-size: 1.04rem;
    margin-bottom: 8px;
}

.service-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.service-card span {
    margin-top: 10px;
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    color: #24557d;
    background: #eaf3ff;
    border-radius: 999px;
    padding: 6px 10px;
}

.integration-block {
    margin-top: 24px;
}

.integration-block h3 {
    margin: 0 0 14px;
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
}

.integration-block h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--logo-navy), var(--logo-cyan));
}

.integration-lead {
    margin: 0 0 16px;
    color: var(--muted);
    max-width: 72ch;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.integration-grid article {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
    padding: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
    overflow: hidden;
}

.integration-grid article::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(47, 164, 221, 0.08), transparent 55%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.integration-grid article:hover {
    transform: translateY(-4px);
    border-color: #9fc3ea;
    box-shadow: 0 18px 32px rgba(20, 45, 80, 0.16);
}

.integration-grid article:hover::before {
    opacity: 1;
}

.integration-grid b {
    display: block;
    font-size: 0.95rem;
    color: var(--ink);
    position: relative;
    z-index: 1;
}

.integration-grid p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.integration-grid ul {
    margin: 10px 0 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.55;
    font-size: 0.88rem;
    position: relative;
    z-index: 1;
}

.integration-grid li {
    margin-bottom: 6px;
}

.integration-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.badge-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.4px;
    border: 1px solid transparent;
    background: #eef4ff;
    color: #284466;
}

.badge-chip::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: currentColor;
    opacity: 0.8;
}

.badge-blue {
    background: rgba(45, 86, 181, 0.12);
    color: #2b59b5;
    border-color: rgba(45, 86, 181, 0.22);
}

.badge-cyan {
    background: rgba(47, 164, 221, 0.12);
    color: #1c8bc3;
    border-color: rgba(47, 164, 221, 0.22);
}

.badge-navy {
    background: rgba(35, 52, 115, 0.12);
    color: #2b3e8a;
    border-color: rgba(35, 52, 115, 0.22);
}

.badge-amber {
    background: rgba(245, 158, 11, 0.14);
    color: #a86300;
    border-color: rgba(245, 158, 11, 0.24);
}

.badge-purple {
    background: rgba(124, 58, 237, 0.14);
    color: #6b36d6;
    border-color: rgba(124, 58, 237, 0.24);
}

.badge-green {
    background: rgba(16, 185, 129, 0.14);
    color: #0f8a63;
    border-color: rgba(16, 185, 129, 0.24);
}

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

.integration-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #274462;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(203, 218, 238, 0.7);
}

.integration-stats {
    margin: 14px 0 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.integration-stats > div {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
    padding: 12px 14px;
    box-shadow: var(--shadow);
}

.integration-stats b {
    display: block;
    font-size: 1.2rem;
    color: var(--logo-navy);
}

.integration-stats span {
    display: block;
    margin-top: 4px;
    font-size: 0.8rem;
    color: var(--muted);
}

.integration-cta {
    margin-top: 14px;
    border-radius: 999px;
}

.integration-cta-row {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.detail-hero {
    margin-top: 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: linear-gradient(140deg, #ffffff 0%, #f2f7ff 100%);
    box-shadow: var(--shadow);
    padding: 26px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 18px;
}

.detail-hero-copy h1 {
    max-width: 18ch;
}

.detail-hero-actions {
    margin-top: 16px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.detail-hero-card {
    border: 1px solid #d5e3f5;
    border-radius: 14px;
    background: #ffffff;
    padding: 18px;
    box-shadow: 0 12px 22px rgba(19, 38, 78, 0.12);
}

.detail-card-top {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.detail-card-top span {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(47, 164, 221, 0.12);
    color: #1c5a92;
    font-size: 0.75rem;
    font-weight: 800;
}

.detail-hero-card ul {
    margin: 0;
    padding-left: 18px;
    color: #355370;
    line-height: 1.6;
}

.detail-section {
    margin-top: 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: var(--shadow);
    padding: 22px;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.detail-grid article {
    border: 1px solid #e0e8f6;
    border-radius: 12px;
    padding: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.detail-grid h3 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.detail-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.detail-metrics {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.detail-metrics > div {
    border: 1px solid #d7e4f7;
    border-radius: 12px;
    padding: 12px 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.detail-metrics b {
    display: block;
    font-size: 1.15rem;
    color: var(--logo-navy);
}

.detail-metrics span {
    display: block;
    margin-top: 4px;
    font-size: 0.8rem;
    color: var(--muted);
}

.accent-a { background: linear-gradient(180deg, #ffffff, #f7fbff); }
.accent-b { background: linear-gradient(180deg, #ffffff, #f5fffc); }
.accent-c { background: linear-gradient(180deg, #ffffff, #fffaf4); }
.accent-d { background: linear-gradient(180deg, #ffffff, #f7f6ff); }

.showcase-section { overflow: hidden; }
.entry-slider {
    margin-top: 16px;
    padding: 18px;
    border-radius: 16px;
}

.entry-slider .section-head {
    margin-bottom: 12px;
}

.entry-slider .section-head h2 {
    font-size: clamp(1.3rem, 3.2vw, 2.1rem);
    max-width: 26ch;
}

.showcase-slider {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: radial-gradient(circle at top right, #e8f1ff, #edf4ff 45%, #f8fbff 100%);
    padding: 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.showcase-track {
    position: relative;
    min-height: 276px;
}

.showcase-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(8px) scale(0.99);
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.45s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    background: linear-gradient(145deg, #19467e, #0f2f59);
    color: #f5fbff;
    padding: 20px;
    box-shadow: 0 20px 28px rgba(15, 47, 89, 0.22);
}

.showcase-slide.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.showcase-slide.is-web { background: linear-gradient(145deg, #0f4b88, #0f62fe); }
.showcase-slide.is-netsis { background: linear-gradient(145deg, #145c5c, #0e9f6e); }
.showcase-slide.is-transfer { background: linear-gradient(145deg, #5f3f17, #9a5f17); }
.showcase-slide.is-pos { background: linear-gradient(145deg, #50358d, #2f4fbb); }

.showcase-topline {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.showcase-kicker {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    border-radius: 999px;
    padding: 6px 11px;
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.showcase-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 0.74rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.showcase-slide h3 {
    margin-top: 12px;
    font-size: clamp(1.24rem, 2.9vw, 1.85rem);
    line-height: 1.28;
    max-width: 23ch;
}

.showcase-slide p {
    margin-top: 10px;
    color: rgba(239, 248, 255, 0.94);
    max-width: 66ch;
    line-height: 1.75;
}

.showcase-points {
    margin: 12px 0 0;
    padding-left: 18px;
}

.showcase-points li {
    margin-bottom: 6px;
    color: rgba(238, 247, 255, 0.92);
    line-height: 1.6;
}

.showcase-controls {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: center;
    justify-items: center;
}

.showcase-btn {
    border: 1px solid #cad9ee;
    border-radius: 9px;
    background: #f6f9ff;
    color: #1d476f;
    font-weight: 800;
    font-size: 0.84rem;
    padding: 8px 12px;
    cursor: pointer;
}

.showcase-btn:hover { background: #f3f8ff; }

.showcase-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.showcase-dot {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 999px;
    background: #b4c8e7;
    cursor: pointer;
    padding: 0;
}

.showcase-dot.active { background: #0f62fe; }

.showcase-progress {
    margin-top: 11px;
    height: 4px;
    border-radius: 999px;
    background: #d7e4f8;
    overflow: hidden;
}

.showcase-progress span {
    display: block;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #0f62fe, #36a2ff);
}

.entry-slider-full {
    margin-top: 0;
    width: 100%;
}

.entry-slider-full .showcase-slider {
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.entry-slider-full .showcase-track {
    min-height: min(72vh, 680px);
}

.entry-slider-full .showcase-slide {
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    overflow: hidden;
    transform: scale(1.01);
}

.entry-slider-full .showcase-slide.active {
    transform: scale(1);
}

.entry-slider-full .showcase-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
    transition: transform 5s ease;
}

.entry-slider-full .showcase-slide.active .showcase-bg {
    transform: scale(1.08);
}

.entry-slider-full .showcase-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, rgba(7, 18, 34, 0.86) 0%, rgba(7, 18, 34, 0.58) 45%, rgba(7, 18, 34, 0.24) 100%),
        linear-gradient(180deg, rgba(5, 15, 30, 0.15), rgba(5, 15, 30, 0.62));
}

.entry-slider-full .showcase-content {
    position: relative;
    z-index: 2;
    min-height: min(72vh, 680px);
    display: flex;
    align-items: center;
}

.entry-slider-full .showcase-content-box {
    width: min(620px, 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    background:
        linear-gradient(160deg, rgba(10, 30, 56, 0.72), rgba(10, 30, 56, 0.38));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 24px 26px;
    box-shadow: 0 14px 30px rgba(4, 14, 27, 0.35);
    position: relative;
    overflow: hidden;
}

.entry-slider-full .showcase-content-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.entry-slider-full .showcase-content-box::after {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(96, 200, 255, 0.35));
    pointer-events: none;
}

.entry-slider-full .showcase-slide h3 {
    font-size: clamp(1.45rem, 3.9vw, 2.8rem);
    margin-top: 14px;
    line-height: 1.22;
    max-width: 16ch;
    text-wrap: balance;
}

.entry-slider-full .showcase-slide p {
    margin-top: 12px;
    font-size: clamp(0.95rem, 1.55vw, 1.06rem);
    line-height: 1.72;
    max-width: 52ch;
    color: rgba(239, 248, 255, 0.96);
}

.entry-slider-full .showcase-controls {
    margin-top: -64px;
    position: relative;
    z-index: 3;
}

.entry-slider-full .showcase-progress {
    position: relative;
    z-index: 3;
    margin-top: 10px;
    margin-bottom: 14px;
    background: rgba(199, 216, 241, 0.62);
}

.entry-slider-full .showcase-btn {
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(8, 24, 46, 0.56);
    color: #fff;
}

.entry-slider-full .showcase-btn:hover {
    background: rgba(15, 37, 66, 0.76);
}

.entry-slider-full .showcase-dot {
    background: rgba(255, 255, 255, 0.45);
}

.entry-slider-full .showcase-dot.active {
    background: #fff;
}

.entry-slider-full .showcase-kicker {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.32);
}

.entry-slider-full .showcase-chip {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
}

.entry-slider-full .showcase-slide.is-web .showcase-bg {
    background-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1800&q=80');
}

.entry-slider-full .showcase-slide.is-netsis .showcase-bg {
    background-image: url('https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1800&q=80');
}

.entry-slider-full .showcase-slide.is-transfer .showcase-bg {
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1800&q=80');
}

.entry-slider-full .showcase-slide.is-pos .showcase-bg {
    background-image: url('https://images.unsplash.com/photo-1461749280684-dccba630e2f6?auto=format&fit=crop&w=1800&q=80');
}

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

.flow-grid article,
.stack-grid > div {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: linear-gradient(180deg, #f8fbff, #f1f7ff);
    padding: 14px;
}

.flow-media {
    height: 122px;
    border-radius: 9px;
    border: 1px solid #cdddF3;
    margin-bottom: 12px;
    background-size: cover;
    background-position: center;
}

.flow-media-1 {
    background-image: linear-gradient(120deg, rgba(16, 51, 95, 0.45), rgba(16, 51, 95, 0.18)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=900&q=80');
}

.flow-media-2 {
    background-image: linear-gradient(120deg, rgba(11, 79, 71, 0.45), rgba(11, 79, 71, 0.18)), url('https://images.unsplash.com/photo-1531482615713-2afd69097998?auto=format&fit=crop&w=900&q=80');
}

.flow-media-3 {
    background-image: linear-gradient(120deg, rgba(44, 35, 102, 0.45), rgba(44, 35, 102, 0.18)), url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=900&q=80');
}

.flow-grid b {
    color: var(--brand);
    font-size: 1.1rem;
}

.flow-grid h3 {
    margin-top: 8px;
    font-size: 1rem;
}

.flow-grid p,
.stack-grid li {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.6;
}

.stack-grid ul {
    margin: 8px 0 0;
    padding-left: 16px;
}

.tech-gallery {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.tech-gallery figure {
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.tech-gallery img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}

.tech-gallery figcaption {
    padding: 10px 12px;
    font-size: 0.83rem;
    font-weight: 700;
    color: #2f4f73;
}

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

.faq-item {
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
}

.faq-item button {
    width: 100%;
    text-align: left;
    border: 0;
    background: transparent;
    padding: 14px;
    font-weight: 800;
    font-size: 0.95rem;
    color: #16365a;
    cursor: pointer;
}

.faq-item p {
    margin: 0;
    padding: 0 14px 14px;
    color: var(--muted);
    line-height: 1.65;
    display: none;
}

.faq-item.active p { display: block; }

.contact-band {
    margin: 20px auto 0;
    border: 1px solid #b7d0f5;
    border-radius: 14px;
    padding: 22px;
    background: linear-gradient(135deg, #0b6bcb, #0a559f 58%, #0d7f8d);
    color: #fff;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 14px;
}

.contact-band h2 {
    margin-top: 10px;
    font-size: clamp(1.2rem, 3.3vw, 1.9rem);
    line-height: 1.35;
}

.contact-band p {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.93);
    line-height: 1.7;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.contact-actions .btn {
    border-color: rgba(255, 255, 255, 0.45);
}

.contact-actions .btn-primary {
    background: #ffffff;
    color: #1b2d4b;
    border-color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 10px 18px rgba(11, 33, 63, 0.2);
}

.contact-actions .btn-primary:hover {
    background: #f2f7ff;
    color: #13243f;
}

.contact-actions .btn-ghost {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.footer {
    padding: 16px 0 28px;
    color: #5c6d82;
    font-size: 0.88rem;
}

.admin-fab {
    position: fixed;
    right: 14px;
    bottom: 14px;
    z-index: 70;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 10px 14px;
    background: linear-gradient(135deg, #0f243f, #08182d);
    color: #fff;
    font-size: 0.84rem;
    font-weight: 800;
    box-shadow: 0 12px 20px rgba(16, 24, 40, 0.35);
}

.service-card,
.flow-grid article,
.stack-grid > div,
.tech-gallery figure,
.faq-item {
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover,
.flow-grid article:hover,
.stack-grid > div:hover,
.tech-gallery figure:hover,
.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(11, 41, 77, 0.1);
    border-color: #c2d6f1;
}

.admin-fab:hover {
    color: #fff;
    transform: translateY(-1px);
}

.theme-switcher {
    position: fixed;
    left: 14px;
    bottom: 14px;
    z-index: 70;
    display: flex;
    gap: 6px;
    padding: 8px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #d5e1f2;
    box-shadow: 0 10px 20px rgba(15, 31, 51, 0.12);
}

.theme-switcher button {
    border: 1px solid #cad8ec;
    border-radius: 9px;
    background: #fff;
    color: #1b3c61;
    font-size: 0.76rem;
    font-weight: 800;
    padding: 7px 9px;
    cursor: pointer;
}

.theme-switcher button.active {
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    border-color: transparent;
    color: #fff;
}

body.theme-darktech {
    --surface: #101b2b;
    --surface-soft: #142338;
    --ink: #e9f2ff;
    --muted: #aec0d9;
    --line: #23364e;
    --brand: #14b8a6;
    --brand-dark: #0f7f8f;
    --shadow: 0 18px 34px rgba(2, 8, 18, 0.35);
    background:
        radial-gradient(circle at 10% 0%, rgba(20, 184, 166, 0.18), transparent 30%),
        radial-gradient(circle at 90% 6%, rgba(37, 99, 235, 0.18), transparent 30%),
        linear-gradient(180deg, #08111f 0%, #0b1526 100%);
}

body.theme-darktech .site-header {
    background: rgba(9, 17, 31, 0.88);
    border-bottom-color: #223349;
}

body.theme-darktech .nav-links > a { color: #d6e8ff; }
body.theme-darktech .nav-links > a:hover { background: #15263b; }
body.theme-darktech .nav-mega-trigger { color: #d6e8ff; }
body.theme-darktech .nav-mega-trigger:hover,
body.theme-darktech .nav-mega.open .nav-mega-trigger { background: #15263b; }
body.theme-darktech .mega-panel {
    background: rgba(12, 23, 38, 0.96);
    border-color: #27405f;
}
body.theme-darktech .mega-item {
    background: #13253a;
    border-color: #2a4566;
}
body.theme-darktech .mega-item b { color: #e6f1ff; }
body.theme-darktech .mega-item span { color: #abc2df; }
body.theme-darktech .mega-item:hover { background: #17304a; border-color: #376090; }
body.theme-darktech .brand small { color: #9fb5d3; }
body.theme-darktech .section,
body.theme-darktech .hero,
body.theme-darktech .ad-zone,
body.theme-darktech .service-card,
body.theme-darktech .faq-item,
body.theme-darktech .stack-grid > div,
body.theme-darktech .flow-grid article,
body.theme-darktech .tech-gallery figure {
    background: #0f1b2d;
    border-color: #22364f;
}
body.theme-darktech .section-head h2,
body.theme-darktech h1,
body.theme-darktech h2,
body.theme-darktech h3 { color: #ecf4ff; }
body.theme-darktech .service-card p,
body.theme-darktech .lead,
body.theme-darktech .flow-grid p,
body.theme-darktech .stack-grid li,
body.theme-darktech .faq-item p,
body.theme-darktech .footer { color: #a8bdd8; }
body.theme-darktech .hero-metrics > div { background: #15263b; border-color: #294363; }
body.theme-darktech .hero-metrics b { color: #74e2d6; }
body.theme-darktech .contact-band {
    background: linear-gradient(135deg, #0f7f8f, #12508a 58%, #173761);
    border-color: #2f5f8a;
}
body.theme-darktech .ad-placeholder { background: #13253a; border-color: #27415f; color: #acc3de; }
body.theme-darktech .theme-switcher { background: rgba(10, 19, 34, 0.92); border-color: #27405f; }
body.theme-darktech .theme-switcher button { background: #13253a; color: #cfe0f8; border-color: #2a4668; }

body.theme-startup {
    --brand: #ef4444;
    --brand-dark: #f97316;
    --line: #f0d8db;
    --muted: #6d5f70;
    --shadow: 0 14px 28px rgba(110, 25, 60, 0.12);
    background:
        radial-gradient(circle at 8% 0%, rgba(239, 68, 68, 0.12), transparent 30%),
        radial-gradient(circle at 92% 8%, rgba(249, 115, 22, 0.14), transparent 32%),
        linear-gradient(180deg, #fff9f9 0%, #fff4ef 100%);
}

body.theme-startup .brand-dot {
    background: linear-gradient(135deg, #ef4444, #f97316);
}

body.theme-startup .site-header { border-bottom-color: #f3d6cf; }
body.theme-startup .nav-mega-trigger:hover,
body.theme-startup .nav-mega.open .nav-mega-trigger { background: #fff1ec; }
body.theme-startup .mega-panel { border-color: #f1d2c8; }
body.theme-startup .mega-item { border-color: #f1d8d1; }
body.theme-startup .mega-item:hover { background: #fff4ef; border-color: #efc8bc; }
body.theme-startup .section,
body.theme-startup .hero,
body.theme-startup .ad-zone {
    border-color: #f2d8d7;
}
body.theme-startup .service-card span {
    background: #ffe9e4;
    color: #8b3f2d;
}
body.theme-startup .contact-band {
    background: linear-gradient(135deg, #ef4444, #f97316 62%, #fb7185);
    border-color: #f8b4a8;
}
body.theme-startup .showcase-progress span {
    background: linear-gradient(90deg, #ef4444, #f97316);
}
body.theme-startup .theme-switcher {
    border-color: #f3d4cb;
    background: rgba(255, 249, 247, 0.95);
}
body.theme-startup .theme-switcher button {
    border-color: #f3cdc2;
    color: #7f3a2d;
}

@media (max-width: 980px) {
    .hero { grid-template-columns: 1fr; padding: 22px; }
    .hero-metrics { grid-template-columns: 1fr; }
    .showcase-track { min-height: 312px; }
    .entry-slider-full .showcase-track,
    .entry-slider-full .showcase-content { min-height: 62vh; }
    .service-grid,
    .integration-grid,
    .detail-grid,
    .detail-metrics,
    .flow-grid,
    .tech-gallery,
    .stack-grid,
    .contact-band { grid-template-columns: 1fr; }
    .detail-hero { grid-template-columns: 1fr; }
    .integration-stats { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .integration-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 720px) {
    .nav-row { flex-direction: column; align-items: flex-start; padding: 10px 0; }
    .brand-logo-lg { height: 36px; max-width: 190px; }
    .nav-links { width: 100%; }
    .nav-links > a,
    .nav-mega-trigger {
        width: 100%;
        justify-content: space-between;
        padding: 7px 10px;
    }
    .mega-panel {
        position: static;
        width: 100%;
        margin-top: 6px;
        grid-template-columns: 1fr;
        box-shadow: none;
        border-radius: 10px;
    }
    .section,
    .contact-band { padding: 16px; border-radius: 12px; }
    .entry-slider { padding: 14px; }
    .showcase-controls { grid-template-columns: 1fr; }
    .showcase-btn { width: 100%; }
    .showcase-track { min-height: 368px; }
    .entry-slider-full .showcase-track,
    .entry-slider-full .showcase-content { min-height: 58vh; }
    .entry-slider-full .showcase-content-box { padding: 16px 16px 16px 18px; border-radius: 18px; }
    .entry-slider-full .showcase-controls { margin-top: -56px; }
    .admin-fab { right: 10px; bottom: 10px; padding: 9px 12px; font-size: 0.8rem; }
    .theme-switcher {
        left: 10px;
        right: 10px;
        bottom: 10px;
        justify-content: space-between;
    }
    .theme-switcher button {
        flex: 1;
        font-size: 0.7rem;
        padding: 7px 6px;
    }
}
