:root {
    --bg: #dff5ff;
    --bg-soft: #edfaff;
    --line: rgba(17, 55, 159, 0.14);
    --line-strong: rgba(17, 55, 159, 0.24);
    --text: #0f2f70;
    --muted: #5576a8;
    --accent: #103a9f;
    --accent-soft: #1ca7ea;
    --shadow: 0 28px 80px rgba(16, 58, 159, 0.14);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --container: 1380px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 20% 15%, rgba(28, 167, 234, 0.14), transparent 28%),
        radial-gradient(circle at 70% 18%, rgba(16, 58, 159, 0.14), transparent 18%),
        linear-gradient(180deg, #eef9ff 0%, #dcefff 42%, #d0e7fb 100%);
    min-height: 100vh;
}

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

.container {
    width: min(calc(100% - 24px), var(--container));
    margin: 0 auto;
}

.page-shell {
    position: relative;
    overflow: hidden;
    padding-top: 130px;
    padding-bottom: 48px;
    isolation: isolate;
}

.page-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.22;
    background-image: url("../images/bg-bus.svg");
    background-repeat: repeat-y;
    background-position: center 180px;
    background-size: 1320px auto;
}

.page-shell > * {
    position: relative;
    z-index: 1;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 22px 0 0;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 84px;
    padding: 16px 22px;
    border: 1px solid rgba(17, 55, 159, 0.12);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(245, 252, 255, 0.96), rgba(228, 245, 255, 0.92));
    backdrop-filter: blur(18px);
    box-shadow:
        0 20px 50px rgba(16, 58, 159, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    padding: 6px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(225, 241, 255, 0.98));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 10px 22px rgba(16, 58, 159, 0.08);
    overflow: hidden;
}

.brand-mark-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-header .brand-mark {
    width: 64px;
    height: 64px;
    padding: 7px;
}

.brand-text {
    display: grid;
    gap: 2px;
}

.brand-text strong,
.footer-brand strong {
    font-size: 1rem;
}

.brand-text strong {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}

.brand-legal {
    display: inline-block;
    font-size: 0.62em;
    font-weight: 600;
    white-space: nowrap;
}

.brand-text small,
.footer-brand p,
.footer-bottom p,
.site-footer p {
    color: var(--muted);
    margin: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-menu > a {
    color: #183e84;
    font-size: 0.94rem;
    font-weight: 600;
    padding: 12px 14px;
    border-radius: 14px;
}

.nav-menu > a:hover,
.nav-menu > a:focus-visible {
    background: rgba(28, 167, 234, 0.1);
}

.nav-pill {
    border: 1px solid rgba(17, 55, 159, 0.14);
    background: rgba(16, 58, 159, 0.06);
}

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

.nav-cta {
    border: 1px solid var(--line);
}

.nav-cta-primary {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(224, 241, 255, 0.98));
    border-color: rgba(16, 58, 159, 0.24);
    color: #103a9f;
    box-shadow:
        0 10px 24px rgba(16, 58, 159, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.lang-switcher {
    position: relative;
}

.lang-switcher-current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 94px;
    padding: 10px 12px;
    border: 1px solid rgba(17, 55, 159, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.74);
    color: #183e84;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.lang-switcher-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 190px;
    display: none;
    gap: 4px;
    padding: 8px;
    border: 1px solid rgba(17, 55, 159, 0.14);
    border-radius: 14px;
    background: rgba(245, 252, 255, 0.98);
    box-shadow: 0 16px 34px rgba(16, 58, 159, 0.14);
    z-index: 60;
}

.lang-switcher.is-open .lang-switcher-menu {
    display: grid;
}

.lang-switcher-menu button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 9px 10px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: transparent;
    color: #163d81;
    font-size: 0.88rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.lang-switcher-menu button:hover,
.lang-switcher-menu button:focus-visible,
.lang-switcher-menu button.is-active {
    background: rgba(28, 167, 234, 0.12);
    border-color: rgba(17, 55, 159, 0.12);
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: transparent;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 6px auto;
    background: var(--text);
}

.hero-section {
    position: relative;
    padding: 22px 0 56px;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.55), transparent 38%),
        radial-gradient(circle at 64% 56%, rgba(28, 167, 234, 0.18), transparent 22%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 30%);
    pointer-events: none;
}

.hero-frame {
    position: relative;
    border-radius: 34px;
    border: 1px solid rgba(17, 55, 159, 0.1);
    background:
        radial-gradient(circle at 18% 18%, rgba(28, 167, 234, 0.16), transparent 24%),
        linear-gradient(180deg, rgba(244, 252, 255, 0.98), rgba(219, 241, 255, 0.94));
    box-shadow:
        0 34px 90px rgba(16, 58, 159, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.78);
    overflow: hidden;
}

.hero-corner {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(196, 200, 217, 0.2));
    filter: blur(0.2px);
    opacity: 0.92;
}

.hero-corner-top {
    top: 10px;
    right: -10px;
    width: 180px;
    height: 84px;
    clip-path: polygon(18% 0, 100% 0, 78% 100%, 0 100%);
}

.hero-corner-side {
    top: 150px;
    right: -28px;
    width: 118px;
    height: 340px;
    clip-path: polygon(44% 0, 100% 0, 58% 100%, 0 100%);
    opacity: 0.38;
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(90px);
    opacity: 0.7;
    pointer-events: none;
}

.hero-glow-left {
    top: 70px;
    left: -120px;
    width: 340px;
    height: 340px;
    background: rgba(20, 158, 229, 0.24);
}

.hero-glow-right {
    top: 120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: rgba(17, 55, 159, 0.18);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    min-height: calc(100vh - 168px);
    padding: 74px 54px 54px;
    z-index: 2;
}

