:root {
    --bg: #0c0d0e;
    --surface: rgba(24, 24, 23, 0.76);
    --text: #f5f1ea;
    --muted: #aaa6a0;
    --line: rgba(245, 241, 234, 0.14);
    --primary: #d85c57;
    --secondary: #c7a15b;
    --accent: #8fbf9f;
    --ink: #11110f;
    --sicgad-bg: #071114;
    --sicgad-mint: #57f1d3;
    --sicgad-cyan: #55b7ff;
    --sicgad-muted: #9eb4b7;
    --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: "Outfit", system-ui, sans-serif;
    --font-sicgad: "Outfit", system-ui, sans-serif;
    --text-xs: 0.76rem;
    --text-sm: 0.88rem;
    --text-base: 0.98rem;
    --text-md: 1.04rem;
    --text-lg: 1.14rem;
    --heading-tight: 1.06;
    --heading-normal: 1.14;
    --copy-line: 1.72;
}

/* Custom typography classes */
.text-gradient-primary {
    background: linear-gradient(135deg, var(--text) 30%, var(--secondary) 70%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-glow {
    text-shadow: 0 0 24px rgba(245, 241, 234, 0.16);
}
.eyebrow-accent {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-size: var(--text-xs);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}
.eyebrow-accent::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary);
    box-shadow: 0 0 8px var(--secondary);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    position: relative;
    isolation: isolate;
    min-height: 100vh;
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: var(--copy-line);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
body::before {
    content: "";
    position: fixed;
    z-index: -1;
    inset: -6vh -6vw;
    background:
        linear-gradient(180deg, rgba(12, 13, 14, 0.48), rgba(12, 13, 14, 0.72)),
        radial-gradient(circle at 22% 16%, rgba(59, 130, 246, 0.08), transparent 32%),
        url("../img/background1.cc09b9b099bb.webp") center / cover no-repeat;
    opacity: 0.74;
    filter: saturate(1.02) contrast(1.02) blur(10px);
    transform: translate3d(0, 0, 0) scale(1.04);
    transform-origin: center;
    animation: page-background-drift 28s ease-in-out infinite alternate;
    pointer-events: none;
    will-change: transform;
}
main,
.site-footer {
    position: relative;
    z-index: 1;
}
a { color: inherit; text-decoration: none; }
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.site-header {
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 6px clamp(22px, 5vw, 64px);
    background: linear-gradient(180deg, rgba(16, 28, 54, 0.68), rgba(10, 18, 36, 0.48));
    border-bottom: 1px solid rgba(59, 130, 246, 0.22);
    backdrop-filter: blur(24px) saturate(1.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.brand img {
    display: block;
    width: 178px;
    height: auto;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.12)) drop-shadow(0 0 15px rgba(85, 183, 255, 0.35)) brightness(1.08);
    transition: filter 0.35s ease;
}
.brand img:hover {
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.22)) drop-shadow(0 0 22px rgba(85, 183, 255, 0.55)) brightness(1.20);
}
.nav-toggle {
    display: none;
}
.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
    min-width: 0;
}
.main-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 8px;
    color: rgba(237, 248, 247, 0.78);
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    transition: color 180ms ease, background 180ms ease;
}
.main-nav a:hover { color: var(--text); background: rgba(255, 255, 255, 0.07); }
.main-nav a::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 5px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    opacity: 0;
    transform: scaleX(0.35);
    transform-origin: center;
    transition: opacity 180ms ease, transform 180ms ease;
}
.main-nav a.is-active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.075);
}
.main-nav a.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}
.nav-link-label {
    position: relative;
    z-index: 1;
}
.main-nav a.is-upcoming {
    color: rgba(237, 248, 247, 0.68);
}
.main-nav a.is-upcoming:hover,
.main-nav a.is-upcoming.is-active {
    color: var(--text);
}
.main-nav a.nav-action {
    color: #f4b356;
    background: transparent;
    border: 0;
    font-weight: 900;
    transition: color 180ms ease, background 180ms ease;
}
.main-nav a.nav-action .nav-link-label {
    color: inherit;
}
.main-nav a.nav-action::before {
    content: none;
}
.main-nav a.nav-action:hover,
.main-nav a.nav-action.is-active {
    color: #f4b356;
    background: transparent;
}

.hero {
    position: relative;
    min-height: 37vh;
    overflow: hidden;
    padding: 58px 0 0;
    display: grid;
    align-items: center;
}
#luminax-hero {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.82;
    filter: blur(0.25px);
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 32%, rgba(216, 92, 87, 0.12), transparent 24%),
        radial-gradient(circle at 78% 38%, rgba(216, 92, 87, 0.18), transparent 28%),
        radial-gradient(circle at 52% 72%, rgba(143, 191, 159, 0.12), transparent 24%),
        linear-gradient(180deg, rgba(12, 13, 14, 0.72) 0%, rgba(12, 13, 14, 0.18) 42%, rgba(12, 13, 14, 0.42) 100%);
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    width: min(1120px, calc(100% - 72px));
    margin: 0 auto;
    padding: 34px 0 40px;
    text-align: center;
}
.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(360px, 500px);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
    width: min(1180px, 100%);
    margin: 0 auto;
}
.eyebrow {
    margin: 0 0 14px;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 600;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: balance;
}

p {
    max-width: 72ch;
    font-size: var(--text-base);
    line-height: var(--copy-line);
    overflow-wrap: break-word;
}
.hero h1 {
    max-width: 780px;
    margin: 0 auto;
    font-size: clamp(1.61rem, 2.66vw, 3.26rem);
    line-height: 1.02;
    letter-spacing: 0;
}
.hero-lead {
    max-width: 850px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.5vw, 1.12rem);
    line-height: 1.58;
}
.hero-content .hero-lead {
    margin-left: auto;
    margin-right: auto;
    color: rgba(245, 241, 234, 0.84);
}
.hero-future {
    max-width: 780px;
    margin: 14px auto 0;
    color: rgba(245, 241, 234, 0.64);
    font-size: clamp(0.78rem, 0.85vw, 0.9rem);
    font-weight: 400;
    line-height: 1.58;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 17px;
    border-radius: 8px;
    border: 1px solid var(--line);
    font-size: 0.93rem;
    font-weight: 800;
}
.button.primary {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #8fbf9f, #10b981);
    color: #0c0d0e;
    border-color: transparent;
    box-shadow: 0 14px 34px rgba(16, 185, 129, 0.2);
}
.button.primary::before,
.footer-action::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 48%;
    background: linear-gradient(105deg, transparent 18%, rgba(255, 255, 255, 0.58) 50%, transparent 82%);
    transform: translateX(-150%) skewX(-18deg);
    animation: cta-shine 3.8s ease-in-out infinite;
}
.button.primary:hover,
.footer-action:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 42px rgba(16, 185, 129, 0.3);
}
.button.primary,
.footer-action {
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}
.button.primary span,
.footer-action span {
    position: relative;
    z-index: 1;
}
.button.ghost { color: var(--text); background: rgba(255, 255, 255, 0.05); }

.star-particle {
    position: absolute;
    pointer-events: none;
    line-height: 1;
    opacity: 0;
    z-index: 99999;
    animation: star-float 1.2s ease-out forwards;
}
@keyframes star-float {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0.4) rotate(0deg);
    }
    15% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(var(--x), var(--y)) scale(1.1) rotate(var(--r));
    }
}

.hero-showcase {
    position: relative;
    min-height: 460px;
}
.presentation-frame, .case-card {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(31, 31, 30, 0.88), rgba(15, 15, 14, 0.74));
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(22px);
}
.presentation-frame {
    position: relative;
    width: min(500px, 100%);
    min-height: 390px;
    margin-left: auto;
    overflow: hidden;
    border-radius: 8px;
    padding: 18px;
}
.presentation-frame::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: conic-gradient(from 90deg, transparent, rgba(216, 92, 87, 0.15), transparent 28%);
    animation: frame-sweep 9s linear infinite;
}
.presentation-frame > * { position: relative; z-index: 1; }
.panel-top { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.panel-top span { width: 9px; height: 9px; border-radius: 50%; background: var(--muted); }
.panel-top span:first-child { background: var(--primary); }
.panel-top strong { margin-left: auto; font-size: 0.8rem; color: var(--muted); }
.presentation-stage {
    position: relative;
    min-height: 250px;
}
.presentation-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: start;
    gap: 14px;
    opacity: 0;
    transform: translateY(18px) scale(0.98);
    animation: slide-sequence 12s ease-in-out infinite;
}
.slide-process { animation-delay: 4s; }
.slide-solution { animation-delay: 8s; }
.slide-kicker {
    margin: 0;
    color: var(--secondary);
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
}
.presentation-slide h3 {
    margin: 0;
    max-width: 360px;
    font-size: 1.48rem;
    line-height: 1.12;
}
.source-list {
    display: grid;
    gap: 10px;
}
.source-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 58px;
    padding: 13px 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.07);
}
.source-list span {
    color: var(--secondary);
    font-size: 0.78rem;
    font-weight: 800;
}
.source-list strong {
    font-size: 0.9rem;
    text-align: right;
}
.process-core {
    display: grid;
    place-content: center;
    width: 210px;
    height: 210px;
    margin: 10px auto 0;
    text-align: center;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 92, 87, 0.22), rgba(18, 17, 15, 0.96) 68%);
    border: 1px solid rgba(216, 92, 87, 0.34);
    box-shadow: 0 0 60px rgba(216, 92, 87, 0.18);
    animation: core-pulse 2.4s ease-in-out infinite;
}
.process-core span {
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 800;
}
.process-core strong {
    display: block;
    max-width: 150px;
    margin-top: 8px;
    font-size: 0.92rem;
    line-height: 1.28;
}
.process-line {
    width: 82%;
    height: 3px;
    margin: 0 auto;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
    animation: process-line 1.8s ease-in-out infinite;
}
.screen-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.module-card {
    min-height: 112px;
    padding: 13px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.module-card.active {
    background: rgba(216, 92, 87, 0.12);
    border-color: rgba(216, 92, 87, 0.32);
}
.module-card span {
    color: var(--secondary);
    font-size: 0.7rem;
    font-weight: 800;
}
.module-card strong {
    display: block;
    margin-top: 8px;
    font-size: 0.92rem;
}
.module-card small {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.74rem;
    line-height: 1.35;
}
.dashboard-strip {
    display: grid;
    gap: 9px;
    margin-top: 16px;
    padding: 14px;
    border-radius: 8px;
    background: rgba(2, 9, 11, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.07);
    opacity: 0;
    animation: dashboard-sequence 12s ease-in-out infinite;
}
.dashboard-strip div {
    height: 8px;
    width: var(--bar);
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    animation: bar-grow 3.8s ease-in-out infinite;
}
.dashboard-strip div:nth-child(2) { animation-delay: -0.7s; }
.dashboard-strip div:nth-child(3) { animation-delay: -1.4s; }
.dashboard-strip div:nth-child(4) { animation-delay: -2.1s; }
.presentation-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 18px;
}
.presentation-timeline span {
    height: 3px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(226, 232, 255, 0.14);
}
.presentation-timeline span::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    animation: timeline-step 12s linear infinite;
}
.presentation-timeline span:nth-child(2)::before { animation-delay: 4s; }
.presentation-timeline span:nth-child(3)::before { animation-delay: 8s; }

