:root {
    --bg: #06121a;
    --bg-soft: #0d2330;
    --card: rgba(10, 30, 40, 0.8);
    --text: #e8f7f1;
    --muted: #a8c1cd;
    --brand: #21505b;
    --brand-2: #2eb2d1;
    --line: rgba(121, 160, 179, 0.24);
    --max: 1120px;
    --side-gap: clamp(12px, 2.8vw, 24px);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: radial-gradient(circle at 10% 10%, #153748 0%, var(--bg) 38%), var(--bg);
    color: var(--text);
    font-family: Manrope, sans-serif;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    position: relative;
}

.bg-orb {
    position: fixed;
    width: 45vw;
    height: 45vw;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: -1;
}

.orb-a {
    top: -18vw;
    left: -12vw;
    background: rgba(71, 145, 175, 0.2);
}

.orb-b {
    right: -16vw;
    bottom: -12vw;
    background: rgba(52, 107, 125, 0.18);
}

.container {
    width: min(var(--max), calc(100% - (var(--side-gap) * 2)));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    background: rgba(5, 17, 24, 0.82);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    z-index: 5;
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
}

.logo {
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 28px;
    height: 28px;
    display: block;
    filter: drop-shadow(0 0 6px rgba(33, 80, 91, 0.35));
}

.nav {
    display: flex;
    gap: 1.3rem;
    align-items: center;
}

.nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.3rem 0.55rem;
    border-radius: 999px;
    transition: color 0.2s ease;
}

.nav a:not(.btn):hover {
    color: var(--brand-2);
    background: transparent;
    transform: none;
}

.nav a.btn {
    color: #fff;
    border-radius: 12px;
    padding: 0.72rem 1.2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.nav a.btn.btn-sm {
    padding: 0.48rem 0.95rem;
}

.nav a.nav-trial {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    padding: 0.42rem 0.72rem;
    border-radius: 10px;
    border: 1px solid rgba(46, 178, 209, 0.55);
    background: rgba(9, 39, 57, 0.62);
    color: #7bd6ee;
    box-shadow: inset 0 0 0 1px rgba(46, 178, 209, 0.14);
}

.nav a.nav-trial span {
    font-size: 0.72rem;
    line-height: 1;
}

.nav a.nav-trial:hover {
    color: #bdf3ff;
    border-color: rgba(46, 178, 209, 0.78);
    background: rgba(12, 54, 76, 0.7);
}

.nav-item {
    position: relative;
}

.nav-link-btn {
    border: 0;
    background: transparent;
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    padding: 0;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    background: rgba(7, 24, 33, 0.96);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0.35rem;
    display: none;
    z-index: 20;
}

.dropdown-menu a {
    display: block;
    padding: 0.45rem 0.55rem;
    border-radius: 8px;
    font-size: 0.86rem;
}

.dropdown-menu a:hover {
    background: rgba(46, 178, 209, 0.14);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    display: block;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--text);
    border-radius: 12px;
    padding: 0.5rem 0.65rem;
    align-items: center;
    gap: 0.5rem;
    z-index: 80;
}

.menu-toggle-box {
    width: 20px;
    height: 14px;
    position: relative;
    display: inline-block;
}

.menu-toggle-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
    transition: transform 0.24s ease, opacity 0.2s ease, top 0.24s ease;
}

.menu-toggle-line:nth-child(1) { top: 0; }
.menu-toggle-line:nth-child(2) { top: 6px; }
.menu-toggle-line:nth-child(3) { top: 12px; }

.menu-toggle.is-active .menu-toggle-line:nth-child(1) {
    top: 6px;
    transform: rotate(45deg);
}

.menu-toggle.is-active .menu-toggle-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active .menu-toggle-line:nth-child(3) {
    top: 6px;
    transform: rotate(-45deg);
}

.menu-toggle-text {
    font-weight: 700;
    font-size: 0.88rem;
}

.hero {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 2.2rem;
    padding: 4.2rem 2rem 2.4rem;
    align-items: center;
    position: relative;
}

.top-video {
    padding-top: 1.2rem;
}

.video-frame {
    width: min(900px, 100%);
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #081822;
    box-shadow: 0 14px 36px rgba(4, 12, 18, 0.35);
}

.video-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.resources-main {
    padding-top: 1rem;
    padding-bottom: 2.2rem;
}

.resources-links {
    padding-top: 2rem;
}

.resources-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.full-showcase-wrap {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    padding: 0 var(--side-gap);
}

.full-showcase-inner {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 1rem;
    max-width: var(--max);
    margin: 0 auto;
}

.showcase-sidebar {
    background: #eef2f4;
    border: 1px solid #cfdae0;
    border-radius: 26px;
    padding: 1rem 0.8rem;
    color: #233845;
    display: flex;
    flex-direction: column;
}

.showcase-sidebar h3 {
    margin: 0 0 0.8rem;
    text-align: center;
    font-size: 2.3rem;
    color: #21505b;
}

.showcase-side-nav {
    display: grid;
    gap: 0.35rem;
}

.showcase-side-nav a {
    text-decoration: none;
    color: #223844;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    border-radius: 999px;
    padding: 0.6rem 0.8rem;
    font-weight: 700;
}

.showcase-side-nav a.active {
    background: #d7dee2;
}

.showcase-side-nav a span {
    width: 26px;
    text-align: center;
}

.showcase-side-nav a .side-icon {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #e6ecef;
    color: #21505b;
    flex-shrink: 0;
}

.showcase-side-nav a.active .side-icon {
    background: #21505b;
    color: #ffffff;
}

.showcase-side-nav a .side-icon svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.side-upgrade {
    margin-top: auto;
    text-decoration: none;
    text-align: center;
    background: #21505b;
    color: #fff;
    border-radius: 999px;
    padding: 0.65rem 0.9rem;
    font-weight: 800;
}

.side-exit {
    margin-top: 0.45rem;
    text-align: center;
    text-decoration: none;
    color: #6a767d;
    font-weight: 700;
}

.showcase-main {
    min-width: 0;
}