.hero-copy {
    max-width: 640px;
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 22px;
    padding: 10px 15px;
    border: 1px solid rgba(95, 201, 255, 0.14);
    border-radius: 999px;
    background: rgba(20, 158, 229, 0.07);
    color: #d7efff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.split-grid h2,
.cta-panel h2 {
    margin: 0;
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.hero-copy h1 {
    font-size: clamp(3.2rem, 5.2vw, 5.2rem);
    max-width: 10.8ch;
}

.hero-copy p,
.section-heading p,
.feature-item p,
.cta-panel p,
.info-card p,
.site-footer a,
.site-footer p {
    color: var(--muted);
    line-height: 1.75;
}

.hero-copy p {
    margin: 28px 0 0;
    max-width: 500px;
    font-size: 1.13rem;
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 188px;
    padding: 17px 24px;
    border-radius: 16px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button-primary {
    background: linear-gradient(180deg, #1849bb, var(--accent));
    color: #fff;
    box-shadow: 0 18px 34px rgba(16, 58, 159, 0.24);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(16, 58, 159, 0.16);
    color: var(--text);
}

.eyebrow-dark {
    color: #103a9f;
    font-weight: 800;
}

.eyebrow-cta {
    border-color: rgba(16, 58, 159, 0.24);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(224, 241, 255, 0.98));
    color: #103a9f;
    font-weight: 800;
    box-shadow:
        0 10px 24px rgba(16, 58, 159, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin: 44px 0 0;
    padding: 0;
    list-style: none;
}

.hero-metrics li {
    min-width: 150px;
    padding: 18px 18px;
    border: 1px solid rgba(17, 55, 159, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.66);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.hero-metrics strong {
    display: block;
    font-size: 1.6rem;
}

.hero-metrics span {
    color: var(--muted);
    font-size: 0.94rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
}

.visual-stage {
    position: relative;
    width: min(100%, 640px);
    min-height: 100%;
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 44%, rgba(28, 167, 234, 0.16), transparent 22%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.08)),
        linear-gradient(180deg, #28457f 0%, #17356f 100%);
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow:
        var(--shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.visual-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 16.66% 16.66%;
    opacity: 0.24;
}

.visual-tech-watermark {
    position: absolute;
    inset: 7% 4% 6% 4%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.2;
    mix-blend-mode: screen;
    background: url("../images/tech-circuit.svg") center/cover no-repeat;
}

.visual-noise {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(circle at 15% 10%, rgba(255, 255, 255, 0.12), transparent 20%),
        radial-gradient(circle at 85% 8%, rgba(255, 255, 255, 0.08), transparent 18%);
    opacity: 0.34;
}

.visual-floor-glow {
    position: absolute;
    inset: auto 10% 14% 10%;
    z-index: 2;
    height: 16%;
    background: radial-gradient(circle at center, rgba(188, 238, 255, 0.6), transparent 62%);
    filter: blur(28px);
    opacity: 0.9;
}

.visual-path {
    display: none;
}

.visual-reflection {
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 12%;
    z-index: 2;
    height: 12%;
    border-radius: 999px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.56), transparent 68%);
    filter: blur(20px);
    opacity: 0.68;
}

.visual-product-logo {
    position: absolute;
    top: 28px;
    left: 28px;
    z-index: 6;
    width: 220px;
    max-width: 38%;
    padding: 14px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.92);
    box-shadow:
        0 18px 38px rgba(14, 45, 119, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.visual-product-logo-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.visual-growth {
    position: absolute;
    top: 154px;
    right: 16px;
    bottom: 22px;
    width: min(73%, 500px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 4;
}

.visual-growth-legend {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.visual-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #f4f9ff;
    background: rgba(18, 42, 95, 0.56);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.visual-legend-item::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.visual-legend-item-before::before {
    background: #f3c540;
}

.visual-legend-item-after::before {
    background: #59c9ff;
}

.visual-growth-chart {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: end;
    gap: 12px;
    height: 100%;
    min-height: 360px;
    padding: 12px 12px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(13, 33, 77, 0.42), rgba(8, 24, 60, 0.54));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.visual-metric {
    position: relative;
    height: 100%;
    --before-height: 30%;
    --after-height: 72%;
}

.visual-metric-competitivita {
    --before-height: 28%;
    --after-height: 72%;
}

.visual-metric-servizio {
    --before-height: 36%;
    --after-height: 82%;
}

.visual-metric-margini {
    --before-height: 24%;
    --after-height: 64%;
}

.visual-bar {
    position: absolute;
    left: 50%;
    bottom: 40px;
    border-radius: 14px 14px 0 0;
}

.visual-bar::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    transform: translateX(-50%);
    background-image: url("../images/logogap.png"), linear-gradient(180deg, #ffffff 0%, #edf7ff 100%);
    background-size: 72%, 100% 100%;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    border: 1px solid rgba(220, 242, 255, 0.92);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 8px 14px rgba(9, 25, 62, 0.3);
}

.visual-bar-before {
    width: 50%;
    height: var(--before-height);
    transform: translateX(-34%);
    background: linear-gradient(180deg, rgba(255, 242, 179, 0.98), rgba(245, 201, 76, 0.96) 48%, rgba(203, 140, 8, 0.98) 100%);
    border: 1px solid rgba(255, 239, 178, 0.78);
    box-shadow: 0 10px 20px rgba(76, 49, 2, 0.32);
    z-index: 3;
}

.visual-bar-before::after {
    content: "×";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background-image: linear-gradient(180deg, #fff5cf 0%, #efbe2a 100%);
    color: #805200;
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1;
    border: 1px solid rgba(255, 239, 178, 0.92);
}

.visual-bar-after {
    width: 66%;
    height: var(--after-height);
    transform: translateX(-64%);
    background: linear-gradient(180deg, rgba(239, 250, 255, 0.96), rgba(147, 215, 253, 0.78) 46%, rgba(39, 95, 191, 0.92) 100%);
    border: 1px solid rgba(255, 255, 255, 0.52);
    box-shadow: 0 12px 26px rgba(13, 31, 73, 0.34);
    z-index: 2;
}

.visual-bar-after::after {
    top: 6px;
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background-image:
        url("../images/logogap.png"),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(225, 242, 255, 0.98));
    background-size: 74%, 100% 100%;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    border: 1px solid rgba(220, 242, 255, 0.95);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 8px 14px rgba(9, 25, 62, 0.3);
}

.visual-growth-label {
    position: absolute;
    left: 50%;
    bottom: 10px;
    width: 110px;
    transform: translateX(-50%);
    text-align: center;
    color: #eef7ff;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.2;
}

.visual-shadow {
    position: absolute;
    left: 41%;
    bottom: 12%;
    width: 52%;
    height: 9%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.52), transparent 68%);
    filter: blur(18px);
    opacity: 0.8;
}

.section {
    padding: 88px 0;
}

.section-alt {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.46), transparent);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-heading h2,
.split-grid h2,
.cta-panel h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.info-card,
.cta-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 16px 40px rgba(16, 58, 159, 0.1);
}

.info-card {
    padding: 30px;
}

.card-link {
    display: inline-flex;
    margin-top: 18px;
    color: #103a9f;
    font-weight: 700;
}

.card-kicker {
    display: inline-block;
    margin-bottom: 18px;
    color: #103a9f;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.info-card h3,
.feature-item h3,
.site-footer h3 {
    margin: 0 0 12px;
    font-size: 1.2rem;
}

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

.feature-list {
    display: grid;
    gap: 16px;
}

.feature-item {
    padding: 24px 26px;
    border-left: 2px solid rgba(16, 58, 159, 0.42);
    background: rgba(255, 255, 255, 0.68);
    border-radius: 0 18px 18px 0;
}

.platform-band {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: end;
    padding: 34px;
    border: 1px solid rgba(17, 55, 159, 0.12);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(217, 240, 255, 0.72));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.platform-intro h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.platform-copy {
    margin: 22px 0 0;
    max-width: 720px;
    color: var(--muted);
    line-height: 1.75;
}

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

.platform-point {
    padding: 18px;
    border: 1px solid rgba(17, 55, 159, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
}

.platform-point strong {
    display: block;
    margin-bottom: 18px;
    color: #79d8ff;
    font-size: 1.1rem;
}

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

.section-button {
    margin-top: 24px;
}

.subhero-section {
    padding: 34px 0 30px;
}

.product-hero-section {
    padding-top: 18px;
}

.subhero-panel,
.product-panel {
    border: 1px solid rgba(95, 201, 255, 0.12);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(20, 158, 229, 0.06), rgba(17, 55, 159, 0.03));
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(95, 201, 255, 0.03);
}

.subhero-panel {
    padding: 40px;
}

.product-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    align-items: stretch;
}

.product-hero-copy,
.product-hero-visual,
.feature-card-premium,
.insight-panel {
    border: 1px solid rgba(95, 201, 255, 0.12);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(20, 158, 229, 0.06), rgba(17, 55, 159, 0.03));
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(95, 201, 255, 0.03);
}

.product-hero-copy {
    padding: 42px;
}

.product-hero-copy h1 {
    margin: 0;
    font-size: clamp(3.1rem, 6vw, 5.5rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    max-width: 8.2ch;
}

.product-hero-copy p {
    max-width: 560px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.product-hero-visual {
    overflow: hidden;
    min-height: 560px;
    padding: 20px;
}

.tip-stage {
    position: relative;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 18%, rgba(20, 158, 229, 0.22), transparent 20%),
        linear-gradient(180deg, #112651 0%, #081733 100%);
}

.tpl-stage {
    position: relative;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at 22% 22%, rgba(20, 158, 229, 0.2), transparent 22%),
        linear-gradient(180deg, #10244a 0%, #08162f 100%);
}

.tip-stage-grid {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 16.66% 16.66%;
    opacity: 0.28;
}

.tip-route {
    position: absolute;
    left: 6%;
    right: 6%;
    top: 18%;
    height: 2px;
    border-top: 2px dashed rgba(158, 194, 255, 0.55);
    transform: translateY(-50%);
}

.tpl-route {
    position: absolute;
    left: 8%;
    right: 10%;
    bottom: 25%;
    height: 2px;
    border-top: 2px dashed rgba(255, 198, 120, 0.55);
}

.tpl-city {
    position: absolute;
    left: 10%;
    right: 12%;
    top: 16%;
    height: 16%;
    opacity: 0.22;
    background:
        linear-gradient(90deg,
            transparent 0 5%,
            rgba(255, 199, 122, 0.9) 5% 8%,
            transparent 8% 16%,
            rgba(255, 199, 122, 0.8) 16% 19%,
            transparent 19% 28%,
            rgba(255, 199, 122, 0.75) 28% 34%,
            transparent 34% 46%,
            rgba(255, 199, 122, 0.8) 46% 51%,
            transparent 51% 60%,
            rgba(255, 199, 122, 0.8) 60% 64%,
            transparent 64% 74%,
            rgba(255, 199, 122, 0.7) 74% 79%,
            transparent 79% 100%);
}

.tpl-stop {
    position: absolute;
    left: 16%;
    bottom: 20%;
    width: 64px;
    height: 160px;
}

.tpl-stop::before {
    content: "";
    position: absolute;
    left: 28px;
    top: 0;
    width: 8px;
    height: 120px;
    background: linear-gradient(180deg, #6cd8ff, #149ee5);
    border-radius: 8px;
}

.tpl-stop::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 26px;
    width: 48px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(201, 242, 255, 0.96), rgba(20, 158, 229, 0.9));
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
}

.tpl-bus {
    position: absolute;
    left: 41%;
    bottom: 16%;
    width: 210px;
    height: 250px;
    border-radius: 34px 34px 18px 18px;
    background: linear-gradient(180deg, rgba(90, 210, 255, 0.98), rgba(17, 55, 159, 0.94));
    box-shadow:
        0 24px 40px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.tpl-bus::before {
    content: "";
    position: absolute;
    left: 14%;
    right: 14%;
    top: 12%;
    height: 34%;
    border-radius: 16px;
    background: linear-gradient(180deg, #273657, #425779);
}

.tpl-bus::after {
    content: "";
    position: absolute;
    left: 16%;
    right: 16%;
    bottom: 10%;
    height: 10%;
    border-radius: 999px;
    background: rgba(58, 41, 18, 0.48);
}

.tpl-phone {
    position: absolute;
    right: 10%;
    bottom: 10%;
    width: 120px;
    height: 220px;
    border-radius: 28px;
    background: linear-gradient(180deg, #1f2432, #0d111a);
    box-shadow:
        0 16px 28px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: rotate(12deg);
}

.tpl-phone-screen {
    position: absolute;
    inset: 14px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(52, 117, 255, 0.95), rgba(26, 52, 116, 0.9));
}

.tpl-badge {
    position: absolute;
    left: 9%;
    bottom: 11%;
    width: 126px;
    height: 126px;
    border-radius: 32px;
    display: grid;
    place-items: center;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(179, 233, 255, 0.84));
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.tpl-badge strong,
.tpl-badge small {
    display: block;
    text-align: center;
    color: #103a9f;
}

.tpl-badge strong {
    font-size: 1.5rem;
    line-height: 1;
}

.tpl-badge small {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.glt-stage {
    position: relative;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at 24% 20%, rgba(20, 158, 229, 0.18), transparent 20%),
        linear-gradient(180deg, #0e2248 0%, #08162f 100%);
}

.glt-radar {
    position: absolute;
    left: 6%;
    top: 10%;
    width: 34%;
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(95, 201, 255, 0.16) 0 20%, transparent 20% 42%, rgba(95, 201, 255, 0.16) 42% 46%, transparent 46% 68%, rgba(95, 201, 255, 0.12) 68% 72%, transparent 72%);
    opacity: 0.7;
}

.glt-map {
    position: absolute;
    left: 35%;
    bottom: 18%;
    width: 42%;
    height: 34%;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(196, 202, 214, 0.84));
    clip-path: polygon(16% 0, 100% 12%, 84% 100%, 0 88%);
    box-shadow: 0 22px 34px rgba(0, 0, 0, 0.24);
    transform: rotate(-9deg);
}

.glt-map::before,
.glt-map::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 0 18%, rgba(112, 121, 135, 0.34) 18% 20%, transparent 20% 48%, rgba(112, 121, 135, 0.34) 48% 50%, transparent 50% 100%),
        linear-gradient(transparent 0 22%, rgba(112, 121, 135, 0.34) 22% 24%, transparent 24% 56%, rgba(112, 121, 135, 0.34) 56% 58%, transparent 58% 100%);
}

.glt-route {
    position: absolute;
    left: 16%;
    right: 8%;
    bottom: 22%;
    height: 2px;
    border-top: 2px dashed rgba(95, 201, 255, 0.48);
}

.glt-pin {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    background: linear-gradient(180deg, #ff5f7b, #e02448);
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.24);
}

.glt-pin::before {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    background: #fff;
}

.glt-pin-main {
    right: 22%;
    top: 30%;
}

.glt-pin-secondary {
    left: 28%;
    top: 22%;
    width: 46px;
    height: 46px;
    background: linear-gradient(180deg, #49a7ff, #1475d8);
}

.glt-phone {
    position: absolute;
    right: 8%;
    bottom: 12%;
    width: 122px;
    height: 228px;
    border-radius: 28px;
    background: linear-gradient(180deg, #202636, #0b111b);
    transform: rotate(10deg);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.26);
}

.glt-phone-screen {
    position: absolute;
    inset: 12px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 246, 220, 0.96), rgba(214, 222, 255, 0.96));
}