.section { padding: 68px clamp(18px, 5vw, 72px); }
.section-heading,
.split-copy,
.operations-bridge,
.operations-map,
.service-grid,
.problem-map,
.case-grid,
.client-showcase,
.process-steps,
.request-section,
.maturity-grid,
.operating-rule,
.cta-section {
    width: min(1180px, 100%);
    margin-left: auto;
    margin-right: auto;
}
.section-heading { max-width: 720px; margin-bottom: 32px; margin-left: auto; margin-right: auto; text-align: center; }
.section h2 { margin: 0; font-size: clamp(1.72rem, 2.55vw, 2.72rem); line-height: 1.12; }
.intro-section, .operations-section, .problem-section, .line-content {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
}
.operations-section {
    padding-top: 64px;
    padding-bottom: 58px;
}
.operations-section .section-heading {
    max-width: 790px;
    margin-bottom: 22px;
}
.operations-section .eyebrow {
    border-color: rgba(34, 197, 94, 0.28) !important;
    color: #4ade80 !important;
    background: rgba(34, 197, 94, 0.08) !important;
    box-shadow: 0 12px 34px rgba(34, 197, 94, 0.08) !important;
}
.operations-bridge {
    max-width: 1040px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-bottom: 34px;
}
.operations-bridge p {
    margin: 0;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.66;
}
.operations-map {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 34px;
}
.operations-map article {
    position: relative;
    min-height: 126px;
    padding: 2px 0 0 18px;
}
.operations-map article::before {
    content: "";
    position: absolute;
    top: 4px;
    bottom: 6px;
    left: 0;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--secondary), rgba(74, 222, 128, 0.24));
}
.operations-map span {
    display: block;
    margin-bottom: 10px;
    color: var(--secondary);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}
.operations-map strong {
    display: block;
    margin-bottom: 9px;
    color: var(--text);
    font-size: 1.02rem;
    line-height: 1.25;
}
.operations-map p {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.55;
}
.split-copy {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 1040px;
}
.split-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.72;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.service-grid article,
.problem-map div,
.maturity-grid div {
    min-height: 190px;
    padding: 22px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.032);
}
.service-grid article span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--secondary);
    font-size: 0.78rem;
    font-weight: 800;
}
.service-grid h3 {
    margin: 0 0 12px;
    font-size: 1.08rem;
}
.service-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.62;
}
.problem-map {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.problem-map div,
.maturity-grid div {
    min-height: 118px;
}
.problem-map strong,
.maturity-grid strong {
    display: block;
    margin-bottom: 10px;
    color: var(--text);
    font-size: 1rem;
}
.problem-map span,
.maturity-grid span {
    color: var(--muted);
    line-height: 1.6;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.process-steps div {
    min-height: 210px;
    padding: 22px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
}
.process-steps span {
    display: inline-flex;
    margin-bottom: 22px;
    color: var(--secondary);
    font-size: 0.78rem;
    font-weight: 800;
}
.process-steps strong {
    display: block;
    margin-bottom: 12px;
    font-size: 1.05rem;
}
.process-steps p {
    margin: 0;
    color: var(--muted);
    line-height: 1.62;
}
.request-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.request-section p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}
.case-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.case-card { border-radius: 8px; padding: 28px; }
.case-tag { margin: 0 0 14px; color: var(--secondary); font-weight: 800; }
.case-card h3 { margin: 0 0 12px; font-size: 1.28rem; }
.case-card p, .product-copy p, .cta-section p, .placeholder-page p { color: var(--muted); line-height: 1.65; }
.case-card ul { margin: 22px 0 0; padding-left: 18px; color: #cfe0df; line-height: 1.75; }
.clients-section {
    position: relative;
    overflow: hidden;
    scroll-margin-top: 96px;
    padding-top: 50px;
    padding-bottom: 50px;
    background: #0c0d0e;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.clients-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(12, 13, 14, 0.76), rgba(12, 13, 14, 0.32) 46%, rgba(12, 13, 14, 0.76)),
        linear-gradient(180deg, rgba(12, 13, 14, 0.58), rgba(12, 13, 14, 0.22) 46%, rgba(12, 13, 14, 0.68)),
        url("../img/luminax_experience.b47cd666aea4.webp") center / cover no-repeat;
    filter: saturate(1.02);
    transform: scale(1.02);
    pointer-events: none;
}
.clients-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 241, 234, 0.12), transparent);
    pointer-events: none;
}
.clients-section::after {
    top: 58%;
}
.clients-section .section-heading {
    position: relative;
    z-index: 1;
    margin-bottom: 18px;
}
.clients-section .section-heading h2 {
    font-size: clamp(1.55rem, 2.05vw, 2.18rem);
    line-height: 1.14;
}
.clients-section .section-heading p:not(.eyebrow) {
    max-width: 720px;
    margin: 12px auto 0;
    color: var(--muted);
    line-height: 1.65;
}
.clients-section .eyebrow {
    border-color: rgba(59, 130, 246, 0.32) !important;
    color: #60a5fa !important;
    background: rgba(59, 130, 246, 0.09) !important;
    box-shadow: 0 12px 34px rgba(59, 130, 246, 0.12) !important;
}
.client-carousel {
    position: relative;
    z-index: 1;
    width: min(1180px, 100%);
    margin: 10px auto 0;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: clamp(12px, 2.4vw, 22px);
    align-items: center;
}
.client-carousel-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(190px, 228px);
    gap: clamp(20px, 3vw, 42px);
    overflow-x: hidden;
    overscroll-behavior-inline: contain;
    scroll-snap-type: none;
    scrollbar-width: none;
    padding: 20px 2px 18px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.client-carousel-track::-webkit-scrollbar {
    display: none;
}
.client-logo-card {
    --carousel-hover-y: 0px;
    position: relative;
    min-height: 126px;
    display: grid;
    align-content: center;
    justify-items: center;
    padding: 16px 18px;
    border-radius: 8px;
    border: 1px solid rgba(245, 241, 234, 0.06);
    background: rgba(255, 255, 255, 0.018);
    opacity: 0.78;
    overflow: hidden;
    isolation: isolate;
    animation: client-logo-breathe 5.6s ease-in-out infinite;
    scroll-snap-align: center;
    -webkit-user-drag: none;
    user-select: none;
    transition:
        transform 240ms ease,
        opacity 240ms ease,
        filter 240ms ease,
        border-color 240ms ease,
        background 240ms ease,
        box-shadow 240ms ease;
}
.client-logo-card::before {
    content: "";
    position: absolute;
    inset: 20% 5%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.24), transparent 68%);
    opacity: 0;
    filter: blur(18px);
    transition: opacity 220ms ease;
}
.client-logo-card::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 60%;
    background: linear-gradient(105deg, transparent 15%, rgba(255, 255, 255, 0.22) 50%, transparent 85%);
    transform: translateX(-160%) skewX(-20deg);
    pointer-events: none;
    z-index: 3;
    animation: client-card-shine 5s ease-in-out infinite;
}
@keyframes client-card-shine {
    0% { transform: translateX(-160%) skewX(-20deg); }
    25%, 100% { transform: translateX(200%) skewX(-20deg); }
}
.client-logo-card > strong {
    position: absolute;
    top: 0;
    right: 0;
    padding: 5px 8px;
    border-radius: 8px;
    color: var(--ink);
    background: var(--secondary);
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
}
.client-logo-card:hover,
.client-logo-card:focus-visible {
    --carousel-hover-y: -6px;
    opacity: 1;
    border-color: rgba(59, 130, 246, 0.32);
    background: rgba(255, 255, 255, 0.045);
    box-shadow:
        0 18px 46px rgba(0, 0, 0, 0.28),
        0 0 34px rgba(59, 130, 246, 0.14);
    filter: saturate(1.08);
    outline: none;
}
.client-carousel.is-static .client-logo-card:hover,
.client-carousel.is-static .client-logo-card:focus-visible {
    transform: translateY(-6px) scale(1.045);
}
.client-logo-card:hover::before,
.client-logo-card:focus-visible::before {
    opacity: 1;
}
.client-logo-card:hover::after,
.client-logo-card:focus-visible::after {
    animation: client-card-shine-hover 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes client-card-shine-hover {
    0% { transform: translateX(-160%) skewX(-20deg); }
    100% { transform: translateX(200%) skewX(-20deg); }
}
.client-logo-card img {
    position: relative;
    z-index: 2;
    max-width: 168px;
    max-height: 78px;
    object-fit: contain;
    transform: translateY(0) scale(1);
    filter: grayscale(0.15) contrast(0.96);
    -webkit-user-drag: none;
    user-select: none;
    transition: transform 240ms ease, filter 240ms ease;
}
.clients-section:not(.products-section) .client-logo-card img {
    width: min(212px, 92%);
    height: 92px;
    max-width: 212px;
    max-height: 92px;
    object-fit: contain;
    object-position: center;
}
.client-logo-card:hover img,
.client-logo-card:focus-visible img {
    transform: translateY(-2px) scale(1.07);
    filter: grayscale(0) contrast(1.04) brightness(1.08);
}
.client-logo-card span {
    color: var(--text);
    font-size: 1rem;
    font-weight: 900;
    text-align: center;
}
.client-logo-card small {
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.35;
    text-align: center;
}
.client-logo-card em {
    color: var(--secondary);
    font-size: 0.8rem;
    font-style: normal;
    font-weight: 900;
}
.carousel-control {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(245, 241, 234, 0.16);
    border-radius: 8px;
    color: rgba(245, 241, 234, 0.76);
    background: rgba(255, 255, 255, 0.025);
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}
.carousel-control:hover {
    color: var(--text);
    border-color: rgba(245, 241, 234, 0.28);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-1px);
}
.client-carousel-hint {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    color: rgba(245, 241, 234, 0.54);
    font-size: 0.86rem;
    font-weight: 700;
    text-align: center;
}
.client-empty-state {
    width: min(760px, 100%);
    margin: 0 auto;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
    text-align: center;
}
.client-empty-state strong {
    color: var(--text);
    font-size: 1.1rem;
}
.client-empty-state p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.65;
}
.client-showcase {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 18px;
    align-items: stretch;
}
.client-case {
    display: grid;
    gap: 22px;
    min-height: 380px;
    padding: 28px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(31, 31, 30, 0.9), rgba(17, 17, 16, 0.78));
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}
.featured-case {
    background:
        linear-gradient(135deg, rgba(216, 92, 87, 0.13), transparent 48%),
        linear-gradient(180deg, rgba(31, 31, 30, 0.92), rgba(17, 17, 16, 0.78));
}
.client-case-head {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}
.client-logo-mark {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: var(--ink);
    background: var(--accent);
    font-size: 1rem;
    font-weight: 800;
}
.client-case h3 {
    margin: 0;
    font-size: clamp(1.28rem, 2vw, 2rem);
    line-height: 1.12;
}
.case-story {
    display: grid;
    gap: 10px;
}
.case-story div {
    padding: 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.07);
}
.case-story span {
    display: block;
    margin-bottom: 7px;
    color: var(--secondary);
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
}
.case-story p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}
.case-result-strip {
    align-self: end;
    display: grid;
    gap: 6px;
    padding: 16px;
    border-radius: 8px;
    background: rgba(143, 191, 159, 0.08);
    border: 1px solid rgba(143, 191, 159, 0.2);
}
.case-result-strip strong {
    color: var(--accent);
    font-size: 0.78rem;
    text-transform: uppercase;
}
.case-result-strip span {
    color: var(--text);
    font-weight: 700;
    line-height: 1.35;
}