.hero-visual.hero-visual-wide {
    height: auto;
    min-height: 760px;
    animation: none;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background:
        linear-gradient(95deg, rgba(4, 14, 20, 0.84) 8%, rgba(4, 14, 20, 0.7) 56%, rgba(4, 14, 20, 0.86) 100%),
        radial-gradient(circle at 8% 72%, rgba(255, 187, 106, 0.2) 0, transparent 24%),
        radial-gradient(circle at 62% 18%, rgba(56, 126, 149, 0.24) 0, transparent 37%),
        linear-gradient(95deg, rgba(5, 18, 25, 0.9) 14%, rgba(5, 18, 25, 0.6) 58%, rgba(5, 18, 25, 0.9) 100%),
        linear-gradient(130deg, #0a1f2b 8%, #07141c 45%, #102837 100%);
    background-size: auto, auto, auto, auto, auto;
    background-position: center, center, center, center, center;
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
    pointer-events: none;
    z-index: 0;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero > .hero-drone-bg {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: min(1180px, 96vw);
    height: min(54%, 420px);
    transform: translateX(-50%);
    background: url("images/drone.png") center bottom / contain no-repeat;
    opacity: 0.22;
    filter: blur(0.8px);
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.9;
    background:
        radial-gradient(140% 90% at -8% 105%, transparent 62%, rgba(110, 199, 226, 0.2) 62.4% 63.2%, transparent 63.8%),
        radial-gradient(135% 95% at 8% 98%, transparent 58%, rgba(110, 199, 226, 0.18) 58.4% 59.1%, transparent 59.8%),
        radial-gradient(150% 95% at 30% -8%, transparent 64%, rgba(110, 199, 226, 0.17) 64.3% 65%, transparent 65.8%),
        radial-gradient(150% 95% at 48% 108%, transparent 67%, rgba(110, 199, 226, 0.15) 67.3% 68%, transparent 68.8%),
        radial-gradient(132% 90% at 78% 106%, transparent 61%, rgba(110, 199, 226, 0.18) 61.3% 62.1%, transparent 62.8%),
        radial-gradient(130% 95% at 108% 8%, transparent 66%, rgba(110, 199, 226, 0.18) 66.2% 67%, transparent 67.8%),
        radial-gradient(90% 80% at 20% 20%, rgba(149, 217, 239, 0.14), transparent 45%),
        radial-gradient(90% 80% at 82% 15%, rgba(149, 217, 239, 0.12), transparent 42%);
    mix-blend-mode: screen;
}

.pill {
    display: inline-block;
    border: 1px solid rgba(113, 186, 214, 0.56);
    color: #e0f3ff;
    border-radius: 999px;
    padding: 0.42rem 0.94rem;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1.1rem;
    background: rgba(8, 25, 35, 0.62);
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    font-family: "IBM Plex Sans Condensed", sans-serif;
    line-height: 1.1;
    margin: 0 0 0.8rem;
}

h1 {
    font-size: clamp(2.3rem, 5.2vw, 4.6rem);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    max-width: 15ch;
    margin-bottom: 0.6rem;
    line-height: 0.98;
}

.hl-blue {
    color: var(--brand-2);
}

.hero-sub-slogan {
    margin: 0 0 0.75rem;
    font-size: clamp(1.15rem, 2.1vw, 1.7rem);
    font-weight: 700;
    line-height: 1.05;
    color: #d8f4e8;
}

.hl-easy {
    display: inline-block;
    background: #e97c3b;
    color: #ffffff;
    padding: 0.02em 0.24em 0.05em;
    margin: 0 0.08em;
    border-radius: 2px;
    transform: skewX(-14deg);
}

.hl-easy::before {
    content: "";
}

.hl-easy {
    font-weight: 800;
}

p {
    color: var(--muted);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.25rem;
}

.btn {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    border: 0;
    border-radius: 12px;
    padding: 0.72rem 1.2rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line);
}

.btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 10px 24px rgba(46, 178, 209, 0.28);
}

.btn-ghost:hover {
    transform: translateY(-2px);
    border-color: rgba(46, 178, 209, 0.72);
    background: rgba(46, 178, 209, 0.12);
    box-shadow: 0 8px 20px rgba(46, 178, 209, 0.18);
}

.btn-sm {
    padding: 0.48rem 0.95rem;
}

.btn-access {
    box-shadow: 0 0 0 1px rgba(46, 178, 209, 0.32), 0 8px 20px rgba(46, 178, 209, 0.24);
    position: relative;
    padding-right: 2.95rem;
}

.btn-access::after {
    content: "\2933";
    position: absolute;
    right: 0.78rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    line-height: 1;
    font-weight: 900;
}

.btn-email::after {
    content: "\2197";
}

.contact-form.contact-form-plain .btn-email {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    justify-self: start;
    align-self: flex-start;
}

.nav a.btn.btn-sm.btn-access {
    padding-right: 2.7rem;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin-top: 1.6rem;
}

.hero-metrics article,
.card,
.price-card,
.hero-panel,
.contact-form,
.faq-item {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1rem;
}

.hero-metrics strong {
    display: block;
    color: var(--brand-2);
    font-size: 1.4rem;
}

.hero-metrics span {
    color: var(--muted);
    font-size: 0.85rem;
}

.hero-visual {
    border: 1px solid rgba(89, 199, 250, 0.35);
    background: linear-gradient(180deg, #d5dadd, #c7ced2);
    border-radius: 24px;
    box-shadow: 0 26px 45px rgba(2, 9, 14, 0.4);
    padding: 0.75rem;
    color: #1e2b33;
    height: 560px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    animation: heroFloat 6s ease-in-out infinite;
}

.hero-visual::before {
    content: "";
    position: absolute;
    top: 0;
    left: 14px;
    right: 14px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2eb2d1 0%, #6e8bff 100%);
    z-index: 2;
}

@keyframes heroFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

.mock-topbar {
    background: #eef2f4;
    border: 1px solid #cfd7dc;
    border-radius: 12px;
    padding: 0.55rem 0.7rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr auto;
    gap: 0.55rem;
    align-items: center;
}

.mock-label {
    margin: 0;
    font-size: 0.63rem;
    color: #627783;
    line-height: 1;
}

.mock-topbar strong {
    line-height: 1.15;
}

.mock-time {
    display: grid;
    justify-items: start;
    border-left: 1px solid #d5dde2;
    padding-left: 0.55rem;
}

.mock-time span {
    color: #607784;
    font-size: 0.7rem;
}

.mock-user span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #204f5d;
    color: #dff6ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.72rem;
}