.glt-phone-screen::before {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    top: 18%;
    bottom: 18%;
    background:
        linear-gradient(135deg, rgba(78, 126, 255, 0.3), transparent 45%),
        linear-gradient(45deg, transparent 0 40%, rgba(97, 188, 255, 0.34) 40% 44%, transparent 44% 100%);
}

.glt-badge {
    position: absolute;
    left: 10%;
    bottom: 10%;
    width: 126px;
    height: 126px;
    border-radius: 32px;
    display: grid;
    place-items: center;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(179, 233, 255, 0.84));
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.glt-badge strong,
.glt-badge small {
    display: block;
    text-align: center;
    color: #103a9f;
}

.glt-badge strong {
    font-size: 1.5rem;
    line-height: 1;
}

.glt-badge small {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.tip-map {
    position: absolute;
    top: 14%;
    right: 14%;
    width: 34%;
    height: 42%;
    opacity: 0.9;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.22));
}

.tip-map span {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #2490ff, #0d5fc7);
    clip-path: polygon(39% 0, 56% 6%, 65% 17%, 68% 29%, 79% 43%, 73% 54%, 81% 71%, 76% 86%, 60% 100%, 52% 92%, 42% 82%, 31% 78%, 20% 66%, 11% 51%, 0 38%, 9% 27%, 20% 20%, 24% 10%);
}