.case-detail-hero {
    min-height: 100vh;
    padding: 136px clamp(22px, 5vw, 64px) 44px;
    background:
        radial-gradient(circle at 70% 22%, rgba(216, 92, 87, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0));
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.case-detail-layout {
    width: min(1160px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(32px, 6vw, 78px);
    align-items: start;
}
.case-detail-identity {
    position: sticky;
    top: 136px;
    display: grid;
    justify-items: start;
    align-content: start;
    padding-top: 72px;
}
.back-link {
    display: block;
    width: min(1160px, 100%);
    margin: 0 auto 28px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 800;
}
.back-link:hover {
    color: var(--text);
}
.case-detail-logo {
    display: block;
    width: min(380px, 100%);
    max-height: 240px;
    margin-bottom: 26px;
    object-fit: contain;
    object-position: left center;
}
.case-meta-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
}
.case-meta-strip span {
    padding: 8px 10px;
    border-radius: 8px;
    color: rgba(245, 241, 234, 0.82);
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    font-weight: 800;
}
.button.primary.external-case-link {
    margin-top: 24px;
    color: #071114;
    background: linear-gradient(135deg, #8fbf9f, #57f1d3);
    box-shadow: 0 14px 34px rgba(87, 241, 211, 0.14);
}
.button.primary.external-case-link::before {
    content: none;
}
.button.primary.external-case-link:hover {
    background: linear-gradient(135deg, #9fd0ad, #65f4dd);
    box-shadow: 0 18px 42px rgba(87, 241, 211, 0.2);
}
.case-screenshot-section {
    width: min(1120px, calc(100% - 44px));
    margin: 0 auto;
    padding: 36px 0 0;
}
.case-screenshot-section img {
    display: block;
    width: 100%;
    max-height: 560px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--line);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}
.case-detail-stack {
    display: grid;
    gap: 12px;
    max-height: clamp(380px, 56vh, 560px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 32px 10px;
    scrollbar-width: thin;
    scrollbar-color: rgba(245, 241, 234, 0.22) transparent;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 34px, #000 calc(100% - 34px), transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0, #000 34px, #000 calc(100% - 34px), transparent 100%);
}
.case-detail-stack::-webkit-scrollbar {
    width: 8px;
}
.case-detail-stack::-webkit-scrollbar-track {
    background: transparent;
}
.case-detail-stack::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(245, 241, 234, 0.2);
}
.case-detail-panel {
    min-height: 0;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid rgba(245, 241, 234, 0.1);
    background: rgba(255, 255, 255, 0.018);
}
.case-detail-panel.result {
    background: rgba(143, 191, 159, 0.026);
    border-color: rgba(143, 191, 159, 0.14);
}
.case-detail-panel span {
    display: block;
    margin-bottom: 12px;
    color: var(--secondary);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}
.case-detail-panel p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.72;
}
.case-testimonial {
    position: relative;
    width: min(840px, 100%);
    margin: 64px auto 24px;
    padding: 16px 0 16px 72px;
    background: transparent;
    border: none;
    box-shadow: none;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
}
.case-testimonial::before {
    content: "“";
    position: absolute;
    top: -10px;
    left: 0;
    z-index: -1;
    color: var(--secondary);
    opacity: 0.12;
    font-family: "Outfit", serif;
    font-size: 14rem;
    line-height: 1;
    font-weight: 800;
    pointer-events: none;
}
.case-testimonial span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}
.case-testimonial span::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary);
    box-shadow: 0 0 8px var(--secondary);
}
.case-testimonial p {
    margin: 0 0 16px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: clamp(0.85rem, 1.1vw, 1rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.68;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.case-testimonial-cite {
    display: block;
    color: var(--muted);
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 600;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}


.product-section {
    position: relative;
    display: grid;
    grid-template-columns: minmax(300px, 0.78fr) minmax(360px, 1.22fr);
    gap: clamp(30px, 5vw, 72px);
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(2, 7, 14, 0.84), rgba(4, 21, 29, 0.54) 46%, rgba(5, 10, 18, 0.78)),
        linear-gradient(180deg, rgba(3, 8, 16, 0.82), rgba(5, 12, 22, 0.48) 42%, rgba(2, 6, 12, 0.84)),
        url("../img/fondo.35e899850db5.webp") center / cover no-repeat,
        #071114;
    border-block: 1px solid rgba(255, 255, 255, 0.06);
}
.product-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 56% 18%, rgba(87, 241, 211, 0.13), transparent 27%),
        radial-gradient(circle at 82% 80%, rgba(255, 122, 31, 0.1), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0));
    pointer-events: none;
}
.product-section::after {
    content: "";
    position: absolute;
    z-index: 0;
    inset: -5%;
    background: url("../img/fondo.35e899850db5.webp") center / cover no-repeat;
    opacity: 0.24;
    mix-blend-mode: screen;
    filter: saturate(1.12) brightness(1.08);
    transform: translate3d(-1.4%, -1%, 0) scale(1.04);
    transform-origin: center;
    animation: sicgad-background-drift 30s ease-in-out infinite alternate;
    pointer-events: none;
    will-change: transform, filter;
}
.product-section > * {
    position: relative;
    z-index: 2;
}
.product-flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.product-flow span {
    min-height: 100px;
    display: grid;
    place-items: center;
    padding: 14px;
    border-radius: 8px;
    color: var(--text);
    font-weight: 800;
    text-align: center;
    background: linear-gradient(180deg, rgba(87, 241, 211, 0.13), rgba(85, 183, 255, 0.07));
    border: 1px solid rgba(171, 234, 226, 0.18);
}
.product-section .eyebrow {
    color: var(--sicgad-mint);
    border-color: rgba(87, 241, 211, 0.26);
    background: rgba(87, 241, 211, 0.075);
    box-shadow: 0 12px 34px rgba(87, 241, 211, 0.08);
}
.product-section .product-copy p { color: var(--sicgad-muted); }
.sicgad-copy h2 {
    margin: 0;
    color: rgba(238, 244, 255, 0.94);
    font-family: var(--font-sicgad);
    font-size: clamp(3.1rem, 7.2vw, 6.8rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 0.96;
    text-shadow:
        0 2px 0 rgba(255, 255, 255, 0.08),
        0 22px 54px rgba(0, 0, 0, 0.42);
}
.sicgad-lead {
    margin: 18px 0 0;
    max-width: 620px;
    color: rgba(214, 224, 238, 0.78);
    font-size: clamp(0.98rem, 1.14vw, 1.1rem);
    font-weight: 600;
    line-height: 1.7;
}
.sicgad-process {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
}
.sicgad-process li {
    position: relative;
    display: grid;
    align-content: start;
    gap: 9px;
    min-height: 82px;
    padding: 0 18px 0 0;
}
.sicgad-process li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 18px;
    left: 34px;
    right: 12px;
    height: 1px;
    background: rgba(87, 241, 211, 0.24);
}
.sicgad-process li:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 17px;
    left: 34px;
    right: 12px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(87, 241, 211, 0), rgba(87, 241, 211, 0.98), rgba(255, 255, 255, 0.82));
    box-shadow: 0 0 18px rgba(87, 241, 211, 0.34);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left center;
    animation: sicgad-connector-flow 11s cubic-bezier(0.34, 0.72, 0.26, 1) infinite;
}
.sicgad-process span {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--sicgad-mint);
    background: rgba(5, 19, 24, 0.78);
    border: 1px solid rgba(87, 241, 211, 0.26);
    box-shadow: 0 0 22px rgba(87, 241, 211, 0.12);
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1;
    animation: sicgad-node-pulse 11s cubic-bezier(0.34, 0.72, 0.26, 1) infinite;
}
.sicgad-process strong {
    display: block;
    color: rgba(245, 241, 234, 0.9);
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 700;
    line-height: 1.2;
    transition: color 220ms ease, text-shadow 220ms ease;
}
.sicgad-process li:nth-child(2) span,
.sicgad-process li:nth-child(2) strong { animation-delay: 2.2s; }
.sicgad-process li:nth-child(3) span,
.sicgad-process li:nth-child(3) strong { animation-delay: 4.4s; }
.sicgad-process li:nth-child(4) span,
.sicgad-process li:nth-child(4) strong { animation-delay: 6.6s; }
.sicgad-process li:nth-child(5) span { animation-delay: 8.8s; }
.sicgad-process li:nth-child(1)::before { animation-delay: 0.62s; }
.sicgad-process li:nth-child(2)::before { animation-delay: 2.82s; }
.sicgad-process li:nth-child(3)::before { animation-delay: 5.02s; }
.sicgad-process li:nth-child(4)::before { animation-delay: 7.22s; }
.sicgad-process li:nth-child(1) strong { animation: sicgad-label-glow 11s cubic-bezier(0.34, 0.72, 0.26, 1) infinite; }
.sicgad-process li:nth-child(2) strong { animation: sicgad-label-glow 11s cubic-bezier(0.34, 0.72, 0.26, 1) 2.2s infinite; }
.sicgad-process li:nth-child(3) strong { animation: sicgad-label-glow 11s cubic-bezier(0.34, 0.72, 0.26, 1) 4.4s infinite; }
.sicgad-process li:nth-child(4) strong { animation: sicgad-label-glow 11s cubic-bezier(0.34, 0.72, 0.26, 1) 6.6s infinite; }
.sicgad-process li:nth-child(5) strong { animation: sicgad-label-glow 11s cubic-bezier(0.34, 0.72, 0.26, 1) 8.8s infinite; }
.sicgad-atlas {
    position: relative;
    min-height: 520px;
    padding: 18px;
    border-radius: 8px;
    border: 1px solid rgba(171, 234, 226, 0.16);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
        rgba(2, 10, 12, 0.46);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
    overflow: hidden;
}
.sicgad-atlas::before {
    content: "";
    position: absolute;
    inset: 58px 18px 66px;
    background:
        linear-gradient(90deg, rgba(87, 241, 211, 0.075) 1px, transparent 1px),
        linear-gradient(rgba(87, 241, 211, 0.06) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: radial-gradient(circle at center, black, transparent 76%);
    pointer-events: none;
}
.sicgad-atlas-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 4px 2px 18px;
    border-bottom: 1px solid rgba(171, 234, 226, 0.12);
}
.sicgad-atlas-top span,
.sicgad-atlas-top strong {
    font-size: var(--text-xs);
    line-height: 1.18;
    text-transform: uppercase;
}
.sicgad-atlas-top span {
    color: var(--sicgad-mint);
    font-weight: 800;
}
.sicgad-atlas-top strong {
    color: rgba(245, 241, 234, 0.64);
    font-weight: 700;
}
.sicgad-map-stage {
    position: relative;
    min-height: 420px;
}
.sicgad-region {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    opacity: 0;
    transform: translateY(12px) scale(0.985);
    animation: sicgad-region-cycle 18s ease-in-out infinite;
}
.sicgad-region:nth-child(2) { animation-delay: 6s; }
.sicgad-region:nth-child(3) { animation-delay: 12s; }
.sicgad-map-frame {
    position: relative;
    width: min(96%, 650px);
    aspect-ratio: 3 / 2;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(2, 10, 12, 0.58);
    border: 1px solid rgba(171, 234, 226, 0.14);
    box-shadow:
        0 26px 80px rgba(0, 0, 0, 0.34),
        0 0 42px rgba(87, 241, 211, 0.14);
    transform: translate3d(0, 0, 0);
    animation: sicgad-map-drift 18s ease-in-out infinite;
}
.sicgad-region:nth-child(2) .sicgad-map-frame { animation-delay: 6s; }
.sicgad-region:nth-child(3) .sicgad-map-frame { animation-delay: 12s; }
.sicgad-map-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.86;
    filter: saturate(1.08) contrast(1.04) brightness(0.9);
    transform: scale(1.035);
    animation: sicgad-map-breathe 18s ease-in-out infinite;
}
.sicgad-region:nth-child(2) .sicgad-map-frame img { animation-delay: 6s; }
.sicgad-region:nth-child(3) .sicgad-map-frame img { animation-delay: 12s; }
.sicgad-map-frame::before,
.sicgad-map-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.sicgad-map-frame::before {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(87, 241, 211, 0.11) 1px, transparent 1px),
        linear-gradient(rgba(87, 241, 211, 0.09) 1px, transparent 1px),
        radial-gradient(circle at 50% 48%, transparent 0 44%, rgba(87, 241, 211, 0.1) 45%, transparent 48%);
    background-size: 36px 36px, 36px 36px, 100% 100%;
    mix-blend-mode: screen;
    opacity: 0.42;
}
.sicgad-map-frame::after {
    z-index: 2;
    background:
        linear-gradient(100deg, transparent 0 38%, rgba(87, 241, 211, 0.2) 48%, transparent 58%),
        linear-gradient(180deg, rgba(2, 10, 12, 0.08), rgba(2, 10, 12, 0.42));
    transform: translateX(-70%);
    animation: sicgad-map-scan 6s ease-in-out infinite;
}
.region-europe .sicgad-map-frame {
    box-shadow:
        0 26px 80px rgba(0, 0, 0, 0.34),
        0 0 44px rgba(85, 183, 255, 0.14);
}
.region-europe .sicgad-map-frame::before {
    background:
        linear-gradient(90deg, rgba(85, 183, 255, 0.11) 1px, transparent 1px),
        linear-gradient(rgba(85, 183, 255, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 50% 48%, transparent 0 44%, rgba(85, 183, 255, 0.1) 45%, transparent 48%);
    background-size: 36px 36px, 36px 36px, 100% 100%;
}
.region-south .sicgad-map-frame {
    box-shadow:
        0 26px 80px rgba(0, 0, 0, 0.34),
        0 0 44px rgba(143, 238, 176, 0.14);
}
.region-south .sicgad-map-frame::before {
    background:
        linear-gradient(90deg, rgba(143, 238, 176, 0.11) 1px, transparent 1px),
        linear-gradient(rgba(143, 238, 176, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 50% 48%, transparent 0 44%, rgba(143, 238, 176, 0.1) 45%, transparent 48%);
    background-size: 36px 36px, 36px 36px, 100% 100%;
}
.sicgad-region-label {
    position: absolute;
    left: clamp(14px, 4vw, 40px);
    bottom: clamp(18px, 4vw, 42px);
    display: grid;
    gap: 5px;
    padding-left: 14px;
    border-left: 2px solid rgba(87, 241, 211, 0.62);
}
.sicgad-region-label span {
    color: var(--sicgad-mint);
    font-size: var(--text-xs);
    font-weight: 800;
    line-height: 1;
}
.sicgad-region-label strong {
    color: var(--text);
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.2vw, 1.72rem);
    font-weight: 600;
    line-height: 1.12;
}
.sicgad-variable {
    position: absolute;
    z-index: 4;
    min-width: 106px;
    padding: 9px 11px;
    border-radius: 8px;
    color: rgba(238, 255, 251, 0.94);
    background: rgba(2, 10, 12, 0.78);
    border: 1px solid rgba(171, 234, 226, 0.18);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
    font-size: var(--text-xs);
    font-weight: 800;
    line-height: 1.18;
    text-align: center;
    opacity: 0;
    transform: translateY(10px) scale(0.96);
    animation: sicgad-variable-cycle 18s ease-in-out infinite;
}
.sicgad-region:nth-child(2) .sicgad-variable { animation-delay: 6s; }
.sicgad-region:nth-child(3) .sicgad-variable { animation-delay: 12s; }
.sicgad-variable::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 7px;
    border-radius: 50%;
    background: var(--sicgad-mint);
    box-shadow: 0 0 14px rgba(87, 241, 211, 0.7);
    vertical-align: 1px;
}
.variable-a { top: 23%; left: 13%; }
.variable-b { top: 32%; right: 11%; animation-delay: 0.5s; }
.variable-c { right: 15%; bottom: 29%; animation-delay: 1s; }
.variable-d { left: 18%; bottom: 23%; animation-delay: 1.5s; }
.region-europe .variable-a { top: 24%; left: 13%; }
.region-europe .variable-b { top: 30%; right: 13%; }
.region-europe .variable-c { right: 12%; bottom: 30%; }
.region-europe .variable-d { left: 10%; bottom: 25%; }
.region-south .variable-a { top: 16%; left: 37%; }
.region-south .variable-b { top: 36%; right: 24%; }
.region-south .variable-c { right: 27%; bottom: 26%; }
.region-south .variable-d { left: 34%; bottom: 22%; }
.sicgad-region:nth-child(2) .variable-b { animation-delay: 6.5s; }
.sicgad-region:nth-child(2) .variable-c { animation-delay: 7s; }
.sicgad-region:nth-child(2) .variable-d { animation-delay: 7.5s; }
.sicgad-region:nth-child(3) .variable-b { animation-delay: 12.5s; }
.sicgad-region:nth-child(3) .variable-c { animation-delay: 13s; }
.sicgad-region:nth-child(3) .variable-d { animation-delay: 13.5s; }
.sicgad-signal-row {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.sicgad-signal-row span {
    height: 3px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(171, 234, 226, 0.12);
}
.sicgad-signal-row span::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--sicgad-mint), var(--sicgad-cyan));
    transform: scaleX(0);
    transform-origin: left;
    animation: sicgad-signal-cycle 18s linear infinite;
}
.sicgad-signal-row span:nth-child(2)::before { animation-delay: 6s; }
.sicgad-signal-row span:nth-child(3)::before { animation-delay: 12s; }
.diagnostic-section {
    background:
        radial-gradient(circle at 20% 20%, rgba(216, 92, 87, 0.08), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0));
}
.diagnostic-layout {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
    gap: 28px;
    align-items: start;
}
.diagnostic-copy {
    position: sticky;
    top: 120px;
}
.diagnostic-copy h2,
.request-hero h1 {
    margin: 0;
    font-size: clamp(1.9rem, 3.4vw, 3.35rem);
    line-height: 1.08;
}
.diagnostic-copy p,
.request-hero p {
    color: var(--muted);
    line-height: 1.7;
}
.request-hero p:not(.eyebrow) {
    max-width: 100%;
}
.diagnostic-flow {
    display: grid;
    gap: 8px;
    margin-top: 24px;
}
.diagnostic-flow span {
    padding: 12px 14px;
    border-radius: 8px;
    color: var(--text);
    font-weight: 800;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
}
.diagnostic-form {
    padding: 22px;
    border-radius: 8px;
    border: 1px solid rgba(245, 241, 234, 0.05);
    background: linear-gradient(180deg, rgba(12, 13, 14, 0.35), rgba(8, 9, 10, 0.2));
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
}
.form-required-note {
    margin: 14px 0 0;
    padding: 0;
    border: none;
    background: none;
    border-radius: 0;
    color: rgba(245, 241, 234, 0.54);
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 400;
}
.form-required-note strong {
    color: #f4b356;
    font-weight: 400;
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.form-row-three-cols {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.form-row-two-cols {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.form-row-phone {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 14px;
}
.diagnostic-form label,
.choice-field {
    display: grid;
    gap: 8px;
}
.diagnostic-form label:not(.checkbox-field) > span,
.diagnostic-form .choice-field > legend {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    color: var(--sicgad-cyan);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 2px;
}
.diagnostic-form label.field-required:not(.checkbox-field) > span,
.diagnostic-form .choice-field.field-required > legend {
    background: none;
    border: none;
    color: var(--secondary);
}
.diagnostic-form .checkbox-field > span {
    color: rgba(245, 241, 234, 0.82);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 400;
    line-height: 1.4;
}
.diagnostic-form .field-required input,
.diagnostic-form .field-required select,
.diagnostic-form .field-required textarea {
    border-color: rgba(244, 179, 86, 0.3);
}
.diagnostic-form input,
.diagnostic-form select,
.diagnostic-form textarea {
    width: 100%;
    min-height: 44px;
    padding: 11px 12px;
    border-radius: 8px;
    border: 1px solid rgba(245, 241, 234, 0.14);
    color: var(--text);
    background: rgba(0, 0, 0, 0.22);
    font: inherit;
}
.diagnostic-form select {
    color: rgba(245, 241, 234, 0.9);
    background:
        linear-gradient(45deg, transparent 50%, rgba(245, 241, 234, 0.72) 50%) calc(100% - 18px) 50% / 6px 6px no-repeat,
        linear-gradient(135deg, rgba(245, 241, 234, 0.72) 50%, transparent 50%) calc(100% - 14px) 50% / 6px 6px no-repeat,
        rgba(0, 0, 0, 0.22);
    appearance: none;
}
.diagnostic-form select option {
    color: #11110f;
    background: #f5f1ea;
}
.diagnostic-form select option:checked {
    color: #11110f;
    background: #f2b84b;
}
.diagnostic-form textarea {
    resize: vertical;
}
.diagnostic-form .full {
    grid-column: 1 / -1;
}
.choice-field {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}
.choice-field legend {
    padding: 0;
}
.choice-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}
.choice-grid label {
    position: relative;
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(245, 241, 234, 0.14);
    background: rgba(0, 0, 0, 0.18);
    cursor: pointer;
    transition: border-color 180ms ease, background 180ms ease;
}
.choice-grid label:hover {
    border-color: rgba(199, 161, 91, 0.34);
    background: rgba(199, 161, 91, 0.08);
}
.choice-grid input {
    width: 17px;
    min-height: 17px;
    flex: 0 0 auto;
    accent-color: var(--secondary);
}
.choice-grid span {
    color: rgba(245, 241, 234, 0.82);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 400;
    line-height: 1.25;
}
.checkbox-field {
    grid-template-columns: auto 1fr;
    align-items: start;
}
.checkbox-field input {
    width: 18px;
    min-height: 18px;
    margin-top: 2px;
    accent-color: var(--primary);
}
.consent-checkbox {
    position: relative;
    width: fit-content;
    max-width: 100%;
    grid-template-columns: 30px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    margin-top: 4px;
    padding: 12px 14px;
    border: 1px solid rgba(244, 179, 86, 0.38);
    border-radius: 8px;
    background: rgba(244, 179, 86, 0.07);
    box-shadow: 0 0 0 0 rgba(244, 179, 86, 0.28);
    cursor: pointer;
    animation: consent-bubble-pulse 2.6s ease-in-out infinite;
}
.consent-checkbox::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: rgba(244, 179, 86, 0.18);
    transform: translateY(-50%) scale(1);
    animation: consent-bubble-ring 2.6s ease-in-out infinite;
    pointer-events: none;
}
.consent-checkbox input {
    position: relative;
    z-index: 1;
    width: 22px;
    height: 22px;
    min-height: 22px;
    margin: 0;
    border: 2px solid rgba(244, 179, 86, 0.86);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.42);
    appearance: none;
    cursor: pointer;
}
.consent-checkbox input:checked {
    border-color: var(--secondary);
    background:
        linear-gradient(135deg, transparent 52%, rgba(12, 13, 14, 0) 52%),
        var(--secondary);
}
.consent-checkbox input:checked::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 7px;
    height: 12px;
    border: solid #0c0d0e;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}