.mock-tabs {
    margin-top: 0.65rem;
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.mock-tab {
    font-size: 0.73rem;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    background: #e6ecef;
    border: 1px solid #d1d9de;
    color: #445661;
    font-weight: 700;
    cursor: pointer;
}

.mock-tab.active {
    background: #1f5363;
    border-color: #1f5363;
    color: #ecfdff;
}

.mock-tab.is-disabled {
    opacity: 0.72;
    cursor: default;
}

.mock-pane {
    display: none;
}

.mock-pane.is-active {
    display: block;
    height: 100%;
    overflow: auto;
    padding-right: 0.12rem;
}

.mock-pane-wrap {
    margin-top: 0.6rem;
    flex: 1;
    min-height: 0;
}

.mock-kpis {
    margin-top: 0.65rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.mock-kpis article {
    background: #eef3f5;
    border: 1px solid #cfdae0;
    border-radius: 12px;
    padding: 0.6rem 0.7rem;
}

.mock-kpis p {
    margin: 0 0 0.2rem;
    color: #59717d;
    font-size: 0.72rem;
    line-height: 1.2;
}

.mock-kpis strong {
    font-size: 1.35rem;
    color: #102730;
    line-height: 1;
}

.mock-map {
    margin-top: 0.7rem;
    border-radius: 12px;
    border: 1px solid #c6d3da;
    height: 228px;
    position: relative;
    overflow: hidden;
}

.mock-map-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.mock-marker {
    display: none;
}

.mock-pilot-kpis {
    margin-top: 0.65rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.mock-pilot-kpis article {
    background: #eef3f5;
    border: 1px solid #cfdae0;
    border-radius: 12px;
    padding: 0.65rem 0.7rem;
}

.mock-pilot-kpis article.ok {
    background: #e8f3ee;
}

.mock-pilot-kpis article.warn {
    background: #f7f0de;
}

.mock-pilot-kpis article.danger {
    background: #f7e5e5;
}

.mock-pilot-kpis p {
    margin: 0 0 0.2rem;
    color: #5a727e;
    font-size: 0.7rem;
    line-height: 1.2;
}

.mock-pilot-kpis strong {
    font-size: 1.15rem;
    color: #132a34;
}

.mock-top-pilots {
    margin-top: 0.55rem;
    background: #edf2f5;
    border: 1px solid #ced9df;
    border-radius: 12px;
    padding: 0.55rem;
}

.mock-subtitle {
    margin: 0 0 0.45rem;
    font-size: 0.72rem;
    color: #5c7480;
    font-weight: 700;
}

.mock-podium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.45rem;
}

.mock-pilot-card {
    border: 1px solid #d1dae0;
    border-radius: 10px;
    background: #f6f8f9;
    padding: 0.45rem;
    text-align: center;
}

.mock-pilot-card .badge {
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #f1ba43;
    color: #513d14;
    font-size: 0.65rem;
    font-weight: 800;
}

.mock-pilot-card:nth-child(2) .badge {
    background: #c9d1da;
    color: #435261;
}

.mock-pilot-card:nth-child(3) .badge {
    background: #d99a5f;
    color: #503015;
}

.mock-pilot-card .avatar {
    width: 48px;
    height: 48px;
    margin: 0.35rem auto;
    border-radius: 50%;
    border: 3px solid #edbf36;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: #3b4f5d;
    font-size: 1.15rem;
    background: #fff;
}

.mock-pilot-card:nth-child(2) .avatar {
    border-color: #9ea9ba;
}

.mock-pilot-card:nth-child(3) .avatar {
    border-color: #cf8b46;
}

.mock-pilot-card strong {
    display: block;
    font-size: 0.9rem;
    color: #223745;
}

.mock-pilot-card p {
    margin: 0.1rem 0 0;
    color: #4f6573;
    font-size: 0.66rem;
    line-height: 1.25;
}

.mock-uas-panel {
    margin-top: 0.65rem;
    background: #edf2f5;
    border: 1px solid #ced9df;
    border-radius: 12px;
    padding: 0.55rem;
}

.mock-uas-filters {
    display: grid;
    grid-template-columns: 1fr 1fr auto auto;
    gap: 0.4rem;
    align-items: end;
}

.mock-select label {
    display: block;
    font-size: 0.62rem;
    color: #5e7581;
    margin-bottom: 0.12rem;
}

.mock-select span {
    display: block;
    background: #f7fafb;
    border: 1px solid #d3dce2;
    border-radius: 8px;
    padding: 0.35rem 0.5rem;
    font-size: 0.72rem;
    color: #243947;
    font-weight: 600;
}

.mock-btn {
    border-radius: 9px;
    padding: 0.36rem 0.62rem;
    border: 1px solid #d0dae0;
    background: #fff;
    color: #2f4654;
    font-size: 0.72rem;
    font-weight: 700;
}

.mock-btn.solid {
    background: #21505b;
    color: #fff;
    border-color: #21505b;
}

.mock-uas-table {
    margin-top: 0.55rem;
    border: 1px solid #d3dde2;
    border-radius: 10px;
    overflow: hidden;
}

.mock-uas-head,
.mock-uas-row {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr 1fr 0.9fr 1fr;
    gap: 0.35rem;
    padding: 0.42rem 0.5rem;
    font-size: 0.68rem;
    align-items: center;
}

.mock-uas-head {
    background: #f8fafb;
    color: #4f6674;
    font-weight: 700;
    border-bottom: 1px solid #d7e0e5;
}

.mock-uas-row {
    background: #ffffff;
    color: #213846;
    border-bottom: 1px solid #e7edf1;
}

.mock-uas-row:last-child {
    border-bottom: 0;
}

.tag {
    display: inline-block;
    padding: 0.2rem 0.46rem;
    border-radius: 999px;
    font-size: 0.64rem;
    font-weight: 700;
    text-align: center;
    width: fit-content;
}

.tag.ok {
    background: #dff2e8;
    color: #195a42;
}

.tag.warn {
    background: #f8edd3;
    color: #7b5a17;
}

.tag.off {
    background: #ececec;
    color: #5b6064;
}

.mock-uas-foot {
    margin: 0.42rem 0 0;
    font-size: 0.67rem;
    color: #5a707d;
    text-align: center;
    line-height: 1.25;
}

.mock-ops-kpis {
    margin-top: 0.65rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.mock-ops-kpis article {
    background: #eef3f5;
    border: 1px solid #cfdae0;
    border-radius: 12px;
    padding: 0.6rem 0.7rem;
}

.mock-ops-kpis article.ok { background: #e7f2ee; }
.mock-ops-kpis article.warn { background: #f7f0de; }
.mock-ops-kpis article.danger { background: #f7e5e5; }
.mock-ops-kpis article.late { border-color: #da8a51; }

.mock-ops-kpis p {
    margin: 0 0 0.2rem;
    color: #5b727f;
    font-size: 0.7rem;
}

.mock-ops-kpis strong {
    font-size: 1.15rem;
    color: #142b36;
    line-height: 1;
}

.mock-ops-table-wrap {
    margin-top: 0.55rem;
    background: #edf2f5;
    border: 1px solid #ced9df;
    border-radius: 12px;
    padding: 0.55rem;
}

.mock-ops-head {
    margin-bottom: 0.4rem;
}

.mock-ops-tools {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.4rem;
}

.mock-ops-tools input {
    border: 1px solid #d2dce2;
    border-radius: 10px;
    padding: 0.38rem 0.55rem;
    background: #f9fbfc;
    color: #4b6371;
    font-size: 0.72rem;
}

.mock-ops-table {
    border: 1px solid #d3dde2;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.mock-ops-row {
    display: grid;
    grid-template-columns: 0.95fr 1.1fr 2fr 1fr 0.6fr 1fr;
    gap: 0.35rem;
    padding: 0.38rem 0.5rem;
    font-size: 0.67rem;
    align-items: center;
    color: #263c49;
    border-bottom: 1px solid #e7edf1;
}

.mock-ops-row:last-child {
    border-bottom: 0;
}

.mock-ops-title {
    background: #f8fafb;
    color: #4f6674;
    font-weight: 700;
}

.mock-maint,
.mock-corrective {
    margin-top: 0.65rem;
    background: #edf2f5;
    border: 1px solid #ced9df;
    border-radius: 12px;
    padding: 0.55rem;
}

.mock-maint-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.6rem;
}

.mock-maint-head span {
    font-size: 0.66rem;
    color: #607784;
    font-weight: 700;
}

.mock-maint-score {
    margin-top: 0.2rem;
    display: flex;
    align-items: baseline;
    gap: 0.45rem;
}

.mock-maint-score strong {
    font-size: 1.8rem;
    color: #132a34;
    line-height: 1;
}

.mock-maint-score span {
    font-size: 0.9rem;
    color: #4f6572;
    font-weight: 700;
}

.mock-maint-bar {
    margin-top: 0.45rem;
    display: grid;
    grid-template-columns: 78fr 17fr 5fr;
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid #d2dce2;
}

.mock-maint-bar span {
    text-align: center;
    font-size: 0.64rem;
    font-weight: 700;
    padding: 0.27rem 0.2rem;
    color: #fff;
    white-space: nowrap;
}

.mock-maint-bar .ok { background: #36a576; }
.mock-maint-bar .warn { background: #f2b733; color: #624615; }
.mock-maint-bar .danger { background: #e35a5a; }

.mock-maint-list {
    margin-top: 0.45rem;
    display: grid;
    gap: 0.26rem;
}

.mock-maint-list > div {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 0.36rem;
    align-items: center;
    border: 1px solid #d6e0e6;
    border-radius: 10px;
    padding: 0.28rem 0.42rem;
    background: #f9fbfc;
    font-size: 0.68rem;
}

.mock-maint-list .dot {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    display: inline-block;
}

.mock-maint-list .dot.ok { background: #36a576; }
.mock-maint-list .dot.warn { background: #f2b733; }
.mock-maint-list .dot.danger { background: #e35a5a; }

.mock-maint-list span { color: #334955; font-weight: 700; }
.mock-maint-list strong { color: #1f3642; }
.mock-maint-list em { font-style: normal; color: #617987; font-weight: 700; }

.mock-corrective .bars {
    margin-top: 0.32rem;
    height: 116px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0.24rem;
    align-items: end;
}

.mock-corrective .bars span {
    display: block;
    height: var(--h);
    border-radius: 7px 7px 3px 3px;
    background: #f2b733;
}

.mock-corrective .months {
    margin-top: 0.28rem;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0.2rem;
}

.mock-corrective .months span {
    text-align: center;
    font-size: 0.59rem;
    color: #617786;
    font-weight: 700;
}

.app-badges {
    margin-top: 2rem;
    padding-bottom: 1.3rem;
    text-align: center;
}

.app-badges-label {
    margin: 0 0 0.7rem;
    color: var(--brand-2);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 0.76rem;
    font-weight: 700;
}

.app-badges-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.app-badges-row a {
    display: inline-flex;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(120, 188, 162, 0.3);
    background: rgba(255, 255, 255, 0.03);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.app-badges-row a:hover {
    transform: translateY(-2px);
    border-color: rgba(120, 188, 214, 0.58);
}

.app-badges-row img {
    display: block;
    height: 56px;
    width: auto;
    background: #fff;
}

.section {
    padding: 4.2rem 0 0;
}

.section-head {
    margin-bottom: 1.5rem;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-weight: 700;
    font-size: 0.78rem;
    color: var(--brand-2);
    margin-bottom: 0.4rem;
}

.section h2 {
    font-size: clamp(1.8rem, 3.4vw, 2.8rem);
    text-transform: uppercase;
}

.highlight-card {
    border-left: 3px solid var(--brand-2);
}

.muted-note {
    font-size: 0.92rem;
    opacity: 0.9;
}

.grid {
    display: grid;
    gap: 1rem;
}

.feature-card .feature-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 0.55rem;
    color: #e26a16;
}

.feature-card .feature-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.price-card.featured {
    border-color: rgba(96, 160, 186, 0.52);
    transform: translateY(-6px) scale(1.02);
}

.price {
    color: var(--text);
    font-weight: 800;
    margin: 0.7rem 0 0.35rem;
}

.pricing-grid .price-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 1.1rem;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-grid .price-card:hover {
    transform: translateY(-3px);
    border-color: rgba(120, 188, 214, 0.42);
    box-shadow: 0 18px 35px rgba(3, 12, 18, 0.34);
}

.plan-header {
    margin-bottom: 0.35rem;
}

.plan-kicker {
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--brand-2);
    margin: 0 0 0.25rem;
}

.plan-header h3 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.95rem;
}

.plan-badge {
    border: 1px solid rgba(96, 160, 186, 0.5);
    background: rgba(52, 107, 125, 0.18);
    color: #d9f6ff;
    border-radius: 999px;
    padding: 0.18rem 0.58rem;
    font-size: 0.67rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: Manrope, sans-serif;
}

.price-amount {
    font-size: 3rem;
    line-height: 1;
    font-family: "IBM Plex Sans Condensed", sans-serif;
}

.price-currency {
    font-size: 1.15rem;
    letter-spacing: 0.8px;
}

.price-period {
    font-size: 0.92rem;
    color: var(--muted);
    margin-left: 0.15rem;
}

.plan-note {
    margin: 0 0 1rem;
    font-size: 0.92rem;
}

.price-card ul,
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem;
}

.price-card li,
.plan-features li {
    position: relative;
    padding: 0.43rem 0 0.43rem 1.28rem;
    color: #c4daea;
    border-bottom: 1px dashed rgba(166, 208, 231, 0.16);
}

.price-card li::before,
.plan-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.9rem;
    width: 0.48rem;
    height: 0.48rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.price-card li:last-child,
.plan-features li:last-child {
    border-bottom: 0;
}

.plan-cta {
    width: 100%;
    text-align: center;
    margin-top: auto;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
}

.price-card.featured {
    background:
        radial-gradient(circle at 80% 0%, rgba(96, 160, 186, 0.14), transparent 45%),
        var(--card);
    border-color: rgba(96, 160, 186, 0.92);
    box-shadow:
        0 0 0 1px rgba(46, 178, 209, 0.26),
        0 22px 44px rgba(46, 178, 209, 0.22);
    position: relative;
}

.price-card.featured::before {
    content: "MÁS VENDIDO";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.18rem 0.62rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #2eb2d1, #6a79ff);
    color: #fff;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    box-shadow: 0 8px 16px rgba(46, 178, 209, 0.28);
}

.faq-hub {
    padding: 1rem;
}

.faq-toolbar {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0.9rem;
    margin-bottom: 0.85rem;
}

.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    align-items: center;
}

.faq-categories-title {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #e7f2f6;
}

.faq-categories-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem;
    border-radius: 999px;
    border: 1px solid rgba(112, 164, 181, 0.26);
    background: rgba(8, 23, 33, 0.7);
}

.faq-chip,
.faq-tag {
    border: 1px solid rgba(112, 164, 181, 0.3);
    background: rgba(7, 24, 33, 0.64);
    color: #cfe2ea;
    border-radius: 999px;
    padding: 0.42rem 0.8rem;
    font: inherit;
    font-size: 0.84rem;
    font-weight: 700;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.faq-chip {
    padding: 0.48rem 0.9rem;
}

.faq-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
}

.faq-tag::before {
    content: "";
    width: 0.68rem;
    height: 0.68rem;
    display: inline-block;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.6 13.4l-7.2 7.2a2 2 0 0 1-2.8 0L3.4 13.4a2 2 0 0 1 0-2.8l7.2-7.2a2 2 0 0 1 2.8 0l7.2 7.2a2 2 0 0 1 0 2.8zM8 10a2 2 0 1 0 0-4 2 2 0 0 0 0 4z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.6 13.4l-7.2 7.2a2 2 0 0 1-2.8 0L3.4 13.4a2 2 0 0 1 0-2.8l7.2-7.2a2 2 0 0 1 2.8 0l7.2 7.2a2 2 0 0 1 0 2.8zM8 10a2 2 0 1 0 0-4 2 2 0 0 0 0 4z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.faq-chip:hover,
.faq-tag:hover {
    transform: translateY(-1px);
    border-color: rgba(46, 178, 209, 0.5);
}

.faq-chip.is-active,
.faq-tag.is-active {
    background: linear-gradient(135deg, rgba(46, 178, 209, 0.28), rgba(46, 178, 209, 0.1));
    border-color: rgba(46, 178, 209, 0.65);
    color: #e8fbff;
}

.faq-search input {
    width: 100%;
    border-radius: 999px;
    padding: 0.65rem 0.95rem;
    border: 1px solid rgba(112, 164, 181, 0.38);
    background: rgba(7, 24, 33, 0.72);
    color: #e8f3f7;
}

.faq-search input::placeholder {
    color: #8eaebc;
}

.faq-tag-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 0.95rem;
}

.faq-list {
    display: grid;
    gap: 0.72rem;
}

.faq-item {
    padding: 0.85rem 0.95rem;
    background: linear-gradient(180deg, rgba(7, 24, 33, 0.68), rgba(6, 18, 28, 0.68));
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.7rem;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-question {
    font-size: 1.03rem;
    flex: 1 1 auto;
}

.faq-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(112, 164, 181, 0.34);
    background: rgba(12, 32, 45, 0.7);
    display: inline-grid;
    place-items: center;
    flex-shrink: 0;
}

.faq-arrow svg {
    width: 16px;
    height: 16px;
    stroke: #d6e9ef;
    fill: none;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.2s ease;
}

.faq-item[open] .faq-arrow svg {
    transform: rotate(90deg);
}

.faq-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.45rem;
}

.faq-badge,
.faq-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
    border-radius: 999px;
    padding: 0.22rem 0.58rem;
    font-size: 0.72rem;
    border: 1px solid rgba(112, 164, 181, 0.32);
}

.faq-badge::before,
.faq-pill::before {
    content: "";
    width: 0.68rem;
    height: 0.68rem;
    display: inline-block;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.6 13.4l-7.2 7.2a2 2 0 0 1-2.8 0L3.4 13.4a2 2 0 0 1 0-2.8l7.2-7.2a2 2 0 0 1 2.8 0l7.2 7.2a2 2 0 0 1 0 2.8zM8 10a2 2 0 1 0 0-4 2 2 0 0 0 0 4z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.6 13.4l-7.2 7.2a2 2 0 0 1-2.8 0L3.4 13.4a2 2 0 0 1 0-2.8l7.2-7.2a2 2 0 0 1 2.8 0l7.2 7.2a2 2 0 0 1 0 2.8zM8 10a2 2 0 1 0 0-4 2 2 0 0 0 0 4z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.faq-badge {
    background: rgba(46, 178, 209, 0.17);
    color: #ccefff;
}

.faq-pill {
    background: rgba(14, 39, 53, 0.66);
    color: #bfd3dc;
}

.faq-list p {
    margin-top: 0.62rem;
    color: #bfd4df;
}

.faq-empty {
    margin: 0.7rem 0 0;
    color: #9fc0cd;
}

.download-app {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 1.1rem;
    align-items: center;
    padding: 1.2rem;
}

.download-copy h2 {
    margin-bottom: 0.55rem;
}

.download-copy .app-badges-row {
    justify-content: flex-start;
    margin-top: 0.9rem;
}

.download-media {
    display: grid;
    place-items: center;
}

.download-media img {
    width: min(100%, 220px);
    height: auto;
    display: block;
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    align-items: start;
}

.contact-prepanel {
    margin: 0.4rem 0 0.2rem;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(122, 161, 180, 0.25);
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(8, 26, 37, 0.88);
    box-shadow: 0 14px 34px rgba(5, 14, 21, 0.34);
}

.contact-prepanel-left {
    padding: 1.3rem 1.3rem 1.1rem;
    color: #d7ebf3;
}

.contact-prepanel-right {
    padding: 1.3rem 1.3rem 1.1rem;
    background: linear-gradient(160deg, rgba(39, 99, 115, 0.95), rgba(49, 117, 134, 0.95));
    color: #eaf7fb;
}

.contact-prepanel-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.7rem;
    font-family: "Poppins", sans-serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: #e7f7fd;
}

.contact-prepanel-pill {
    display: inline-flex;
    margin: 0.1rem 0 0.8rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: #d5722a;
    color: #fff;
    font-weight: 800;
    font-size: 0.88rem;
}

.contact-prepanel h3 {
    margin: 0 0 0.4rem;
    color: inherit;
}

.contact-prepanel p {
    margin: 0 0 0.7rem;
    color: inherit;
    opacity: 0.9;
}

.contact-prepanel-list,
.contact-prepanel-checks {
    list-style: none;
    padding: 0;
    margin: 0 0 0.9rem;
    display: grid;
    gap: 0.45rem;
}

.contact-prepanel-list li,
.contact-prepanel-checks li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.contact-prepanel-list .ok,
.contact-prepanel-checks span {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.78rem;
    font-weight: 800;
}

.contact-prepanel-list .ok {
    background: rgba(161, 225, 195, 0.24);
    color: #8de4b7;
}

.contact-prepanel-checks span {
    background: rgba(233, 248, 255, 0.18);
    color: #d8edf5;
}

.trial-section {
    padding-bottom: 0.35rem;
}

.trial-section + #contacto {
    padding-top: 0.95rem;
}

.trial-hero {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(121, 160, 179, 0.34);
    padding: 1.5rem 1.2rem 1.1rem;
    background:
        radial-gradient(circle at 10% 85%, rgba(84, 102, 255, 0.38), transparent 34%),
        radial-gradient(circle at 82% 14%, rgba(255, 121, 89, 0.34), transparent 32%),
        linear-gradient(135deg, #4a1e78 0%, #12314a 48%, #246072 100%);
    box-shadow: 0 16px 40px rgba(4, 12, 19, 0.42);
}

.trial-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.16), transparent 34%),
        radial-gradient(circle at 78% 72%, rgba(255, 255, 255, 0.1), transparent 30%);
    pointer-events: none;
}

.trial-copy {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 760px;
    margin: 0 auto 1.1rem;
}

.trial-kicker {
    margin: 0 auto 0.7rem;
    display: inline-flex;
    padding: 0.36rem 0.78rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    color: #f3f7fb;
    font-weight: 800;
    font-size: 0.85rem;
}

.trial-copy h3 {
    margin: 0 0 0.45rem;
    font-size: clamp(1.9rem, 4.2vw, 3.3rem);
    line-height: 1.04;
    color: #ffffff;
}

.trial-copy p {
    margin: 0 auto 0.9rem;
    max-width: 52ch;
    color: #d8e9f0;
    font-size: 1.02rem;
}

.trial-mock {
    position: relative;
    z-index: 1;
    max-width: 980px;
    margin: 0 auto;
    height: 248px;
}

.trial-desktop {
    position: absolute;
    inset: 0 190px 0 0;
    border-radius: 18px;
    border: 1px solid rgba(232, 245, 252, 0.35);
    background: linear-gradient(180deg, rgba(18, 45, 62, 0.9), rgba(10, 30, 44, 0.94));
    backdrop-filter: blur(5px);
    padding: 0.7rem;
}

.trial-desktop-top {
    height: 32px;
    border-radius: 10px;
    background: rgba(219, 236, 245, 0.14);
    margin-bottom: 0.55rem;
    display: flex;
    align-items: center;
    gap: 0.34rem;
    padding: 0 0.45rem;
}

.trial-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(219, 236, 245, 0.8);
}

.trial-search {
    margin-left: auto;
    width: 26%;
    height: 9px;
    border-radius: 999px;
    background: rgba(219, 236, 245, 0.3);
}

.trial-desktop-main {
    display: grid;
    grid-template-columns: 132px 1fr;
    gap: 0.55rem;
    height: calc(100% - 38px);
}

.trial-desktop-side {
    border-radius: 12px;
    background: rgba(7, 20, 30, 0.48);
    border: 1px solid rgba(226, 242, 250, 0.16);
    padding: 0.4rem;
    display: grid;
    gap: 0.26rem;
}

.trial-desktop-side span {
    display: block;
    border-radius: 999px;
    padding: 0.22rem 0.42rem;
    font-size: 0.62rem;
    color: #d4e8f0;
    font-weight: 700;
}

.trial-desktop-side span.active {
    background: rgba(46, 178, 209, 0.26);
    color: #f5fdff;
}

.trial-desktop-content {
    display: grid;
    grid-template-rows: auto auto 1fr;
    gap: 0.42rem;
}

.trial-desktop-tabs {
    display: flex;
    gap: 0.3rem;
    flex-wrap: wrap;
}

.trial-desktop-tabs span {
    border-radius: 999px;
    padding: 0.16rem 0.46rem;
    font-size: 0.58rem;
    color: #d8e9f1;
    background: rgba(213, 232, 242, 0.16);
    font-weight: 700;
}

.trial-desktop-tabs span.active {
    background: rgba(46, 178, 209, 0.24);
    color: #f4fdff;
}

.trial-desktop-kpis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.32rem;
}

.trial-desktop-kpis article {
    border-radius: 10px;
    background: rgba(6, 18, 28, 0.62);
    border: 1px solid rgba(223, 240, 248, 0.14);
    padding: 0.3rem 0.38rem;
}

.trial-desktop-kpis p {
    margin: 0;
    font-size: 0.53rem;
    color: #aac5d1;
}

.trial-desktop-kpis strong {
    color: #dff4fb;
    font-size: 0.95rem;
    line-height: 1.05;
}

.trial-desktop-list {
    border-radius: 10px;
    border: 1px solid rgba(226, 243, 251, 0.14);
    background: rgba(6, 18, 28, 0.54);
    padding: 0.3rem;
    display: grid;
    gap: 0.24rem;
}

.trial-desktop-list span {
    display: block;
    height: 9px;
    border-radius: 999px;
    background: rgba(218, 236, 245, 0.2);
}

.trial-desktop-list span:nth-child(2),
.trial-desktop-list span:nth-child(4) {
    width: 85%;
}

.trial-mobile {
    position: absolute;
    right: 0;
    bottom: 4px;
    width: 178px;
    height: 236px;
    border-radius: 28px;
    border: 1px solid rgba(226, 242, 250, 0.48);
    background: linear-gradient(175deg, rgba(13, 35, 50, 0.97), rgba(8, 24, 35, 0.98));
    box-shadow: 0 14px 30px rgba(4, 12, 18, 0.5), inset 0 0 0 2px rgba(179, 214, 231, 0.08);
    padding: 0.62rem 0.58rem;
    display: grid;
    grid-template-rows: auto auto auto 1fr auto;
    gap: 0.4rem;
}

.trial-mobile-notch {
    width: 46%;
    height: 10px;
    border-radius: 999px;
    background: rgba(214, 233, 243, 0.26);
    margin: 0.02rem auto 0;
}

.trial-mobile-header {
    border-radius: 10px;
    background: rgba(221, 238, 246, 0.14);
    padding: 0.26rem 0.34rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.3rem;
}

.trial-mobile-header span {
    font-size: 0.62rem;
    color: #d7ebf3;
    font-weight: 700;
}

.trial-mobile-header b {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 178, 209, 0.3);
    color: #f5fdff;
    font-size: 0.58rem;
}

.trial-mobile-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.22rem;
}

.trial-mobile-cards span {
    display: block;
    height: 34px;
    border-radius: 9px;
    background: rgba(220, 237, 246, 0.2);
}

.trial-mobile-lines {
    display: grid;
    gap: 0.25rem;
}

.trial-mobile-lines span {
    display: block;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
}

.trial-mobile-lines span:nth-child(2),
.trial-mobile-lines span:nth-child(4) {
    width: 82%;
}

.trial-mobile-nav {
    display: flex;
    justify-content: center;
    gap: 0.28rem;
}

.trial-mobile-nav span {
    width: 18px;
    height: 4px;
    border-radius: 999px;
    background: rgba(223, 240, 249, 0.22);
}

.trial-mobile-nav span.active {
    background: rgba(46, 178, 209, 0.65);
}

.seo-content {
    padding: 1.2rem;
}

.seo-content h3 {
    margin-top: 1.3rem;
    margin-bottom: 0.55rem;
    font-size: clamp(1.2rem, 2.2vw, 1.5rem);
}

.seo-content p {
    margin: 0 0 0.6rem;
    color: #c7dde7;
}

.seo-content ul {
    margin: 0.3rem 0 0.85rem;
    padding-left: 1.2rem;
    color: #d3e7ef;
}

.seo-content li {
    margin-bottom: 0.3rem;
}

.seo-fold {
    margin-top: 0.8rem;
}

.seo-fold > summary {
    list-style: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--brand-2);
    font-weight: 800;
    user-select: none;
}