.tip-bus {
    position: absolute;
    border-radius: 28px 28px 18px 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(182, 191, 209, 0.88));
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.28),
        inset 0 -10px 16px rgba(83, 97, 123, 0.25);
}

.tip-bus::before {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    top: 16%;
    height: 36%;
    border-radius: 16px;
    background: linear-gradient(180deg, #1a233f, #33446a);
}

.tip-bus::after {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 12%;
    height: 10%;
    border-radius: 999px;
    background: rgba(30, 36, 49, 0.8);
}

.bus-front {
    left: 49%;
    bottom: 17%;
    width: 180px;
    height: 250px;
    transform: perspective(700px) rotateY(-28deg) rotateZ(-6deg);
}

.bus-back {
    left: 18%;
    bottom: 30%;
    width: 150px;
    height: 210px;
    transform: perspective(700px) rotateY(18deg) rotateZ(5deg);
    opacity: 0.9;
}

.tip-card {
    position: absolute;
    left: 11%;
    bottom: 14%;
    width: 122px;
    height: 122px;
    border-radius: 32px;
    display: grid;
    place-items: center;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(197, 204, 229, 0.84));
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.tip-card strong,
.tip-card small {
    display: block;
    text-align: center;
    color: #0c1530;
}

.tip-card strong {
    font-size: 1.5rem;
    line-height: 1;
}

.tip-card small {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.product-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 22px;
}

.product-overview,
.product-note {
    padding: 32px;
}

.product-overview h2,
.product-note h3 {
    margin: 0 0 18px;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.product-overview h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.product-note h3 {
    font-size: 1.6rem;
}

.product-overview p,
.product-note p {
    margin: 0;
    color: var(--muted);
    line-height: 1.85;
}

.feature-showcase {
    display: grid;
    gap: 26px;
}

.section-heading-tight {
    margin-bottom: 0;
}

.feature-columns {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 22px;
    align-items: start;
}

.feature-stack {
    display: grid;
    gap: 18px;
}

.feature-card-premium,
.insight-panel {
    padding: 30px;
}

.feature-card-premium h3,
.insight-panel h3 {
    margin: 0 0 18px;
    font-size: 1.5rem;
}

.feature-intro {
    margin: 0;
    color: var(--muted);
    line-height: 1.85;
}

.feature-bullet-list {
    margin: 0;
    padding-left: 22px;
    color: var(--muted);
    line-height: 1.85;
}

.feature-bullet-list li + li {
    margin-top: 10px;
}

.insight-panel p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.insight-visual {
    margin-top: 24px;
}

.insight-screen {
    position: relative;
    min-height: 360px;
    border-radius: 24px;
    overflow: hidden;
    background:
        linear-gradient(180deg, #97c8f5 0%, #4aa0d8 42%, #2d7ec0 42%, #215d85 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 20px 40px rgba(0, 0, 0, 0.24);
}

.insight-screen-tpl {
    background:
        linear-gradient(180deg, #1f2a42 0%, #11192c 56%, #0a101c 100%);
}

.insight-screen-glt {
    background:
        linear-gradient(180deg, #07131e 0%, #07111b 100%);
}

.insight-sea {
    position: absolute;
    inset: 44% 0 0;
    background: linear-gradient(180deg, #57afcf, #2a6a8a);
}

.insight-road {
    position: absolute;
    left: 10%;
    right: 6%;
    bottom: 16%;
    height: 22%;
    border-radius: 26px 26px 0 0;
    background: linear-gradient(180deg, #7c828e, #4c5360);
    transform: perspective(500px) rotateX(55deg);
}

.insight-bus {
    position: absolute;
    left: 34%;
    bottom: 18%;
    width: 34%;
    height: 24%;
    border-radius: 32px 32px 18px 18px;
    background: linear-gradient(180deg, #ffffff, #c3cedd);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.24);
}

.insight-bus::before {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    top: 18%;
    height: 28%;
    border-radius: 12px;
    background: linear-gradient(180deg, #17213c, #314161);
}

.insight-copy {
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 8%;
    color: #eef6ff;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.08;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.34);
}

.insight-dashboard {
    position: absolute;
    left: 8%;
    top: 18%;
    width: 56%;
    height: 38%;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(205, 213, 227, 0.92));
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.22);
}

.insight-dashboard::before {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    top: 16%;
    height: 10%;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffb24c, #ffcf76);
}

.insight-dashboard::after {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    bottom: 16%;
    height: 38%;
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(39, 119, 255, 0.9), rgba(29, 65, 126, 0.96));
}

.insight-handset {
    position: absolute;
    right: 10%;
    top: 18%;
    width: 24%;
    height: 54%;
    border-radius: 26px;
    background: linear-gradient(180deg, #202636, #0b111b);
    transform: rotate(14deg);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.26);
}

.insight-handset::before {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(47, 115, 255, 0.96), rgba(26, 56, 117, 0.96));
}

.insight-card-tag {
    position: absolute;
    left: 8%;
    bottom: 34%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 122px;
    padding: 10px 16px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 187, 89, 0.95), rgba(219, 128, 7, 0.95));
    color: #231400;
    font-weight: 800;
    letter-spacing: 0.08em;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
}

.glt-grid-lines {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(103, 203, 255, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(103, 203, 255, 0.12) 1px, transparent 1px);
    background-size: 36px 36px;
    opacity: 0.45;
}

.glt-signal-dot {
    position: absolute;
    left: 56%;
    top: 48%;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffe94b;
    box-shadow: 0 0 0 8px rgba(255, 233, 75, 0.12), 0 0 30px rgba(255, 233, 75, 0.35);
    z-index: 2;
}

.glt-signal-ring {
    position: absolute;
    left: 56%;
    top: 48%;
    border: 2px solid rgba(114, 218, 255, 0.28);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.glt-signal-ring-1 {
    width: 160px;
    height: 160px;
}

.glt-signal-ring-2 {
    width: 260px;
    height: 260px;
}

.glt-signal-copy {
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 8%;
    color: #eef6ff;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.08;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.34);
}

.subhero-panel h1,
.product-panel h2 {
    margin: 0;
    line-height: 1;
    letter-spacing: -0.05em;
}

.subhero-panel h1 {
    font-size: clamp(3rem, 6vw, 5.2rem);
    max-width: 10ch;
}

.subhero-panel p {
    max-width: 720px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.75;
}

.stack-grid {
    display: grid;
    gap: 18px;
}

.company-story {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 22px;
}

.story-panel,
.closing-panel {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.story-panel {
    padding: 32px;
}

.story-panel p,
.closing-panel p {
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.9;
}

.story-panel p:last-child,
.closing-panel p:last-child {
    margin-bottom: 0;
}

.story-panel strong {
    color: var(--text);
}

.story-panel-accent {
    background:
        radial-gradient(circle at top left, rgba(255, 107, 44, 0.14), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
}

.story-panel-accent h2,
.closing-panel h2 {
    margin: 0 0 20px;
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.story-panel-accent h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.mission-list {
    margin: 0;
    padding-left: 22px;
    color: var(--muted);
    line-height: 1.85;
}

.mission-list li + li {
    margin-top: 14px;
}

.product-panel {
    padding: 30px;
}

.policy-panel {
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.policy-panel h2 {
    margin: 0 0 18px;
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.policy-panel p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.85;
}

.policy-panel p:last-child {
    margin-bottom: 0;
}

.policy-panel-accent {
    background:
        radial-gradient(circle at top left, rgba(255, 107, 44, 0.14), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
}

.product-panel h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.product-panel p {
    margin: 18px 0 0;
    max-width: 760px;
    color: var(--muted);
    line-height: 1.75;
}

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

.home-slider-section {
    padding-top: 10px;
}

.home-slider {
    position: relative;
    padding: 18px 18px 58px;
    border: 1px solid rgba(17, 55, 159, 0.12);
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(231, 246, 255, 0.92));
    box-shadow:
        0 24px 60px rgba(16, 58, 159, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    overflow: hidden;
}

.home-slider-track {
    position: relative;
    min-height: 420px;
}

.home-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(24px) scale(0.985);
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
}

.home-slide.is-active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

.home-slide-trigger {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.home-slide-trigger-layout {
    display: flex;
    align-items: stretch;
}

.home-slide-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.9fr);
    align-items: center;
    gap: 18px;
    width: 100%;
    min-height: 420px;
    padding: 24px;
    border-radius: 22px;
    background: #ffffff;
}

.home-slide-layout-main,
.home-slide-layout-side {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-slide-layout-main {
    max-height: 360px;
}

.home-slide-layout-side {
    max-height: 372px;
}

.home-slide img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: contain;
    object-position: center;
    border-radius: 22px;
    background: #fff;
}

.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay[hidden] {
    display: none;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 6, 14, 0.88);
    backdrop-filter: blur(8px);
}

.lightbox-content {
    position: relative;
    z-index: 2;
    width: min(94vw, 1600px);
    max-height: 90vh;
    padding: 18px;
    border: 1px solid rgba(17, 55, 159, 0.16);
    border-radius: 26px;
    background: rgba(240, 249, 255, 0.96);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

.lightbox-content img {
    display: block;
    width: 100%;
    max-height: calc(90vh - 36px);
    object-fit: contain;
    border-radius: 18px;
    background: #fff;
}

.lightbox-close {
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 3;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(16, 58, 159, 0.18);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    color: #103a9f;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: 1px solid rgba(16, 58, 159, 0.16);
    border-radius: 50%;
    background: rgba(16, 58, 159, 0.92);
    color: #fff;
    backdrop-filter: blur(12px);
    cursor: pointer;
    z-index: 2;
}

.slider-arrow:hover,
.slider-arrow:focus-visible {
    background: rgba(12, 42, 118, 0.96);
}

.slider-arrow-prev {
    left: 30px;
}

.slider-arrow-next {
    right: 30px;
}

.slider-arrow span {
    font-size: 1.2rem;
    font-weight: 700;
}

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 20px;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
    z-index: 2;
}

.slider-dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(16, 58, 159, 0.22);
    cursor: pointer;
}

.slider-dot.is-active {
    background: #103a9f;
    box-shadow: 0 0 0 4px rgba(16, 58, 159, 0.1);
}

.closing-panel {
    padding: 36px;
}

.closing-panel h2 {
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    max-width: 14ch;
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 36px;
}

.site-footer {
    padding: 18px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 24px;
    padding: 28px 0 18px;
    border-top: 1px solid var(--line);
}

.footer-brand-shell {
    align-self: start;
    padding: 18px 20px;
    border: 1px solid rgba(17, 55, 159, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow:
        0 16px 34px rgba(16, 58, 159, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.site-footer a {
    display: block;
    margin: 8px 0;
}

.footer-bottom {
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.section-copy {
    color: var(--muted);
    line-height: 1.8;
}

.reference-grid,
.office-grid,
.form-grid,
.contact-layout {
    display: grid;
    gap: 20px;
}

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

.reference-card {
    display: flex;
    align-items: center;
    min-height: 110px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 14px 36px rgba(16, 58, 159, 0.08);
    font-weight: 700;
}

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

.social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    padding: 12px 18px;
    border: 1px solid rgba(16, 58, 159, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    font-weight: 700;
}

.admin-shell {
    display: grid;
    grid-template-columns: 282px minmax(0, 1fr);
    min-height: 100vh;
    gap: 18px;
    padding: 16px;
    background: #ecf0ee;
}

.admin-sidebar {
    position: sticky;
    top: 16px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: calc(100vh - 32px);
    padding: 16px 14px;
    border: 1px solid #e3e8e5;
    border-radius: 24px;
    background: #f7faf8;
    box-shadow: 0 14px 32px rgba(11, 21, 15, 0.06);
}

.admin-brand,
.admin-login-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 6px 12px;
    border-bottom: 1px solid #e6ebe8;
}

.admin-brand strong {
    display: block;
    color: #101915;
    font-size: 1.04rem;
}

.admin-brand p,
.admin-login-brand p {
    margin: 4px 0 0;
    color: #6f7f75;
    font-size: 0.86rem;
}

.admin-menu-group {
    display: grid;
    gap: 8px;
}

.admin-menu-title {
    margin: 2px 8px 0;
    color: #829086;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-menu {
    display: grid;
    gap: 4px;
}

.admin-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border-radius: 12px;
    font-weight: 600;
    color: #1f2e27;
    font-size: 0.95rem;
    border: 1px solid transparent;
}

.admin-notification-badge {
    margin-left: auto;
    min-width: 24px;
    height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #d72f45;
    color: #ffffff;
    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1;
}

.admin-submenu {
    display: none;
    margin: 6px 0 2px 18px;
    padding-left: 10px;
    border-left: 2px solid #d7e6dd;
}

.admin-submenu.is-open {
    display: grid;
    gap: 4px;
}

.admin-submenu a {
    padding: 7px 10px;
    border-radius: 9px;
    color: #5f7368;
    font-size: 0.85rem;
    font-weight: 600;
}

.admin-submenu a:hover,
.admin-submenu a:focus-visible {
    background: #edf5f0;
    color: #155f3a;
}

.admin-submenu a.is-active {
    background: #e0efe6;
    color: #135f3a;
}

.admin-menu a.is-active,
.admin-menu a:hover,
.admin-menu a:focus-visible {
    background: #e7f3ea;
    border-color: #d5eadb;
    color: #135f3a;
}

.menu-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #9ca9a1;
}

.admin-menu a.is-active .menu-dot {
    background: #1f8f59;
}

.admin-side-card {
    margin-top: auto;
    padding: 14px;
    border: 1px solid #deeadf;
    border-radius: 16px;
    background: linear-gradient(160deg, #1f8f59, #116d43);
    color: #fff;
}

.admin-side-card strong {
    display: block;
    margin-bottom: 4px;
}

.admin-side-card p,
.admin-side-card small {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
}

.admin-logout {
    margin-top: 10px;
    justify-content: center;
    min-width: 0;
    width: 100%;
}

.admin-sidebar .button-secondary {
    background: #ffffff;
    color: #102518;
    border-color: #d9e2dc;
    box-shadow: none;
}

.admin-main {
    padding: 6px;
}

.admin-shell-login {
    min-height: 100vh;
}

.admin-main-login {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 14px;
}

.admin-topbar {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) auto auto;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding: 10px 12px;
    border: 1px solid #e3e8e5;
    border-radius: 18px;
    background: #f9fcfa;
    box-shadow: 0 8px 20px rgba(16, 30, 20, 0.05);
}

.admin-search {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #dee4e1;
    border-radius: 12px;
    background: #ffffff;
}

.admin-search svg {
    width: 16px;
    height: 16px;
    fill: #698274;
}

.admin-search input {
    width: 100%;
    border: 0;
    outline: none;
    font: inherit;
    color: #23372d;
    background: transparent;
}

.admin-topbar-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.button-sm {
    min-width: 0;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 0.9rem;
}

.admin-main .button-primary {
    background: linear-gradient(180deg, #1f8f59, #17794a);
    box-shadow: 0 10px 22px rgba(20, 94, 59, 0.25);
}

.admin-main .button-secondary {
    background: #ffffff;
    border-color: #cfd7d3;
    color: #1f3228;
    box-shadow: none;
}

.admin-user-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px 6px 6px;
    border: 1px solid #e1e7e3;
    border-radius: 999px;
    background: #ffffff;
}

.admin-user-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(180deg, #27a266, #17794a);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
}

.admin-user-pill strong {
    display: block;
    color: #152219;
    font-size: 0.88rem;
}

.admin-user-pill small {
    color: #6e8075;
    font-size: 0.72rem;
}

.admin-header {
    margin-bottom: 14px;
    padding: 8px 4px;
}

.admin-header-login {
    margin-bottom: 10px;
}

.admin-header h1 {
    margin: 8px 0 8px;
    color: #121c17;
    font-size: clamp(1.8rem, 3.8vw, 2.7rem);
    letter-spacing: -0.03em;
}

.admin-header p {
    margin: 0;
    max-width: 900px;
    color: #6c7f73;
    line-height: 1.6;
}

.admin-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 14px;
}

.admin-metric-card,
.admin-panel,
.admin-login-card {
    border: 1px solid #dfe5e2;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(11, 20, 15, 0.05);
}

.admin-metric-card {
    padding: 14px 16px;
}

.admin-metric-card.is-highlight {
    background: linear-gradient(145deg, #1f8f59, #17794a);
    border-color: transparent;
}

.admin-metric-card.is-highlight span,
.admin-metric-card.is-highlight strong {
    color: #fff;
}

.admin-metric-card span {
    display: block;
    color: #6f8377;
    font-size: 0.84rem;
}

.admin-metric-card strong {
    display: block;
    margin-top: 8px;
    color: #142119;
    font-size: 2.1rem;
    line-height: 1;
}

.admin-grid,
.admin-stack {
    display: grid;
    gap: 12px;
}

.admin-content-row {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 12px;
    align-items: start;
}

.admin-content-form {
    margin-top: 0;
}

.admin-content-preview {
    position: static;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 10px;
    padding: 8px;
    height: auto;
    min-height: 0;
    border: 1px solid #dfe5e2;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(11, 20, 15, 0.05);
}

.admin-content-preview-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.admin-content-preview-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.admin-content-preview-meta {
    display: grid;
    gap: 3px;
}

.admin-content-preview-meta span {
    color: #6f8276;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
}

.admin-content-preview-meta strong {
    color: #152219;
    font-size: 0.98rem;
}

.admin-content-preview-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    background: #e9f5ee;
    color: #1a7348;
    border: 1px solid #cce2d6;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
}

.admin-content-preview-meta small {
    color: #7e8f85;
    font-size: 0.82rem;
}

.admin-preview-frame-shell {
    position: relative;
    height: 420px;
    min-height: 260px;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid #e2e8e4;
    border-radius: 12px;
    background: #ffffff;
}

.admin-preview-frame-inner {
    position: relative;
    width: 100%;
    min-height: 100%;
}

.admin-preview-frame {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 1440px;
    height: 1800px;
    border: 0;
    transform: scale(0.52);
    transform-origin: top left;
    background: #ffffff;
}

.admin-preview-modal {
    position: fixed;
    inset: 0;
    z-index: 140;
    display: grid;
    place-items: center;
}

.admin-preview-modal[hidden] {
    display: none;
}

.admin-preview-modal-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(7, 14, 10, 0.58);
}

.admin-preview-modal-content {
    position: relative;
    z-index: 1;
    width: min(80vw, 1480px);
    height: min(80vh, 960px);
    border: 1px solid #dde5e0;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
}

.admin-preview-modal-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 12px;
    border-bottom: 1px solid #e6ece8;
    background: #f8fbf9;
}

.admin-preview-modal-toolbar strong {
    color: #1b2b21;
    font-size: 0.94rem;
}

.admin-preview-modal-frame {
    width: 100%;
    height: 100%;
    border: 0;
    background: #fff;
}

.admin-preview-modal-stage {
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
    background: #edf2ef;
}

.admin-preview-modal-viewport {
    width: 158%;
    height: 1880px;
    transform: scale(0.63);
    transform-origin: top left;
    border: 1px solid #dbe4de;
    border-radius: 0;
    background: #ffffff;
    overflow: hidden;
}

.admin-grid {
    grid-template-columns: 1.15fr 0.85fr;
}

.admin-panel {
    padding: 16px;
}

.admin-content-row > .admin-panel {
    position: sticky;
    top: 14px;
    align-self: start;
    height: auto;
    min-height: 0;
    max-height: none;
    overflow: visible;
}

.admin-panel-head {
    margin-bottom: 12px;
}

.admin-panel-head h2 {
    margin: 0 0 8px;
    color: #16221a;
    font-size: 1.2rem;
}

.admin-content-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 30px;
    padding: 0 10px;
    margin-right: 8px;
    border-radius: 999px;
    background: #1f8f59;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1;
}

.admin-field-ref {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 12px;
    height: auto;
    margin-right: 8px;
    padding: 0;
    color: #183f86;
    font-size: 0.95rem;
    font-weight: 800;
    font-style: normal;
    line-height: 1;
}

.admin-field-ref-inline {
    display: inline-block;
    margin: 0 6px 0 2px;
    color: #183f86;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1;
}

.admin-panel-head p {
    margin: 0;
    color: #6f8276;
    font-size: 0.92rem;
}

.admin-hint {
    display: block;
    margin-top: -6px;
    color: #6f8276;
    font-size: 0.82rem;
}

.home-order-panel {
    position: static;
}

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

.home-order-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid #dce4df;
    border-radius: 12px;
    background: #f8fbf9;
    cursor: grab;
}

.home-order-item.is-dragging {
    opacity: 0.55;
}

.home-order-handle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #e5efe9;
    color: #35634b;
    font-size: 0.95rem;
    font-weight: 800;
}