.consent-checkbox:has(input:checked) {
    border-color: rgba(87, 241, 211, 0.5);
    background: rgba(87, 241, 211, 0.08);
    animation: none;
}
.consent-checkbox:has(input:checked)::before {
    opacity: 0;
    animation: none;
}
.consent-checkbox:hover,
.consent-checkbox:focus-within {
    border-color: rgba(244, 179, 86, 0.72);
    background: rgba(244, 179, 86, 0.11);
}
.consent-checkbox input:focus-visible {
    outline: 3px solid rgba(87, 241, 211, 0.42);
    outline-offset: 3px;
}
@keyframes consent-bubble-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(244, 179, 86, 0.22); }
    50% { box-shadow: 0 0 0 8px rgba(244, 179, 86, 0); }
}
@keyframes consent-bubble-ring {
    0%, 100% { opacity: 0.55; transform: translateY(-50%) scale(1); }
    50% { opacity: 0.16; transform: translateY(-50%) scale(1.36); }
}
.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 18px;
}
.form-footer p {
    margin: 0;
    color: var(--muted);
    line-height: 1.45;
}
.form-footer button {
    min-height: 46px;
    padding: 0 18px;
    border: 0;
    border-radius: 8px;
    color: #edf8f7;
    background: #123a63;
    box-shadow: 0 12px 28px rgba(18, 58, 99, 0.22);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 500;
    cursor: pointer;
    transition: background 180ms ease, box-shadow 180ms ease;
}
.form-footer button:hover {
    background: #164b7d;
    box-shadow: 0 14px 30px rgba(18, 58, 99, 0.28);
}
.form-footer button:disabled {
    cursor: wait;
    opacity: 0.68;
    box-shadow: none;
}
.form-status {
    display: block;
    min-height: 24px;
    margin-top: 14px;
    color: var(--accent);
    font-weight: 800;
}
.form-status[data-state="error"] {
    color: var(--primary);
}
.form-status[data-state="loading"] {
    color: var(--secondary);
}
.request-hero {
    min-height: 64vh;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    width: min(860px, calc(100% - 44px));
    margin: 0 auto;
    padding: 132px 0 56px;
}
.request-hero .eyebrow {
    border-color: rgba(245, 158, 11, 0.28);
    color: #fbbf24;
    background: rgba(245, 158, 11, 0.08);
    box-shadow: 0 12px 34px rgba(245, 158, 11, 0.08);
}
.request-hero aside {
    padding: 24px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
}
.request-hero aside strong,
.request-hero aside span {
    display: block;
}
.request-hero aside strong {
    color: var(--secondary);
    margin-bottom: 10px;
}
.request-hero aside span {
    color: var(--muted);
    line-height: 1.6;
}
.standalone-form {
    padding-top: 24px;
}
.operating-rule {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.operating-rule p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}
.cta-section { text-align: center; max-width: 760px; margin: 0 auto; }
.cta-section .eyebrow {
    border-color: rgba(245, 158, 11, 0.28) !important;
    color: #fbbf24 !important;
    background: rgba(245, 158, 11, 0.08) !important;
    box-shadow: 0 12px 34px rgba(245, 158, 11, 0.08) !important;
}
.placeholder-page {
    min-height: 80vh;
    display: grid;
    align-content: center;
    padding: 112px clamp(18px, 5vw, 72px);
    max-width: 860px;
}
.placeholder-page h1 { margin: 0; font-size: clamp(1.9rem, 3.2vw, 3.35rem); line-height: 1.06; }
.line-hero {
    min-height: 68vh;
    display: grid;
    align-content: center;
    padding: 132px clamp(18px, 5vw, 72px) 58px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.line-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 30%, rgba(216, 92, 87, 0.16), transparent 30%),
        radial-gradient(circle at 20% 74%, rgba(143, 191, 159, 0.12), transparent 28%);
    pointer-events: none;
}
.line-hero > * {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.line-hero h1 {
    margin: 0;
    font-size: clamp(2.2rem, 3.8vw, 4.2rem);
    line-height: 1.04;
}
.line-hero p:not(.eyebrow) {
    margin: 24px 0 0;
    max-width: 720px;
    color: var(--muted);
    font-size: clamp(1rem, 1.2vw, 1.16rem);
    line-height: 1.7;
    margin-left: auto;
    margin-right: auto;
}
.status-pill {
    display: inline-flex;
    width: fit-content;
    justify-self: center;
    margin-top: 28px;
    padding: 9px 12px;
    border-radius: 999px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    background: rgba(143, 191, 159, 0.08);
    border: 1px solid rgba(143, 191, 159, 0.22);
}
.growth-hero::before {
    background:
        radial-gradient(circle at 74% 30%, rgba(199, 161, 91, 0.16), transparent 32%),
        radial-gradient(circle at 22% 72%, rgba(143, 191, 159, 0.13), transparent 28%);
}
.security-hero::before {
    background:
        radial-gradient(circle at 74% 30%, rgba(216, 92, 87, 0.14), transparent 32%),
        radial-gradient(circle at 22% 72%, rgba(199, 161, 91, 0.1), transparent 28%);
}
.maturity-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.site-footer {
    padding: 46px clamp(18px, 5vw, 72px) 22px;
    border-top: 1px solid rgba(245, 241, 234, 0.1);
    background:
        radial-gradient(circle at 18% 0%, rgba(85, 183, 255, 0.06), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.022), rgba(0, 0, 0, 0)),
        #090a0b;
}
.footer-inner {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
    gap: clamp(42px, 7vw, 92px);
    align-items: start;
}
.footer-brand {
    display: grid;
    align-content: start;
    gap: 18px;
}
.footer-brand img {
    width: 178px;
    height: auto;
    display: block;
}
.footer-brand p,
.footer-cta p,
.footer-bottom {
    color: var(--muted);
    line-height: 1.65;
}
.footer-brand p {
    max-width: 440px;
    margin: 0;
    font-size: 0.95rem;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    gap: clamp(34px, 6vw, 72px);
    justify-content: end;
    align-items: start;
    padding-top: 4px;
}
.footer-nav,
.footer-cta {
    display: grid;
    align-content: start;
    gap: 9px;
}
.footer-nav h2,
.footer-cta h2 {
    margin: 0 0 6px;
    color: var(--text);
    font-size: 0.78rem;
    line-height: 1.2;
    text-transform: uppercase;
}
.footer-nav a {
    display: inline-flex;
    width: fit-content;
    color: rgba(245, 241, 234, 0.72);
    font-size: 0.92rem;
    line-height: 1.42;
    transition: color 180ms ease, transform 180ms ease;
}
.footer-nav a:hover {
    color: var(--text);
    transform: translateX(2px);
}
.footer-cta p {
    margin: 0;
    font-size: 0.94rem;
}
.footer-action {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
    width: fit-content;
    margin-top: 8px;
    padding: 11px 15px;
    border-radius: 8px;
    color: #0c0d0e;
    background: linear-gradient(135deg, #8fbf9f, #10b981);
    box-shadow: 0 14px 34px rgba(16, 185, 129, 0.2);
    font-size: 0.9rem;
    font-weight: 900;
}
.footer-action {
    z-index: 0;
}
.footer-action::before,
.button.primary::before {
    pointer-events: none;
}
.footer-bottom {
    width: min(1180px, 100%);
    margin: 34px auto 0;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    border-top: 1px solid rgba(245, 241, 234, 0.08);
    font-size: 0.82rem;
}
.legal-hero {
    width: min(920px, calc(100% - 44px));
    min-height: 46vh;
    margin: 0 auto;
    padding: 148px 0 52px;
    display: grid;
    align-content: end;
}
.legal-hero .eyebrow {
    border-color: rgba(59, 130, 246, 0.28);
    color: #55b7ff;
    background: rgba(59, 130, 246, 0.08);
    box-shadow: 0 12px 34px rgba(59, 130, 246, 0.08);
}
.legal-hero h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.7rem);
    line-height: 1.05;
}
.legal-hero p:not(.eyebrow) {
    max-width: 720px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.2vw, 1.14rem);
    line-height: 1.72;
}
.legal-layout {
    width: min(920px, calc(100% - 44px));
    margin: 0 auto;
    padding: 18px 0 76px;
    display: grid;
    gap: 14px;
}
.legal-panel {
    padding: 24px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.032);
}
.legal-panel h2 {
    margin: 0 0 12px;
    font-size: clamp(1.12rem, 1.6vw, 1.35rem);
    line-height: 1.22;
}
.legal-panel p,
.legal-panel li {
    color: var(--muted);
    line-height: 1.72;
}
.legal-panel p {
    margin: 0;
}
.legal-panel p + p,
.legal-panel .button {
    margin-top: 16px;
}
.legal-panel ul {
    margin: 0;
    padding-left: 18px;
}