.seo-fold > summary::-webkit-details-marker {
    display: none;
}

.seo-fold > summary::before {
    content: ">";
    display: inline-block;
    transform: rotate(0deg);
    transition: transform 0.2s ease;
}

.seo-fold[open] > summary::before {
    transform: rotate(90deg);
}

.seo-fold > h3:first-of-type {
    margin-top: 0.85rem;
}

.contact-form {
    display: grid;
    gap: 0.7rem;
}




.contact-form.contact-form-plain {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    align-content: start;
    margin-top: 0.9rem;
}

.contact-form label {
    display: grid;
    gap: 0.35rem;
    font-weight: 600;
}

.contact-data {
    margin-top: 0.8rem;
}

.contact-data a {
    color: var(--brand-2);
    text-decoration: none;
    font-weight: 700;
}

input,
textarea {
    border: 1px solid var(--line);
    background: rgba(4, 16, 23, 0.9);
    color: var(--text);
    border-radius: 10px;
    padding: 0.7rem;
    font: inherit;
}

.form-ok,
.form-error {
    padding: 0.7rem;
    border-radius: 10px;
    margin: 0;
    font-weight: 700;
}

.form-ok {
    background: rgba(96, 160, 186, 0.14);
    color: #b7ffe9;
}

.form-error {
    background: rgba(255, 88, 88, 0.13);
    color: #ffbebe;
}