.home-order-meta strong {
    display: block;
    color: #172a20;
    font-size: 0.9rem;
}

.home-order-meta small {
    color: #6c7f73;
}

.home-order-actions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.home-order-actions .button {
    min-width: 38px;
    padding-left: 0;
    padding-right: 0;
}

.home-content-panel {
    position: static;
}

.home-content-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.admin-submission-group + .admin-submission-group {
    margin-top: 18px;
}

.admin-submission-group {
    padding: 12px;
    border: 1px solid #dfe7e2;
    border-radius: 14px;
}

.admin-submission-group h3 {
    margin: 0 0 10px;
    color: #173226;
    font-size: 1rem;
}

.admin-submission-group.type-demo {
    background: linear-gradient(180deg, #f2f8ff, #eaf3ff);
    border-color: #cfe0f7;
}

.admin-submission-group.type-contact {
    background: linear-gradient(180deg, #effcf6, #e6f7ef);
    border-color: #ccead9;
}

.admin-submission-group.type-career {
    background: linear-gradient(180deg, #fff8ee, #fff1df);
    border-color: #f0dcc2;
}

.admin-submission-group.type-altro {
    background: linear-gradient(180deg, #f5f5fb, #ececf6);
    border-color: #d9d9ea;
}

.admin-submission-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 8px;
    margin-left: 6px;
    border-radius: 999px;
    background: #e7f3ea;
    color: #14633d;
    font-size: 0.78rem;
    font-weight: 800;
}

.admin-status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.admin-status-pill.is-new {
    background: #fff3dc;
    color: #8b5a00;
    border: 1px solid #f2dcaf;
}

.admin-status-pill.is-viewed {
    background: #e8f6ed;
    color: #1b6a42;
    border: 1px solid #cbe8d8;
}

.admin-status-pill.is-archived {
    background: #eff2f5;
    color: #4b5965;
    border: 1px solid #d8dfe5;
}

.admin-empty-state {
    margin: 0;
    padding: 14px;
    border: 1px dashed #d9e2dc;
    border-radius: 12px;
    color: #667a6e;
    background: #f9fcfa;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
}

.admin-table th,
.admin-table td {
    padding: 10px 10px;
    border-bottom: 1px solid #ecf0ed;
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    background: #f5f8f6;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #718278;
}

.admin-message-cell {
    color: #5f7066;
    font-size: 0.9rem;
    line-height: 1.6;
    background: #f7faf8;
}

.submission-original {
    color: #32493b;
}

.submission-translation {
    margin-top: 8px;
    padding: 8px 10px;
    border: 1px solid #d9e7dd;
    border-radius: 10px;
    background: #edf7f0;
    color: #1d5f3d;
    font-size: 0.86rem;
    line-height: 1.55;
}

.submission-translation[hidden] {
    display: none;
}

.admin-list {
    display: grid;
    gap: 8px;
}

.admin-list-item {
    padding: 12px 12px;
    border: 1px solid #e5ebe8;
    border-radius: 12px;
    background: #fbfdfc;
}

.admin-list-item strong,
.admin-list-item span,
.admin-list-item small {
    display: block;
}

.admin-list-item span,
.admin-list-item small {
    margin-top: 4px;
    color: #6f8276;
}

.inline-form {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 4px 8px 4px 0;
}

.inline-form input {
    min-width: 150px;
}

.admin-login-shell {
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding: 20px;
}

.admin-login-page {
    padding-top: 0;
    padding-bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(31, 143, 89, 0.14), transparent 28%),
        linear-gradient(180deg, #eef3f0 0%, #e6ece8 100%);
}

.admin-login-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
    gap: 14px;
    width: min(980px, 100%);
}

.admin-login-card {
    width: 100%;
    padding: 24px;
}

.admin-login-card h1 {
    margin: 16px 0 8px;
    color: #122019;
    font-size: clamp(1.8rem, 3.6vw, 2.6rem);
}

.admin-login-copy {
    color: #667a6e;
    line-height: 1.65;
    margin-bottom: 16px;
}

.admin-login-side {
    padding: 24px;
    border: 1px solid #dce4df;
    border-radius: 18px;
    background: linear-gradient(160deg, #1d8453, #116d43);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(17, 74, 48, 0.3);
}

.admin-login-side h2 {
    margin: 0 0 12px;
    font-size: clamp(1.4rem, 3vw, 2rem);
    line-height: 1.08;
}

.admin-login-side .eyebrow {
    margin-bottom: 14px;
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.35);
    color: #ffffff;
}

.admin-login-side ul {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
}

.admin-login-side li {
    color: rgba(255, 255, 255, 0.95);
}

.admin-main .site-form label span {
    color: #24362d;
    font-size: 0.86rem;
}

.admin-main .site-form input,
.admin-main .site-form select,
.admin-main .site-form textarea {
    border-color: #d8e1dc;
    border-radius: 12px;
    background: #ffffff;
}

.admin-main .site-form textarea {
    min-height: 110px;
}

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

.contact-info-panel,
.form-card {
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 44px rgba(16, 58, 159, 0.08);
}

.form-card {
    padding: 34px;
}

.contact-list {
    margin: 22px 0 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.8;
}

.section-compact {
    padding-top: 10px;
    padding-bottom: 10px;
}

.form-status {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px 22px;
    border-radius: 18px;
    border: 1px solid rgba(16, 58, 159, 0.16);
    background: rgba(255, 255, 255, 0.8);
}

.form-status.is-success {
    border-color: rgba(17, 128, 77, 0.28);
    background: rgba(231, 255, 243, 0.92);
}

.form-status.is-error {
    border-color: rgba(188, 64, 60, 0.28);
    background: rgba(255, 239, 238, 0.94);
}

.site-form {
    display: grid;
    gap: 18px;
    margin-top: 24px;
}

.site-form label {
    display: grid;
    gap: 8px;
}

.site-form label span {
    font-weight: 700;
    color: var(--text);
}

.site-form input,
.site-form select,
.site-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(16, 58, 159, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text);
    font: inherit;
}

.site-form textarea {
    resize: vertical;
}

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

.sales-quote-builder-panel .site-form {
    gap: 20px;
}

.sales-quote-company-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.sales-quote-company-box {
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid rgba(16, 58, 159, 0.15);
    background: rgba(255, 255, 255, 0.82);
}

.sales-quote-company-box h3 {
    margin: 0 0 8px;
    font-size: 1rem;
    color: #143d88;
}

.sales-quote-company-box p {
    margin: 4px 0;
}

.sales-quote-lines {
    display: grid;
    gap: 12px;
}

.sales-quote-lines .admin-table input,
.sales-quote-lines .admin-table select {
    min-width: 92px;
    padding: 10px 12px;
    border-radius: 12px;
}

.sales-quote-totals {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.sales-quote-totals > div {
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(16, 58, 159, 0.14);
    background: rgba(255, 255, 255, 0.84);
    display: grid;
    gap: 8px;
}

.sales-quote-totals strong {
    font-size: 1.2rem;
    color: #103a9f;
}

.sales-quote-payment-summary {
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(16, 58, 159, 0.16);
    background: rgba(226, 243, 255, 0.62);
}

.sales-quote-payment-summary p {
    margin: 8px 0;
}

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

.sales-quote-actions .button {
    width: 100%;
}

.sales-quote-recipient,
.sales-quote-margin {
    margin: 0;
}

.module-stage {
    position: relative;
    height: 100%;
    min-height: 420px;
    border-radius: 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at 22% 20%, rgba(255, 255, 255, 0.12), transparent 22%),
        linear-gradient(180deg, rgba(35, 69, 139, 0.98), rgba(15, 42, 104, 0.94));
}

.module-stage-badge {
    position: absolute;
    top: 26px;
    left: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #103a9f;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.module-stage-copy {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 26px;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.5;
    backdrop-filter: blur(10px);
}

.module-stage::after {
    content: "";
    position: absolute;
    right: 12%;
    bottom: 22%;
    width: 34%;
    height: 48%;
    border-radius: 28px 28px 18px 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(150, 214, 255, 0.3));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.module-stage::before {
    content: "";
    position: absolute;
    left: 18%;
    bottom: 18%;
    width: 16%;
    height: 22%;
    border-radius: 22px 22px 0 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(177, 228, 255, 0.28));
}