/* Typography refresh */
.site-header {
    gap: 24px;
}

.main-nav a {
    font-size: var(--text-sm);
    font-weight: 700;
    line-height: 1.2;
}

.main-nav a.nav-action {
    font-weight: 800;
}

.eyebrow,
.slide-kicker,
.operations-map span,
.service-grid article span,
.problem-map strong,
.maturity-grid strong,
.process-steps span,
.case-story span,
.case-result-strip strong,
.case-detail-panel span,
.case-testimonial span,
.status-pill,
.footer-nav h2,
.footer-cta h2,
.case-meta-strip span,
.back-link {
    font-size: var(--text-xs);
    line-height: 1.18;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 0 auto 14px;
    padding: 7px 10px;
    border: 1px solid rgba(216, 92, 87, 0.24);
    border-radius: 8px;
    color: #ff746f;
    background: rgba(216, 92, 87, 0.075);
    box-shadow: 0 12px 34px rgba(216, 92, 87, 0.08);
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
}

.hero {
    min-height: 52vh;
    padding-top: 92px;
}

.hero-content {
    width: min(980px, calc(100% - 72px));
    padding: clamp(52px, 7vw, 92px) 0 clamp(48px, 7vw, 88px);
    display: grid;
    justify-items: center;
}

.hero-content .eyebrow {
    margin-bottom: 18px;
    transform: translateY(-4px);
}

.section-heading .eyebrow,
.cta-section .eyebrow,
.legal-hero .eyebrow,
.line-hero .eyebrow,
.request-hero .eyebrow {
    margin-left: auto;
    margin-right: auto;
}