.site-footer {
    margin-top: 4rem;
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--line);
    background:
        radial-gradient(1200px 360px at 10% 10%, rgba(46, 178, 209, 0.08), transparent 60%),
        linear-gradient(180deg, rgba(5, 18, 27, 0.88), rgba(3, 12, 18, 0.96));
}

.site-footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.footer-brand p {
    margin: 1rem 0 0;
    color: var(--muted);
    max-width: 32ch;
}

.site-footer h3 {
    margin: 0 0 0.9rem;
    color: var(--text);
    font-size: 1.1rem;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.55rem;
}

.site-footer a {
    color: var(--muted);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--brand-2);
}

.site-footer-bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(80, 132, 145, 0.2);
    color: #8aaeb7;
    font-size: 0.92rem;
}

.site-footer-bottom p {
    margin: 0;
}

.legal-main {
    padding-top: 6.5rem;
}

.legal-page .section-head {
    margin-bottom: 1rem;
}

.legal-content {
    padding: 1.4rem;
    line-height: 1.7;
}

.legal-content h1,
.legal-content h2,
.legal-content h3 {
    color: var(--text);
    margin-top: 1.4rem;
}

.legal-content a {
    color: var(--brand-2);
}

.legal-content p,
.legal-content li {
    color: #c6dde4;
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 960px) {
    .hero,
    .cols-3,
    .cols-2,
    .contact-wrap,
    .download-app {
        grid-template-columns: 1fr;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 3.3rem 1rem 1.2rem;
    }

    .hero-visual {
        height: 620px;
    }

    .mock-topbar {
        grid-template-columns: 1fr 1fr auto;
    }

    .mock-map {
        height: 200px;
    }

    .mock-pilot-kpis,
    .mock-podium {
        grid-template-columns: 1fr;
    }

    .mock-uas-filters {
        grid-template-columns: 1fr 1fr;
    }

    .mock-uas-head,
    .mock-uas-row {
        grid-template-columns: 1fr 1fr;
        row-gap: 0.2rem;
    }

    .mock-ops-kpis {
        grid-template-columns: 1fr 1fr;
    }

    .mock-ops-row {
        grid-template-columns: 1fr 1fr;
        row-gap: 0.2rem;
    }

    .mock-maint-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .mock-maint-list > div {
        grid-template-columns: auto 1fr auto;
    }

    .mock-maint-list em {
        display: none;
    }

    .full-showcase-inner {
        grid-template-columns: 1fr;
    }

    .showcase-sidebar {
        border-radius: 18px;
    }

    .showcase-sidebar h3 {
        font-size: 1.8rem;
    }

    .hero-visual.hero-visual-wide {
        min-height: 620px;
    }

    .menu-toggle {
        display: inline-block;
        border: 0;
        background: transparent;
        padding: 0.45rem;
    }

    .nav {
        position: fixed;
        inset: 0;
        background: #030b12;
        padding: 6.2rem 1.2rem 1.2rem;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 1.35rem;
        display: none;
        z-index: 85;
        width: 100vw;
        height: 100dvh;
    }

    .nav-item {
        width: min(440px, 100%);
    }

    .nav-link-btn {
        padding: 0;
    }

    .dropdown-menu {
        position: static;
        display: block;
        min-width: 0;
        margin-top: 0.4rem;
    }

    .nav.open {
        display: flex;
        background: #030b12;
    }

    .nav a {
        font-size: 2rem;
        line-height: 1.15;
        padding: 0.38rem 0.72rem;
    }

    body.nav-open {
        overflow: hidden;
    }

    body.nav-open::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(1, 7, 12, 0.9);
        z-index: 80;
    }

    .site-header {
        z-index: 90;
    }

    .menu-toggle {
        z-index: 95;
    }

    .app-badges-row img {
        height: 50px;
    }

    .site-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .faq-toolbar {
        grid-template-columns: 1fr;
    }

    .faq-item summary {
        grid-template-columns: auto 1fr;
        align-items: flex-start;
    }

    .faq-meta {
        grid-column: 2 / -1;
        justify-content: flex-start;
        margin-left: 0;
    }
}

