:root {
    --bg: #f5f8ff;
    --surface: #ffffff;
    --surface-soft: rgba(255, 255, 255, 0.72);
    --text: #10223f;
    --muted: #5d6d86;
    --line: rgba(17, 46, 92, 0.12);
    --line-strong: rgba(17, 46, 92, 0.2);
    --blue: #2e6af3;
    --blue-dark: #1550e0;
    --blue-soft: rgba(46, 106, 243, 0.1);
    --green: #1d9d61;
    --orange: #f58a1f;
    --violet: #7e58e6;
    --cyan: #2ca7df;
    --footer: #081731;
    --footer-2: #0d2142;
    --shadow-lg: 0 24px 80px rgba(14, 28, 54, 0.15);
    --shadow-md: 0 16px 40px rgba(14, 28, 54, 0.11);
    --shadow-sm: 0 10px 24px rgba(14, 28, 54, 0.08);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 20% 0%, rgba(46, 106, 243, 0.12), transparent 34%),
        radial-gradient(circle at 80% 10%, rgba(46, 106, 243, 0.08), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f7f9ff 35%, #eef4ff 100%);
}

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

img, svg {
    display: block;
}

button,
input,
textarea {
    font: inherit;
}

.page-shell {
    min-height: 100vh;
    overflow: hidden;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(18, 49, 93, 0.08);
}

.header-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand-image {
    display: grid;
    place-items: center;
    flex: none;
    width: 42px;
}

.brand-copy strong,
.footer-brand h3 {
    display: block;
    font-size: 1.22rem;
    line-height: 1;
    letter-spacing: -0.05em;
}

.brand-copy small,
.footer-brand p {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.88rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    position: relative;
    padding: 12px 16px;
    color: #1b2f50;
    font-weight: 600;
    border-radius: 14px;
    transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
    color: var(--blue);
    background: rgba(46, 106, 243, 0.08);
}

.nav-link.is-active::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 4px;
    height: 2px;
    border-radius: 999px;
    background: var(--blue);
}

.nav-button {
    border: 0;
    background: transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.chevron {
    width: 18px;
    height: 18px;
}

.nav-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    width: 340px;
    padding: 12px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(18, 49, 93, 0.12);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.2s ease;
    display: grid;
    gap: 8px;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel,
.nav-dropdown.is-open .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 16px;
    transition: background 0.18s ease;
}

.dropdown-link:hover {
    background: rgba(46, 106, 243, 0.08);
}

.dropdown-link strong {
    display: block;
    font-size: 0.96rem;
}

.dropdown-link small {
    display: block;
    color: var(--muted);
    font-size: 0.8rem;
    margin-top: 2px;
    line-height: 1.35;
}

.dropdown-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(46, 106, 243, 0.14), rgba(46, 106, 243, 0.05));
    color: var(--blue);
}

.dropdown-icon .icon {
    width: 24px;
    height: 24px;
}

.dropdown-cta {
    display: inline-flex;
    justify-content: center;
    padding: 12px 14px;
    border-radius: 16px;
    font-weight: 700;
    color: var(--blue);
    background: rgba(46, 106, 243, 0.08);
}

.login-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    border-radius: 14px;
    color: white;
    font-weight: 700;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    box-shadow: 0 16px 30px rgba(46, 106, 243, 0.28);
}

.login-ico .icon {
    width: 18px;
    height: 18px;
}

.menu-toggle {
    display: none;
    width: 50px;
    height: 50px;
    padding: 0;
    border: 1px solid var(--line);
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: #173055;
}

.hero {
    position: relative;
    padding: 40px 0 14px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 10%, rgba(46, 106, 243, 0.12), transparent 42%),
        radial-gradient(circle at 85% 18%, rgba(46, 106, 243, 0.08), transparent 24%);
    pointer-events: none;
}

.hero-grid,
.inner-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 34px;
}

.hero-copy {
    padding: 26px 0;
}