.product-copy .eyebrow {
    margin-left: 0;
    margin-right: 0;
}

.hero h1,
.line-hero h1,
.legal-hero h1,
.placeholder-page h1,
.diagnostic-copy h2,
.request-hero h1 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: var(--heading-tight);
}

.hero h1 {
    max-width: 900px;
    font-size: clamp(2.28rem, 5.1vw, 5rem);
}

.hero-lead {
    max-width: 760px;
    margin-top: 22px;
    font-size: clamp(1.04rem, 1.35vw, 1.24rem);
    line-height: 1.7;
}

.hero-future {
    max-width: 720px;
    margin-top: 16px;
    font-size: var(--text-base);
    line-height: 1.68;
}

.hero-actions {
    margin-top: 30px;
}

.button,
.footer-action,
.form-footer button {
    font-size: var(--text-sm);
    font-weight: 800;
    line-height: 1.18;
}

.section {
    padding-top: clamp(58px, 8vw, 92px);
    padding-bottom: clamp(58px, 8vw, 92px);
}

.section-heading {
    max-width: 800px;
    margin-bottom: 38px;
    display: grid;
    justify-items: center;
}

.section h2,
.clients-section .section-heading h2 {
    font-family: var(--font-display);
    font-size: clamp(1.94rem, 3.35vw, 3.55rem);
    font-weight: 600;
    line-height: var(--heading-normal);
}

.section-heading p:not(.eyebrow),
.clients-section .section-heading p:not(.eyebrow) {
    max-width: 690px;
    margin: 16px auto 0;
    color: rgba(245, 241, 234, 0.72);
    font-size: var(--text-md);
    line-height: var(--copy-line);
}

.operations-section .section-heading {
    max-width: 840px;
}

.operations-bridge {
    max-width: 980px;
    gap: clamp(18px, 4vw, 44px);
    margin-bottom: 42px;
}

.operations-bridge p,
.split-copy p,
.request-section p,
.operating-rule p,
.diagnostic-copy p,
.request-hero p,
.line-hero p:not(.eyebrow),
.legal-hero p:not(.eyebrow),
.legal-panel p,
.legal-panel li,
.client-empty-state p,
.case-card p,
.product-copy p,
.cta-section p,
.placeholder-page p {
    font-size: var(--text-base);
    line-height: var(--copy-line);
}

.operations-map {
    gap: 32px 38px;
}

.operations-map strong,
.service-grid h3,
.process-steps strong,
.case-card h3,
.client-case h3,
.case-detail-panel strong,
.product-flow span,
.diagnostic-flow span,
.request-hero aside strong,
.legal-panel h2 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.22;
}

.operations-map strong {
    font-size: clamp(1.06rem, 1.22vw, 1.22rem);
}

.operations-map p,
.service-grid p,
.problem-map span,
.maturity-grid span,
.process-steps p,
.case-story p,
.case-detail-panel p,
.case-result-strip span,
.footer-brand p,
.footer-cta p {
    font-size: var(--text-sm);
    line-height: 1.66;
}

.service-grid article,
.problem-map div,
.maturity-grid div,
.process-steps div,
.case-card,
.case-detail-panel,
.diagnostic-form,
.legal-panel {
    background-color: rgba(8, 9, 10, 0.18);
}

.service-grid h3,
.process-steps strong {
    font-size: clamp(1.08rem, 1.35vw, 1.3rem);
}

.case-card h3,
.legal-panel h2 {
    font-size: clamp(1.14rem, 1.65vw, 1.5rem);
}

.product-section {
    gap: clamp(28px, 5vw, 64px);
}

.product-copy p,
.cta-section p {
    max-width: 620px;
}

.product-flow span {
    font-size: var(--text-base);
}

.diagnostic-copy h2,
.request-hero h1,
.placeholder-page h1 {
    font-size: clamp(2rem, 4.2vw, 4.05rem);
}

.diagnostic-form label > span,
.choice-field legend,
.choice-grid span,
.form-required-note,
.form-footer p,
.form-status,
.diagnostic-form input,
.diagnostic-form select,
.diagnostic-form textarea {
    font-size: var(--text-sm);
    line-height: 1.45;
}

.diagnostic-form input,
.diagnostic-form select,
.diagnostic-form textarea {
    font-weight: 400;
}

.footer-nav a {
    font-size: var(--text-sm);
    line-height: 1.5;
}