.module-stage-nol {
    background:
        radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.16), transparent 22%),
        linear-gradient(180deg, rgba(15, 75, 145, 0.96), rgba(8, 44, 103, 0.94));
}

.module-stage-gta {
    background:
        radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.16), transparent 22%),
        linear-gradient(180deg, rgba(33, 68, 152, 0.96), rgba(26, 48, 112, 0.94));
}

.module-stage-wtp {
    background:
        radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.16), transparent 22%),
        linear-gradient(180deg, rgba(19, 94, 164, 0.96), rgba(10, 55, 116, 0.94));
}

.module-stage-ptp {
    background:
        radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.16), transparent 22%),
        linear-gradient(180deg, rgba(22, 92, 170, 0.96), rgba(13, 54, 118, 0.94));
}

.module-stage-sbelc {
    background:
        radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.16), transparent 22%),
        linear-gradient(180deg, rgba(39, 89, 183, 0.96), rgba(24, 49, 120, 0.94));
}

.module-stage-mof {
    background:
        radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.16), transparent 22%),
        linear-gradient(180deg, rgba(31, 79, 156, 0.96), rgba(18, 47, 106, 0.94));
}

.module-stage-hardware {
    background:
        radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.16), transparent 22%),
        linear-gradient(180deg, rgba(42, 95, 175, 0.96), rgba(23, 51, 120, 0.94));
}