.eyebrow {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(46, 106, 243, 0.08);
    color: var(--blue);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero h1,
.inner-hero h1 {
    margin: 20px 0 18px;
    font-size: clamp(3rem, 5vw, 4.9rem);
    line-height: 0.95;
    letter-spacing: -0.08em;
    color: #122b53;
}

.hero p,
.inner-hero p,
.section-intro p {
    color: var(--muted);
    line-height: 1.75;
    font-size: 1.05rem;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 22px;
    border-radius: 16px;
    font-weight: 700;
    border: 1px solid transparent;
    font: inherit;
    cursor: pointer;
    appearance: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
    color: white;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    box-shadow: 0 18px 34px rgba(46, 106, 243, 0.28);
}

.btn-secondary {
    color: var(--blue);
    border-color: rgba(46, 106, 243, 0.3);
    background: rgba(255, 255, 255, 0.8);
}

.btn svg {
    width: 18px;
    height: 18px;
}

.hero-visual {
    position: relative;
    min-height: 630px;
    display: grid;
    align-items: end;
    justify-items: center;
}

.hero-visual--image {
    align-items: stretch;
}

.hero-visual-image {
    position: relative;
    z-index: 1;
    width: min(100%, 560px);
    height: 100%;
    min-height: 540px;
    object-fit: cover;
    object-position: center center;
    border-radius: 30px;
    box-shadow: 0 26px 40px rgba(11, 25, 53, 0.18);
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 5% 0 16%;
    background: linear-gradient(90deg, rgba(46, 106, 243, 0.06), rgba(46, 106, 243, 0.01));
    border-radius: 40px;
}

.laptop {
    position: relative;
    z-index: 1;
    width: min(100%, 680px);
    margin-right: -20px;
    filter: drop-shadow(0 26px 40px rgba(11, 25, 53, 0.18));
}

.laptop-screen {
    position: relative;
    border: 8px solid #0c1320;
    border-bottom-width: 13px;
    border-radius: 22px 22px 10px 10px;
    background: linear-gradient(180deg, #f9fbff 0%, #eef2fb 100%);
    padding: 16px;
}

.laptop-screen::after {
    content: "";
    position: absolute;
    inset: 10px 10px auto auto;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ced7ea;
    box-shadow: -24px 0 0 #ced7ea, -48px 0 0 #ced7ea;
}

.screen-header,
.panel-head,
.phone-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.screen-brand,
.chip {
    font-size: 0.82rem;
    font-weight: 700;
    color: #26466f;
}

.screen-chip,
.chip {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(46, 106, 243, 0.08);
    color: var(--blue);
}

.screen-icons {
    display: flex;
    gap: 8px;
}

.screen-icons span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ced7ea;
}

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

.stat-box,
.chart-panel,
.donut-panel,
.phone-card,
.inner-hero-panel {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(16, 34, 63, 0.08);
    box-shadow: var(--shadow-sm);
}

.stat-box {
    padding: 16px 14px;
    border-radius: 16px;
}

.stat-box span {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
    margin-bottom: 6px;
}

.stat-box strong {
    display: block;
    font-size: 1.15rem;
    color: #162d56;
    letter-spacing: -0.04em;
}

.stat-box small {
    display: inline-flex;
    margin-top: 6px;
    color: #0d9b52;
    font-weight: 700;
}

.stat-box small.down {
    color: #d07a1d;
}

.dashboard-bottom {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 12px;
    margin-top: 12px;
}

.chart-panel,
.donut-panel {
    border-radius: 18px;
    padding: 14px;
}

.panel-head h4 {
    margin: 0;
    font-size: 0.92rem;
}

.panel-head span {
    color: var(--muted);
    font-size: 0.8rem;
}

.line-chart {
    width: 100%;
    height: 170px;
    margin-top: 10px;
}

.donut-wrap {
    display: grid;
    grid-template-columns: 128px 1fr;
    gap: 14px;
    align-items: center;
    margin-top: 18px;
}

.donut {
    width: 118px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: conic-gradient(#2e6af3 0 60%, #29b06a 60% 85%, #f58a1f 85% 100%);
    position: relative;
    margin: 0 auto;
}

.donut::after {
    content: "";
    position: absolute;
    inset: 22px;
    background: white;
    border-radius: 50%;
}

.legend {
    display: grid;
    gap: 10px;
}

.legend span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: var(--muted);
    font-size: 0.84rem;
}

.legend b {
    color: #16305c;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

.dot.blue { background: var(--blue); }
.dot.green { background: #29b06a; }
.dot.orange { background: #f58a1f; }

.laptop-base {
    width: 90%;
    height: 16px;
    border-radius: 0 0 26px 26px;
    background: linear-gradient(180deg, #a6afbf, #7c8594);
    margin-top: -2px;
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.45);
}

.phone {
    position: absolute;
    left: 7%;
    bottom: 10%;
    z-index: 2;
}

.phone-shell {
    width: 186px;
    border: 6px solid #0b111b;
    border-radius: 28px;
    background: linear-gradient(180deg, #f7faff, #eef3fb);
    padding: 12px 10px 14px;
    box-shadow: var(--shadow-lg);
}

.phone-bar {
    width: 56px;
    height: 5px;
    border-radius: 999px;
    margin: 0 auto 10px;
    background: #0d1625;
}

.phone-top {
    margin-bottom: 10px;
}

.phone-card {
    border-radius: 18px;
    padding: 12px;
}

.phone-card strong {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.phone-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.phone-card li {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 8px;
    font-size: 0.78rem;
    color: #21375d;
    align-items: start;
}

.phone-card li small {
    display: block;
    color: var(--muted);
    margin-top: 2px;
}

.mini {
    width: 22px;
    height: 22px;
    border-radius: 7px;
    display: grid;
    place-items: center;
    color: white;
    font-size: 0.68rem;
    font-weight: 800;
}

.mini.blue { background: linear-gradient(135deg, #58a0ff, #2f6af3); }
.mini.green { background: linear-gradient(135deg, #2ab56d, #1c8c56); }
.mini.orange { background: linear-gradient(135deg, #ffaf53, #f58a1f); }
.mini.gray { background: linear-gradient(135deg, #9fa8b8, #72819a); }

.hero-note {
    position: absolute;
    right: 0;
    top: 42%;
    transform: translateY(-50%);
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: center;
    width: 280px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(16, 34, 63, 0.08);
    box-shadow: var(--shadow-md);
  }

.hero-note strong {
    display: block;
    margin-bottom: 6px;
    font-size: 0.92rem;
}

.hero-note p {
    margin: 0;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.55;
}

.note-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    color: var(--blue);
    background: rgba(46, 106, 243, 0.1);
}

.note-icon .icon {
    width: 27px;
    height: 27px;
}

.hero-divider {
    margin: 24px 0 0;
    border: 0;
    border-top: 1px solid rgba(16, 34, 63, 0.1);
}

.systems-section {
    padding: 24px 0 30px;
}

.section-intro {
    text-align: center;
    max-width: 840px;
    margin: 0 auto 24px;
}

.section-intro h2 {
    margin: 14px 0 10px;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.04;
    letter-spacing: -0.06em;
    color: #142b52;
}

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

.system-card {
    position: relative;
    min-height: 246px;
    padding: 22px 18px 18px;
    border-radius: 20px;
    background: var(--surface);
    border: 1px solid rgba(16, 34, 63, 0.08);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: grid;
    align-content: start;
    gap: 14px;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.system-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.system-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 72px;
    background: linear-gradient(180deg, rgba(46, 106, 243, 0.06), transparent);
}

.system-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: white;
    box-shadow: 0 14px 24px rgba(46, 106, 243, 0.22);
}

.tone-blue .system-icon { background: linear-gradient(135deg, #63a1ff, #2f6af3); }
.tone-green .system-icon { background: linear-gradient(135deg, #43c079, #1f9f60); }
.tone-violet .system-icon { background: linear-gradient(135deg, #8470f1, #6a45e5); }
.tone-orange .system-icon { background: linear-gradient(135deg, #ffad5e, #f58a1f); }
.tone-cyan .system-icon { background: linear-gradient(135deg, #4ac8ef, #2ca7df); }

.system-icon .icon {
    width: 30px;
    height: 30px;
}

.system-visual {
    width: 100%;
    min-height: 118px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    padding: 12px 14px;
}

.system-visual--image {
    background: linear-gradient(180deg, rgba(46, 106, 243, 0.06), rgba(255, 255, 255, 0.88));
    border: 1px solid rgba(16, 34, 63, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.system-thumb {
    display: block;
    width: 100%;
    max-width: 152px;
    height: auto;
    object-fit: contain;
}

.system-card h3 {
    margin: 0;
    font-size: 1.06rem;
    letter-spacing: -0.04em;
}

.system-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.92rem;
}

.system-link {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 12px;
    color: var(--blue);
    font-weight: 700;
}

.system-link span {
    overflow-wrap: anywhere;
}

.system-link svg {
    width: 18px;
    height: 18px;
    flex: none;
}

.benefits {
    padding: 12px 0 20px;
}

.custom-dev {
    padding: 8px 0 24px;
}

.custom-dev-card {
    display: grid;
    gap: 18px;
}

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

.custom-dev-points article {
    padding: 18px;
    border-radius: 20px;
    background: rgba(46, 106, 243, 0.05);
    border: 1px solid rgba(46, 106, 243, 0.1);
}

.custom-dev-points h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.custom-dev-points p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.partners {
    padding: 10px 0 24px;
}

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

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

.partner-card {
    display: grid;
    gap: 16px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(16, 34, 63, 0.08);
    box-shadow: var(--shadow-sm);
}

.partner-visual {
    display: grid;
    place-items: center;
    min-height: 170px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(46, 106, 243, 0.08), rgba(46, 106, 243, 0.02));
}

.partner-thumb {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 210px;
    max-height: 120px;
    object-fit: contain;
}

.partner-copy {
    display: grid;
    gap: 8px;
}

.partner-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue);
    background: rgba(46, 106, 243, 0.08);
}

.partner-card h3 {
    margin: 0;
    font-size: 1.15rem;
}

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

.partner-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 6px;
    color: var(--blue);
    font-weight: 700;
}

.partner-link svg {
    width: 18px;
    height: 18px;
    flex: none;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 22px;
    border: 1px solid rgba(16, 34, 63, 0.08);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.feature-card {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 14px;
    align-items: start;
    padding: 24px;
}

.feature-card + .feature-card {
    border-left: 1px solid rgba(16, 34, 63, 0.08);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: var(--blue);
    background: linear-gradient(135deg, rgba(46, 106, 243, 0.16), rgba(46, 106, 243, 0.06));
}

.feature-icon .icon {
    width: 28px;
    height: 28px;
}

.feature-card h3 {
    margin: 0 0 6px;
    font-size: 1rem;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
    font-size: 0.88rem;
}

.cta-band {
    padding: 14px 0 28px;
}

.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 26px 30px;
    border-radius: 22px;
    background: linear-gradient(135deg, #3d7af8 0%, #1652e7 100%);
    color: white;
    box-shadow: 0 24px 48px rgba(22, 82, 231, 0.28);
}

.cta-band-copy {
    display: flex;
    align-items: center;
    gap: 18px;
}

.cta-planet {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.18);
}

.cta-planet .icon {
    width: 36px;
    height: 36px;
}

.cta-band h2 {
    margin: 0 0 6px;
    font-size: 1.6rem;
    letter-spacing: -0.05em;
}

.cta-band p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.cta-band .btn-secondary {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.92);
    color: var(--blue);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.12);
}

.site-footer {
    margin-top: 22px;
    background: linear-gradient(180deg, var(--footer-2), var(--footer));
    color: white;
    padding: 42px 0 36px;
}

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

.footer-logo {
    width: 60px;
    flex: none;
    border-radius: 18px;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
}

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

.footer-brand h3 {
    color: white;
    margin: 0;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.72);
    max-width: 280px;
}

.footer-group-note {
    margin-top: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
}

.footer-group-note a {
    color: white;
    font-weight: 700;
}

.footer-col h4 {
    margin: 0 0 14px;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.8);
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.86);
}

.footer-col a:hover {
    color: white;
}

.socials {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.1);
    font-weight: 700;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

.inner-hero {
    padding: 54px 0 18px;
}

.inner-hero-grid {
    align-items: stretch;
}

.inner-hero-panel {
    border-radius: 24px;
    padding: 30px;
    display: grid;
    align-content: center;
    background:
        linear-gradient(180deg, rgba(46, 106, 243, 0.05), rgba(255, 255, 255, 0.92)),
        rgba(255, 255, 255, 0.95);
}

.inner-hero-panel--image {
    padding: 0;
    overflow: visible;
    min-height: 560px;
    aspect-ratio: 1.28 / 1;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.inner-hero-illustration {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    border-radius: 28px;
}

.inner-hero-mini {
    display: grid;
    gap: 12px;
    justify-items: start;
}

.inner-hero-mini .icon {
    width: 42px;
    height: 42px;
    color: var(--blue);
}

.inner-hero-mini strong {
    font-size: 1.1rem;
}

.inner-hero-mini span {
    color: var(--muted);
    line-height: 1.6;
}

.solutions-section,
.about-section,
.contact-section {
    padding: 18px 0 36px;
}

.solutions-stack {
    display: grid;
    gap: 22px;
}

.section-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(16, 34, 63, 0.08);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    padding: 24px;
}

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

.stat-tile {
    padding: 20px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(46, 106, 243, 0.06), rgba(255, 255, 255, 0.8));
    border: 1px solid rgba(46, 106, 243, 0.1);
}

.stat-tile strong {
    display: block;
    font-size: 1.6rem;
    margin-bottom: 6px;
    letter-spacing: -0.05em;
}

.stat-tile span {
    color: var(--muted);
    line-height: 1.55;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 22px;
}

.timeline {
    display: grid;
    gap: 14px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 14px;
    align-items: start;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(16, 34, 63, 0.08);
}

.timeline-badge {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: var(--blue);
    background: rgba(46, 106, 243, 0.08);
}

.timeline-badge .icon {
    width: 28px;
    height: 28px;
}

.timeline-item h3 {
    margin: 0 0 6px;
    font-size: 1rem;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 22px;
}

.contact-cards {
    display: grid;
    gap: 14px;
}

.contact-card {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(16, 34, 63, 0.08);
}

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

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

.contact-form {
    display: grid;
    gap: 14px;
}

.form-status {
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid transparent;
    font-weight: 600;
    line-height: 1.5;
}

.form-status-success {
    color: #0f5132;
    background: #ecfdf3;
    border-color: rgba(34, 197, 94, 0.24);
}

.form-status-error {
    color: #842029;
    background: #fff1f2;
    border-color: rgba(244, 63, 94, 0.22);
}

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

.field {
    display: grid;
    gap: 8px;
}

.field label {
    font-size: 0.88rem;
    font-weight: 700;
    color: #24416b;
}

.contact-form .field input,
.contact-form .field textarea,
.contact-form .field select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(16, 34, 63, 0.14);
    background: rgba(255, 255, 255, 0.92);
    color: var(--text);
    font: inherit;
    box-sizing: border-box;
}

.contact-form .field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #2e6af3 50%), linear-gradient(135deg, #2e6af3 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 14px) calc(1em + 2px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 42px;
    cursor: pointer;
    line-height: 1.4;
}

.field textarea {
    min-height: 150px;
    resize: vertical;
}

.form-honeypot {
    display: none;
}

.form-note {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-modal {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 80;
}

.contact-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.contact-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(9, 16, 31, 0.54);
    backdrop-filter: blur(8px);
}

.contact-modal__panel {
    position: relative;
    z-index: 1;
    width: min(100%, 520px);
    padding: 30px 28px 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 30px 70px rgba(6, 12, 23, 0.28);
    border: 1px solid rgba(16, 34, 63, 0.1);
    text-align: center;
}

.contact-modal__close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 0;
    background: rgba(16, 34, 63, 0.08);
    color: var(--text);
    font-size: 1.5rem;
    line-height: 1;
}

.contact-modal__icon {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 22px;
    color: white;
}

.contact-modal__icon svg {
    width: 30px;
    height: 30px;
}

.contact-modal__icon-success {
    background: linear-gradient(135deg, #22c55e, #15803d);
}

.contact-modal__icon-error {
    background: linear-gradient(135deg, #f97316, #dc2626);
}

.contact-modal__panel h3 {
    margin: 0 0 10px;
    font-size: 1.65rem;
}

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

.contact-modal__action {
    margin-top: 22px;
}

body.modal-open {
    overflow: hidden;
}

.icon {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-copy .icon {
    stroke-width: 1.9;
}

@media (max-width: 1240px) {
    .systems-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1080px) {
    .hero-grid,
    .inner-hero-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

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

    .hero-visual {
        min-height: 560px;
        order: -1;
    }

    .hero-note {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 18px;
        width: min(100%, 360px);
        justify-self: end;
    }

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

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

    .feature-card + .feature-card {
        border-left: 0;
        border-top: 1px solid rgba(16, 34, 63, 0.08);
    }

    .solutions-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .menu-toggle {
        display: inline-grid;
        place-items: center;
    }

    .site-nav {
        position: fixed;
        inset: 84px 0 auto;
        display: grid;
        gap: 18px;
        padding: 18px 20px 24px;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid rgba(18, 49, 93, 0.08);
        box-shadow: 0 16px 30px rgba(14, 28, 54, 0.12);
        transform: translateY(-130%);
        opacity: 0;
        pointer-events: none;
        transition: 0.22s ease;
        z-index: 45;
    }

    .site-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links {
        display: grid;
        gap: 8px;
    }

    .nav-link {
        width: 100%;
        justify-content: space-between;
    }

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-panel {
        position: static;
        width: 100%;
        margin-top: 10px;
    }

    .login-btn {
        justify-content: center;
    }

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

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

    .cta-band .btn-secondary {
        align-self: stretch;
        justify-content: center;
    }

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

@media (max-width: 680px) {
    .container {
        width: min(100% - 24px, 1240px);
    }

    .header-inner {
        min-height: 76px;
    }

    .brand-copy small {
        display: none;
    }

    .hero {
        padding-top: 26px;
    }

    .hero h1,
    .inner-hero h1 {
        font-size: clamp(2.5rem, 11vw, 3.4rem);
    }

    .hero-visual {
        min-height: 460px;
    }

    .laptop {
        margin-right: 0;
    }

    .phone {
        left: 0;
        bottom: 8%;
    }

    .hero-note {
        width: 100%;
        justify-self: stretch;
    }

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

    .dashboard-bottom {
        grid-template-columns: 1fr;
    }

    .donut-wrap {
        grid-template-columns: 104px 1fr;
    }

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

    .benefit-grid,
    .footer-grid,
    .field-row {
        grid-template-columns: 1fr;
    }

    .feature-card + .feature-card {
        border-top: 1px solid rgba(16, 34, 63, 0.08);
    }

    .cta-band-inner {
        padding: 22px;
    }

    .cta-band h2 {
        font-size: 1.3rem;
    }
}