@keyframes frame-sweep { to { transform: rotate(360deg); } }
@keyframes slide-sequence {
    0%, 6% { opacity: 0; transform: translateY(18px) scale(0.98); }
    12%, 28% { opacity: 1; transform: translateY(0) scale(1); }
    34%, 100% { opacity: 0; transform: translateY(-14px) scale(0.985); }
}
@keyframes core-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 52px rgba(216, 92, 87, 0.18); }
    50% { transform: scale(1.04); box-shadow: 0 0 76px rgba(143, 191, 159, 0.16); }
}
@keyframes process-line {
    0% { clip-path: inset(0 100% 0 0); opacity: 0; }
    25%, 75% { opacity: 1; }
    100% { clip-path: inset(0 0 0 100%); opacity: 0; }
}
@keyframes bar-grow {
    0%, 100% { transform: scaleX(0.72); opacity: 0.58; transform-origin: left; }
    50% { transform: scaleX(1); opacity: 1; transform-origin: left; }
}
@keyframes dashboard-sequence {
    0%, 64% { opacity: 0; transform: translateY(8px); }
    72%, 96% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-4px); }
}
@keyframes timeline-step {
    0% { transform: scaleX(0); }
    30%, 100% { transform: scaleX(1); }
}
@keyframes cta-shine {
    0%, 38% { transform: translateX(-150%) skewX(-18deg); opacity: 0; }
    48% { opacity: 0.78; }
    62%, 100% { transform: translateX(260%) skewX(-18deg); opacity: 0; }
}
@keyframes client-logo-breathe {
    0%, 100% { opacity: 0.68; filter: drop-shadow(0 0 0 rgba(216, 92, 87, 0)); }
    50% { opacity: 0.84; filter: drop-shadow(0 10px 22px rgba(216, 92, 87, 0.08)); }
}
@keyframes page-background-drift {
    0% { transform: translate3d(-1.2vw, -0.8vh, 0) scale(1.04); }
    45% { transform: translate3d(1.1vw, 0.9vh, 0) scale(1.065); }
    100% { transform: translate3d(-0.4vw, 1.2vh, 0) scale(1.055); }
}
@keyframes sicgad-background-drift {
    0% {
        transform: translate3d(-1.4%, -1%, 0) scale(1.04);
        filter: saturate(1.08) brightness(1.02);
    }
    45% {
        transform: translate3d(1.2%, 0.8%, 0) scale(1.075);
        filter: saturate(1.16) brightness(1.1);
    }
    100% {
        transform: translate3d(-0.4%, 1.4%, 0) scale(1.06);
        filter: saturate(1.12) brightness(1.06);
    }
}
@keyframes sicgad-node-pulse {
    0%, 18%, 100% {
        color: var(--sicgad-mint);
        border-color: rgba(87, 241, 211, 0.26);
        background: rgba(5, 19, 24, 0.78);
        box-shadow: 0 0 22px rgba(87, 241, 211, 0.12);
        transform: scale(1);
    }
    4% {
        color: rgba(239, 255, 251, 0.9);
        border-color: rgba(87, 241, 211, 0.48);
        background: rgba(8, 38, 43, 0.88);
        box-shadow:
            0 0 0 3px rgba(87, 241, 211, 0.045),
            0 0 20px rgba(87, 241, 211, 0.24);
        transform: scale(1.035);
    }
    9% {
        color: #effffb;
        border-color: rgba(87, 241, 211, 0.68);
        background: rgba(10, 54, 58, 0.92);
        box-shadow:
            0 0 0 6px rgba(87, 241, 211, 0.075),
            0 0 30px rgba(87, 241, 211, 0.36);
        transform: scale(1.065);
    }
    14% {
        color: rgba(239, 255, 251, 0.92);
        border-color: rgba(87, 241, 211, 0.44);
        background: rgba(7, 33, 38, 0.88);
        box-shadow:
            0 0 0 2px rgba(87, 241, 211, 0.035),
            0 0 18px rgba(87, 241, 211, 0.22);
        transform: scale(1.025);
    }
}
@keyframes sicgad-connector-flow {
    0%, 4%, 100% {
        opacity: 0;
        transform: scaleX(0);
    }
    6% {
        opacity: 0.46;
        transform: scaleX(0.03);
    }
    15% {
        opacity: 1;
        transform: scaleX(1);
    }
    22% {
        opacity: 0;
        transform: scaleX(1);
    }
}
@keyframes sicgad-connector-flow-vertical {
    0%, 4%, 100% {
        opacity: 0;
        transform: scaleY(0);
    }
    6% {
        opacity: 0.46;
        transform: scaleY(0.03);
    }
    15% {
        opacity: 1;
        transform: scaleY(1);
    }
    22% {
        opacity: 0;
        transform: scaleY(1);
    }
}
@keyframes sicgad-label-glow {
    0%, 18%, 100% {
        color: rgba(245, 241, 234, 0.9);
        text-shadow: none;
    }
    9% {
        color: #ffffff;
        text-shadow: 0 0 16px rgba(87, 241, 211, 0.3);
    }
}
@keyframes sicgad-region-cycle {
    0%, 5% { opacity: 0; transform: translateY(12px) scale(0.985); }
    10%, 29% { opacity: 1; transform: translateY(0) scale(1); }
    34%, 100% { opacity: 0; transform: translateY(-10px) scale(0.99); }
}
@keyframes sicgad-map-drift {
    0%, 7% { transform: translate3d(0, 10px, 0) scale(0.985); opacity: 0.86; }
    12%, 29% { transform: translate3d(0, 0, 0) scale(1); opacity: 1; }
    34%, 100% { transform: translate3d(0, -8px, 0) scale(0.992); opacity: 0.9; }
}
@keyframes sicgad-map-breathe {
    0%, 10% { transform: scale(1.035); filter: saturate(1.02) contrast(1.02) brightness(0.86); }
    18%, 28% { transform: scale(1.065); filter: saturate(1.14) contrast(1.06) brightness(0.96); }
    34%, 100% { transform: scale(1.045); filter: saturate(1.04) contrast(1.03) brightness(0.88); }
}
@keyframes sicgad-map-scan {
    0%, 18% { transform: translateX(-80%); opacity: 0; }
    38%, 56% { opacity: 0.82; }
    82%, 100% { transform: translateX(82%); opacity: 0; }
}
@keyframes sicgad-variable-cycle {
    0%, 9% { opacity: 0; transform: translateY(10px) scale(0.96); }
    14%, 27% { opacity: 1; transform: translateY(0) scale(1); }
    32%, 100% { opacity: 0; transform: translateY(-8px) scale(0.98); }
}
@keyframes sicgad-signal-cycle {
    0% { transform: scaleX(0); }
    33.333% { transform: scaleX(1); }
    33.334%, 100% { transform: scaleX(0); }
}

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

    .button.primary::before,
    .main-nav a.nav-action::before,
    .footer-action::before {
        animation: none;
        opacity: 0;
    }
    .client-logo-card {
        animation: none;
    }
    .consent-checkbox,
    .consent-checkbox::before {
        animation: none;
    }
    body::before {
        animation: none;
        transform: translate3d(0, 0, 0) scale(1.04);
    }
    .sicgad-region,
    .product-section::after,
    .sicgad-process span,
    .sicgad-process strong,
    .sicgad-process li::before,
    .sicgad-process li::after,
    .sicgad-map-frame,
    .sicgad-map-frame img,
    .sicgad-map-frame::after,
    .sicgad-variable,
    .sicgad-signal-row span::before {
        animation: none;
    }
    .sicgad-region:first-child,
    .sicgad-region:first-child .sicgad-variable {
        opacity: 1;
        transform: none;
    }
    .sicgad-region:first-child .sicgad-map-frame,
    .sicgad-region:first-child .sicgad-map-frame img {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 920px) {
    .site-header {
        align-items: center;
        gap: 16px;
        min-height: 58px;
        padding: 9px clamp(18px, 5vw, 34px);
    }
    .nav-toggle {
        position: relative;
        display: inline-flex;
        flex: 0 0 auto;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        padding: 0;
        border: 1px solid rgba(148, 197, 255, 0.28);
        border-radius: 8px;
        color: var(--text);
        background: rgba(255, 255, 255, 0.07);
        cursor: pointer;
        transition: border-color 180ms ease, background 180ms ease;
    }
    .nav-toggle:hover,
    .nav-toggle:focus-visible {
        border-color: rgba(148, 197, 255, 0.52);
        background: rgba(255, 255, 255, 0.12);
        outline: none;
    }
    .nav-toggle-line {
        position: absolute;
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: currentColor;
        transition: transform 180ms ease, opacity 180ms ease;
    }
    .nav-toggle-line:nth-child(1) {
        transform: translateY(-6px);
    }
    .nav-toggle-line:nth-child(3) {
        transform: translateY(6px);
    }
    .site-header.is-nav-open .nav-toggle-line:nth-child(1) {
        transform: rotate(45deg);
    }
    .site-header.is-nav-open .nav-toggle-line:nth-child(2) {
        opacity: 0;
    }
    .site-header.is-nav-open .nav-toggle-line:nth-child(3) {
        transform: rotate(-45deg);
    }
    .main-nav {
        position: absolute;
        top: calc(100% + 8px);
        right: clamp(18px, 5vw, 34px);
        display: grid;
        align-items: stretch;
        justify-content: stretch;
        justify-items: stretch;
        gap: 4px;
        grid-template-columns: minmax(0, 1fr);
        width: min(360px, calc(100vw - 36px));
        padding: 8px;
        border: 1px solid rgba(59, 130, 246, 0.24);
        border-radius: 8px;
        background: linear-gradient(180deg, rgba(11, 23, 48, 0.98), rgba(8, 16, 35, 0.95));
        box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(24px) saturate(1.18);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px) scale(0.97);
        transform-origin: top right;
        visibility: hidden;
        transition: opacity 220ms ease, transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0s linear 220ms;
    }
    .site-header.is-nav-open .main-nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0) scale(1);
        visibility: visible;
        transition-delay: 0s;
    }
    .main-nav a {
        width: 100%;
        justify-content: flex-start;
        min-height: 46px;
        padding: 11px 14px;
        border-radius: 7px;
        white-space: normal;
        text-align: left;
        opacity: 0;
        transform: translateY(-5px);
        transition: color 180ms ease, background 180ms ease, opacity 220ms ease, transform 240ms ease;
    }
    .site-header.is-nav-open .main-nav a {
        opacity: 1;
        transform: translateY(0);
    }
    .site-header.is-nav-open .main-nav a:nth-child(1) {
        transition-delay: 30ms;
    }
    .site-header.is-nav-open .main-nav a:nth-child(2) {
        transition-delay: 55ms;
    }
    .site-header.is-nav-open .main-nav a:nth-child(3) {
        transition-delay: 80ms;
    }
    .site-header.is-nav-open .main-nav a:nth-child(4) {
        transition-delay: 105ms;
    }
    .main-nav a:hover,
    .main-nav a.is-active {
        background: rgba(255, 255, 255, 0.08);
    }
    .nav-link-label {
        text-align: left;
    }
    .main-nav a::after {
        left: 14px;
        right: 14px;
        width: 145px;
        bottom: 8px;
        transform-origin: left;
    }
    .main-nav a.nav-action {
        justify-content: flex-start;
        background: rgba(244, 179, 86, 0.08);
    }
    .hero { padding-top: 112px; }
    .hero-content { padding-top: 28px; }
    .request-hero,
    .legal-hero,
    .line-hero,
    .case-detail-hero {
        padding-top: 124px;
    }
    .legal-hero {
        min-height: auto;
        align-content: start;
    }
    .hero-grid, .case-grid, .client-showcase, .product-section, .split-copy, .operations-bridge, .operating-rule, .diagnostic-layout, .request-hero, .case-detail-layout { grid-template-columns: 1fr; }
    .case-detail-identity {
        position: static;
        padding-top: 0;
    }
    .case-detail-logo { width: min(280px, 100%); }
    .case-detail-stack {
        max-height: none;
        overflow: visible;
        padding: 0;
        -webkit-mask-image: none;
        mask-image: none;
    }
    .site-footer {
        padding-top: 38px;
    }
    .footer-inner { grid-template-columns: 1fr; gap: 24px; }
    .footer-brand {
        gap: 14px;
    }
    .footer-brand img {
        width: 164px;
    }
    .footer-links { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; width: 100%; padding-top: 0; }
    .diagnostic-copy { position: static; }
    .service-grid, .operations-map, .maturity-grid, .process-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hero-showcase { min-height: auto; }
    .presentation-frame { margin: 0; }
    .sicgad-section { align-items: start; }
    .sicgad-copy h2 { font-size: clamp(3rem, 13vw, 6.2rem); }
    .sicgad-process { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 16px; }
    .sicgad-process li:nth-child(3)::after,
    .sicgad-process li:last-child::after {
        content: none;
    }
    .sicgad-atlas { min-height: 500px; }
    .product-flow { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .brand img { width: 152px; }
    .site-header {
        padding-inline: 16px;
    }
    .nav-toggle {
        width: 40px;
        height: 40px;
    }
    .main-nav {
        right: 16px;
        width: calc(100vw - 32px);
    }
    .hero { min-height: auto; }
    .hero-content {
        width: min(100% - 32px, 820px);
        padding: 24px 0 44px;
        justify-items: start;
        text-align: left;
    }
    .hero-content .eyebrow,
    .section-heading .eyebrow,
    .cta-section .eyebrow,
    .legal-hero .eyebrow,
    .line-hero .eyebrow,
    .request-hero .eyebrow {
        margin-left: 0;
        margin-right: 0;
    }
    .section-heading,
    .cta-section {
        justify-items: start;
        text-align: left;
    }
    .hero h1 { font-size: clamp(2rem, 10vw, 2.72rem); }
    .hero-content .hero-lead,
    .hero-future {
        margin-left: 0;
        margin-right: 0;
    }
    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }
    .hero-actions .button {
        width: 100%;
    }
    .client-carousel {
        grid-template-columns: 1fr;
    }
    .carousel-control {
        display: none;
    }
    .client-carousel-track {
        grid-auto-columns: minmax(190px, 76vw);
    }
    .client-carousel.is-static .client-carousel-track {
        grid-auto-columns: minmax(0, min(42vw, 170px));
        gap: 8px;
        padding: 10px 0 8px;
    }
    .client-carousel.is-static .client-logo-card {
        min-height: 88px;
        padding: 6px 8px;
    }
    .client-carousel.is-static .client-logo-card img,
    .clients-section:not(.products-section) .client-carousel.is-static .client-logo-card img {
        width: 100%;
        height: 58px;
        max-width: 100%;
        max-height: 58px;
        object-fit: contain;
    }
    .case-detail-hero {
        min-height: auto;
        padding-top: 132px;
    }
    .case-testimonial {
        margin-top: 44px;
        text-align: left;
    }
    .sicgad-section {
        padding-top: 56px;
        padding-bottom: 56px;
    }
    .sicgad-copy h2 {
        font-size: clamp(3rem, 18vw, 4.7rem);
    }
    .sicgad-lead {
        margin-top: 18px;
        font-size: var(--text-base);
    }
    .sicgad-process {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .sicgad-process li {
        min-height: auto;
        padding: 0 0 0 54px;
    }
    .sicgad-process li:not(:last-child)::after {
        top: 36px;
        bottom: -14px;
        left: 18px;
        right: auto;
        width: 1px;
        height: auto;
        background: rgba(87, 241, 211, 0.24);
    }
    .sicgad-process li:not(:last-child)::before {
        top: 36px;
        bottom: -14px;
        left: 17px;
        right: auto;
        width: 3px;
        height: auto;
        background: linear-gradient(180deg, rgba(87, 241, 211, 0), rgba(87, 241, 211, 0.98), rgba(255, 255, 255, 0.82));
        transform: scaleY(0);
        transform-origin: top center;
        animation-name: sicgad-connector-flow-vertical;
    }
    .sicgad-process span {
        position: absolute;
        top: 0;
        left: 0;
    }
    .sicgad-process strong {
        min-height: 36px;
        display: flex;
        align-items: center;
    }
    .sicgad-atlas {
        min-height: 430px;
        padding: 14px;
    }
    .sicgad-map-stage {
        min-height: 340px;
    }
    .sicgad-map-frame {
        width: 112%;
    }
    .sicgad-region-label {
        left: 12px;
        bottom: 14px;
    }
    .sicgad-variable {
        min-width: 88px;
        padding: 8px 9px;
        font-size: 0.68rem;
    }
    .variable-a { top: 18%; left: 5%; }
    .variable-b { top: 18%; right: 5%; }
    .variable-c { right: 6%; bottom: 24%; }
    .variable-d { left: 6%; bottom: 24%; }
    .region-europe .variable-a { top: 18%; left: 5%; }
    .region-europe .variable-b { top: 18%; right: 5%; }
    .region-europe .variable-c { right: 6%; bottom: 24%; }
    .region-europe .variable-d { left: 6%; bottom: 24%; }
    .region-south .variable-a { top: 15%; left: 32%; }
    .region-south .variable-b { top: 34%; right: 16%; }
    .region-south .variable-c { right: 16%; bottom: 22%; }
    .region-south .variable-d { left: 24%; bottom: 20%; }
    .presentation-frame { min-height: 460px; }
    .presentation-stage { min-height: 310px; }
    .presentation-slide h3 { font-size: 1.28rem; }
    .screen-grid, .product-flow { grid-template-columns: 1fr; }
    .form-grid, .form-row-three-cols, .form-row-two-cols, .form-row-phone { grid-template-columns: 1fr; }
    .form-footer { align-items: stretch; flex-direction: column; }
    .form-footer button { width: 100%; }
    .operations-section { padding-top: 52px; padding-bottom: 48px; }
    .operations-bridge { gap: 14px; margin-bottom: 28px; }
    .operations-map { gap: 22px; }
    .operations-map article { min-height: auto; }
    .service-grid, .operations-map, .problem-map, .maturity-grid, .process-steps, .request-section { grid-template-columns: 1fr; }
    .choice-grid { grid-template-columns: 1fr; }
    .site-footer {
        padding: 30px 18px 16px;
    }
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer-brand {
        gap: 12px;
    }
    .footer-brand img {
        width: 150px;
    }
    .footer-brand p {
        max-width: 100%;
        line-height: 1.54;
    }
    .footer-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
    .footer-nav {
        gap: 7px;
    }
    .footer-nav h2 {
        margin-bottom: 2px;
        font-size: 0.72rem;
    }
    .footer-nav a {
        font-size: 0.82rem;
        line-height: 1.38;
    }
    .footer-bottom {
        flex-direction: row;
        margin-top: 22px;
        padding-top: 14px;
        font-size: 0.82rem;
    }
    .line-hero { min-height: auto; }
    .module-card { min-height: 88px; }
    .source-list div { align-items: flex-start; flex-direction: column; gap: 6px; }
    .source-list strong { text-align: left; }
}