.module-stage-urb {
    background:
        radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.16), transparent 22%),
        linear-gradient(180deg, rgba(31, 84, 168, 0.96), rgba(13, 47, 110, 0.94));
}

@media (max-width: 1100px) {
    .admin-shell {
        grid-template-columns: 1fr;
        padding: 12px;
    }

    .admin-sidebar {
        position: static;
        height: auto;
    }

    .admin-main-login {
        justify-content: flex-start;
        padding: 0;
    }

    .admin-metrics,
    .admin-grid {
        grid-template-columns: 1fr;
    }

    .admin-content-row {
        grid-template-columns: 1fr;
    }

    .admin-content-preview {
        position: static;
        height: auto;
        min-height: auto;
    }

    .admin-content-row > .admin-panel {
        position: static;
        top: auto;
        height: auto;
        min-height: auto;
        max-height: none;
        overflow: visible;
    }

    .admin-content-preview-head {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-content-preview-actions {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .admin-preview-frame {
        width: 1280px;
        height: 1700px;
        transform: scale(0.46);
    }

    .admin-preview-modal-content {
        width: min(92vw, 1480px);
        height: min(86vh, 960px);
    }

    .admin-preview-modal-viewport {
        width: 196%;
        height: 2050px;
        transform: scale(0.5);
    }

    .hero-grid,
    .split-grid,
    .footer-grid,
    .cards-grid,
    .platform-band,
    .company-story,
    .product-hero,
    .product-layout,
    .feature-columns,
    .reference-grid,
    .office-grid,
    .form-grid,
    .contact-layout {
        grid-template-columns: 1fr 1fr;
    }

    .hero-grid {
        min-height: auto;
        padding: 58px 34px 38px;
    }

    .cta-panel {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-topbar {
        grid-template-columns: 1fr;
    }

    .admin-topbar-actions {
        flex-wrap: wrap;
    }

    .admin-user-pill {
        justify-self: start;
    }

    .platform-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .admin-main {
        padding: 0;
    }

    .admin-login-grid {
        grid-template-columns: 1fr;
    }

    .admin-header-login h1 {
        font-size: clamp(1.6rem, 7vw, 2.1rem);
    }

    .page-shell {
        padding-top: 108px;
    }

    .site-header {
        padding-top: 16px;
    }

    .site-nav {
        position: relative;
        padding: 14px 16px;
    }

    .nav-toggle {
        display: inline-block;
    }

    .nav-menu {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: 20px;
        background: rgba(8, 12, 24, 0.96);
    }

    .nav-menu .lang-switcher {
        width: 100%;
    }

    .nav-menu .lang-switcher-current {
        width: 100%;
        justify-content: flex-start;
        border-color: rgba(95, 201, 255, 0.22);
        background: rgba(20, 158, 229, 0.2);
        color: #dff4ff;
    }

    .nav-menu .lang-switcher-menu {
        position: static;
        margin-top: 8px;
        min-width: 0;
        border-color: rgba(95, 201, 255, 0.22);
        background: rgba(16, 46, 88, 0.9);
        box-shadow: none;
    }

    .nav-menu .lang-switcher-menu button {
        color: #dff4ff;
    }

    .nav-menu .lang-switcher-menu button:hover,
    .nav-menu .lang-switcher-menu button:focus-visible,
    .nav-menu .lang-switcher-menu button.is-active {
        background: rgba(95, 201, 255, 0.2);
        border-color: rgba(95, 201, 255, 0.24);
    }

    .nav-menu.is-open {
        display: flex;
    }

    .hero-section {
        padding-top: 42px;
    }

    .hero-grid,
    .split-grid,
    .cards-grid,
    .footer-grid,
    .platform-band,
    .cards-grid-2,
    .company-story,
    .product-hero,
    .product-layout,
    .feature-columns,
    .reference-grid,
    .office-grid,
    .form-grid,
    .contact-layout,
    .form-two-columns,
    .cards-grid-products,
    .sales-quote-company-grid,
    .sales-quote-totals,
    .sales-quote-actions {
        grid-template-columns: 1fr;
    }

    .hero-frame {
        border-radius: 26px;
    }

    .hero-copy h1 {
        max-width: 11ch;
        font-size: clamp(2.5rem, 11.5vw, 3.6rem);
    }

    .hero-metrics li {
        flex: 1 1 100%;
    }

    .visual-stage {
        min-height: 440px;
    }

    .visual-tech-watermark {
        inset: 8% 2% 8% 2%;
        opacity: 0.16;
    }

    .visual-growth {
        top: 118px;
        right: 10px;
        left: 40%;
        bottom: 12px;
        width: auto;
    }

    .visual-growth-chart {
        height: 100%;
        min-height: 240px;
        gap: 8px;
        padding: 10px 8px 0;
    }

    .visual-growth-label {
        width: 82px;
        font-size: 0.62rem;
    }

    .visual-bar-after::after {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        background-size: 72%, 100% 100%;
    }

    .visual-bar-before::after {
        width: 30px;
        height: 30px;
        border-radius: 9px;
        font-size: 1.05rem;
    }

    .visual-product-logo {
        top: 18px;
        left: 18px;
        width: 164px;
        max-width: 46%;
    }

    .button {
        width: 100%;
    }

    .hero-corner-top,
    .hero-corner-side {
        display: none;
    }

    .subhero-panel {
        padding: 28px;
    }

    .home-slider {
        padding: 12px 12px 54px;
    }

    .home-slider-track,
    .home-slide img {
        min-height: 240px;
    }

    .home-slide-layout {
        grid-template-columns: 1fr;
        min-height: 240px;
        padding: 16px;
    }

    .home-slide-layout-main {
        max-height: 190px;
    }

    .home-slide-layout-side {
        max-height: 210px;
    }

    .slider-arrow {
        width: 44px;
        height: 44px;
    }

    .slider-arrow-prev {
        left: 18px;
    }

    .slider-arrow-next {
        right: 18px;
    }

    .lightbox-content {
        width: min(96vw, 1600px);
        padding: 12px;
    }

    .lightbox-close {
        top: 14px;
        right: 14px;
        width: 46px;
        height: 46px;
    }

    .product-hero-copy,
    .product-overview,
    .product-note,
    .feature-card-premium,
    .insight-panel {
        padding: 24px;
    }

    .product-hero-visual {
        min-height: 420px;
    }

    .insight-copy {
        font-size: 1.45rem;
    }
}