@media (max-width: 640px) {
    .site-footer-grid {
        grid-template-columns: 1fr;
    }

    .contact-prepanel {
        grid-template-columns: 1fr;
    }

    .trial-hero {
        padding: 1.15rem 0.9rem 0.9rem;
    }

    .trial-copy h3 {
        font-size: clamp(1.55rem, 7.2vw, 2.1rem);
    }

    .trial-mock {
        height: 190px;
    }

    .trial-desktop {
        inset: 0 118px 0 0;
    }

    .trial-mobile {
        width: 106px;
        height: 180px;
        border-radius: 20px;
        padding: 0.45rem 0.4rem;
    }

    .trial-desktop-main {
        grid-template-columns: 92px 1fr;
    }

    .trial-desktop-side span {
        font-size: 0.53rem;
    }

    .trial-desktop-kpis strong {
        font-size: 0.8rem;
    }

    .trial-mobile-cards span {
        height: 24px;
    }

    .trial-mobile-header span {
        font-size: 0.53rem;
    }

    .trial-mobile-header b {
        width: 16px;
        height: 16px;
        font-size: 0.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-visual {
        animation: none;
    }

    .wa-float,
    .wa-float::before,
    .wa-float::after {
        animation: none;
    }
}

.wa-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: linear-gradient(135deg, #28d366, #20b458);
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    padding: 0.55rem 1rem 0.55rem 0.6rem;
    box-shadow: 0 12px 28px rgba(13, 89, 44, 0.38);
    overflow: visible;
    animation: waBlink 2.1s ease-in-out infinite;
}

.wa-float::before,
.wa-float::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 999px;
    border: 2px solid rgba(57, 255, 135, 0.58);
    z-index: -1;
    animation: waWave 2.8s ease-out infinite;
}

.wa-float::after {
    animation-delay: 1.1s;
}

.wa-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.wa-icon svg {
    width: 26px;
    height: 26px;
    fill: #fff;
}

.wa-text {
    display: grid;
    line-height: 1.04;
    font-size: 0.98rem;
    white-space: nowrap;
}

.wa-text strong {
    font-size: 0.82rem;
    font-weight: 700;
    opacity: 0.94;
}

@keyframes waWave {
    0% { transform: scale(1); opacity: 0.55; }
    100% { transform: scale(1.18); opacity: 0; }
}

@keyframes waBlink {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.1); }
}

@media (max-width: 960px) {
    .wa-float {
        right: 12px;
        bottom: 12px;
        padding-right: 0.85rem;
        gap: 0.55rem;
    }

    .wa-text {
        font-size: 0.9rem;
    }

    .wa-text strong {
        font-size: 0.75rem;
    }
}