@media (max-width: 920px) and (prefers-reduced-motion: reduce) {
    .nav-toggle,
    .nav-toggle-line,
    .main-nav,
    .main-nav a {
        transition: none;
    }
}

svg {
    max-width: 100%;
    height: auto;
}

/* Products section vertical block override */
.products-section {
    display: block !important;
}
.products-section .section-heading {
    position: relative;
    z-index: 1;
    margin-bottom: 18px;
    text-align: center;
}
.products-section .section-heading h2 {
    font-size: clamp(1.55rem, 2.05vw, 2.18rem);
    line-height: 1.14;
}
.products-section .section-heading p:not(.eyebrow) {
    max-width: 720px;
    margin: 12px auto 0;
    color: var(--muted);
    line-height: 1.65;
}
.products-section .client-carousel {
    margin-top: 24px;
}
.client-carousel-hint {
    text-align: center;
    color: var(--muted);
    font-size: var(--text-xs);
    margin-top: 14px;
}

.product-detail-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}
.product-detail-layout {
    width: min(920px, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.product-header-block {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    width: 100%;
}
.product-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.product-detail-logo {
    display: block;
    width: clamp(130px, 16vw, 178px);
    height: auto;
}
.product-intro-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.product-short-desc {
    margin: 0 auto;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.62;
    text-align: center;
    width: 100%;
    max-width: 800px;
}
.product-detailed-desc {
    margin-top: 16px;
    color: var(--muted);
    font-size: var(--text-sm);
    line-height: 1.62;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

/* Image carousel slider styles */
.product-carousel-wrapper {
    position: relative;
    width: 100%;
}
.product-carousel-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}
.product-carousel-viewport {
    position: relative;
    flex-grow: 1;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.product-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.product-carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 0.3;
    transition: opacity 0.5s ease;
}
.product-carousel-slide.is-active {
    opacity: 1;
}
.product-carousel-img-wrapper {
    width: 100%;
    height: auto;
    max-height: 520px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}
.product-carousel-img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    display: block;
}
.product-carousel-caption {
    width: 100%;
    padding: 24px clamp(18px, 4vw, 36px);
    background: linear-gradient(180deg, rgba(16, 28, 54, 0.84), rgba(10, 18, 36, 0.94));
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}
.product-carousel-caption h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.48rem);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Indicators and Controls */
.product-carousel-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
}
.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.24);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.24s ease, transform 0.24s ease;
}
.indicator-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}
.indicator-dot.is-active {
    background: var(--secondary);
    transform: scale(1.3);
    box-shadow: 0 0 10px var(--secondary);
}
.product-action-container {
    display: flex;
    justify-content: center;
    margin-top: 12px;
}
.test-product-btn {
    padding: 16px 42px;
    font-size: var(--text-sm);
    font-weight: 800;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, #f4b356, #d97706) !important;
    color: #0c0d0e !important;
    box-shadow: 0 8px 30px rgba(244, 179, 86, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.test-product-btn:hover {
    background: linear-gradient(135deg, #fbbf24, #ea580c) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(244, 179, 86, 0.36);
}
.floating-test-btn {
    position: absolute !important;
    top: 24px !important;
    right: 24px !important;
    left: auto !important;
    z-index: 10 !important;
    padding: 12px 28px !important;
    font-size: 0.78rem !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 4px 15px rgba(244, 179, 86, 0.15) !important;
}
@media (max-width: 600px) {
    .floating-test-btn {
        top: 12px !important;
        right: 12px !important;
        padding: 8px 16px !important;
        font-size: 0.7rem !important;
    }
}

/* Responsive Adaptations */
@media (max-width: 768px) {
    .product-header-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
}

/* Case study detail footer block (Testimony + Report Button) */
.case-footer-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    width: min(1160px, calc(100% - 44px));
    margin: 64px auto 44px;
}
.case-footer-left {
    flex: 1;
    min-width: 0;
}
.case-footer-right {
    flex-shrink: 0;
}
.case-footer-block .case-testimonial {
    width: 100%;
    margin: 0;
    padding: 16px 0 16px 72px;
    background: transparent;
    border: none;
    box-shadow: none;
    text-align: left;
}
.case-footer-block .case-testimonial::before {
    left: 0;
    top: -30px;
}
.view-report-btn {
    padding: 16px 36px !important;
    font-size: var(--text-sm) !important;
    font-weight: 800 !important;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, #f4b356, #d97706);
    box-shadow: 0 14px 34px rgba(217, 119, 6, 0.18);
    color: #0c0d0e !important;
}
.view-report-btn:hover {
    background: linear-gradient(135deg, #fbbf24, #ea580c);
    box-shadow: 0 18px 42px rgba(217, 119, 6, 0.28);
    transform: translateY(-2px);
}

@media (max-width: 920px) {
    .case-footer-block {
        flex-direction: column;
        align-items: stretch;
        gap: 28px;
        margin-top: 40px;
    }
    .case-footer-right {
        display: flex;
        justify-content: center;
    }
    .case-footer-block .case-testimonial {
        text-align: center;
    }
    .case-footer-block .case-testimonial::before {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Report Page Premium Styling */
.report-wrapper {
    background: #090b10;
    min-height: 100vh;
    padding: 140px 24px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.report-toolbar {
    width: min(920px, 100%);
    margin-bottom: 24px;
}
.report-toolbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.back-text-link {
    color: var(--muted);
    font-size: var(--text-sm);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}
.back-text-link:hover {
    color: var(--text);
}
.print-report-btn {
    padding: 12px 28px !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
}

/* Document Paper Styling */
.report-paper {
    background: #ffffff;
    color: #1a1a1a;
    width: min(920px, 100%);
    min-height: 1120px;
    padding: 60px clamp(32px, 6vw, 80px) 80px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    position: relative;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
}

/* Header */
.report-header {
    margin-bottom: 24px;
}
.report-logo {
    display: block;
    width: 140px;
    height: auto;
    filter: brightness(0.08);
}
.report-divider {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    margin: 16px 0 0 0;
}

/* Title & Dotted line */
.report-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.62rem;
    font-weight: 800;
    color: #111111;
    margin: 0 0 8px 0;
}
.report-title span {
    text-transform: capitalize;
}
.report-dotted-line {
    border-top: 1.5px dotted #1a1a1a;
    margin-bottom: 28px;
    opacity: 0.85;
}

/* Sections */
.report-section {
    margin-bottom: 26px;
    page-break-inside: avoid;
}
.report-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: #111111;
    margin: 0 0 8px 0;
    text-transform: none;
}
.report-content {
    padding-left: 16px;
}
.report-content p {
    font-size: 0.92rem;
    line-height: 1.62;
    color: #333333;
    margin: 0;
}
.report-content strong {
    color: #111111;
    font-size: 0.96rem;
}

/* Testimonial Section inside Report */
.testimonial-content {
    background: #fcfcfc;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    padding: 18px 24px;
}
.report-quote {
    font-style: italic;
    color: #444444 !important;
}
.report-quote-author {
    font-size: 0.82rem !important;
    font-weight: 700;
    color: #222222 !important;
    margin-top: 8px !important;
}

/* Footer */
.report-footer {
    margin-top: auto;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: #888888;
}

/* Page Break Helper for Screen and PDF */
.page-break {
    height: 1px;
    page-break-after: always;
    margin: 32px 0;
    border-top: 1px dashed rgba(0, 0, 0, 0.06);
}

/* Language Selector */
.lang-selector {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-left: 12px;
}
.lang-btn {
    color: rgba(237, 248, 247, 0.5);
    font-size: 0.76rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    transition: color 180ms ease, background-color 180ms ease;
}
.lang-btn:hover {
    color: var(--text);
    background-color: rgba(255, 255, 255, 0.08);
}
.lang-btn.is-active {
    color: var(--text);
    background-color: rgba(255, 255, 255, 0.12);
    font-weight: 900;
}
.lang-divider {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.72rem;
    user-select: none;
}

/* Responsiveness for language selector on mobile menu */
@media (max-width: 920px) {
    .lang-selector {
        margin-left: 0;
        margin-top: 10px;
        width: auto;
        justify-content: center;
    }
}

/* Optimized CSS for Printing */
@media print {
    body {
        background: #ffffff !important;
        color: #000000 !important;
    }
    main, .report-wrapper {
        padding: 0 !important;
        margin: 0 !important;
        background: #ffffff !important;
    }
    .report-paper {
        width: 100% !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    .no-print, .site-header, .site-footer, main > *:not(.report-wrapper) {
        display: none !important;
    }
    .page-break {
        border: none !important;
        margin: 0 !important;
        height: 0 !important;
        page-break-after: always !important;
    }
}

/* --- Form Success Card premium and animated style --- */
.form-success-card {
    text-align: center;
    padding: 34px 22px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(87, 241, 211, 0.22);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    animation: success-fade-in 450ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes success-fade-in {
    0% {
        opacity: 0;
        transform: scale(0.94) translateY(10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.success-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}

.success-checkmark {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #57f1d3;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #57f1d3;
    animation: fill-checkmark .4s ease-in-out .4s forwards, scale-checkmark .3s ease-in-out .9s both;
}

.success-checkmark-circle {
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-miterlimit: 10;
    stroke: #57f1d3;
    fill: none;
    animation: stroke-checkmark 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-checkmark-check {
    transform-origin: 50% 50%;
    stroke-linecap: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke-checkmark 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke-checkmark {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes fill-checkmark {
    100% {
        box-shadow: inset 0px 0px 0px 40px rgba(87, 241, 211, 0.1);
    }
}

@keyframes scale-checkmark {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.15, 1.15, 1);
    }
}

.form-success-card h3 {
    margin: 0 0 12px;
    color: #57f1d3;
    font-family: var(--font-display);
    font-size: 1.58rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.success-message-text {
    color: rgba(245, 241, 234, 0.92);
    font-size: var(--text-base);
    line-height: 1.6;
    margin: 0 0 24px;
}

.success-card-footer {
    padding-top: 18px;
    border-top: 1px solid rgba(245, 241, 234, 0.08);
}

.success-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: var(--text-xs);
    font-weight: 800;
    color: #57f1d3;
    background: rgba(87, 241, 211, 0.08);
    border: 1px solid rgba(87, 241, 211, 0.22);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.success-card-footer p {
    margin: 0;
    color: var(--muted);
    font-size: var(--text-sm);
    line-height: 1.5;
}
