:root {
    --navy: #143866;
    --navy-deep: #081f3a;
    --green: #20b14d;
    --sky: #eef5fb;
    --white: #ffffff;
    --text: #11263f;
    --muted: #607086;
    --line: #d8e2ee;
    --shadow: 0 20px 45px rgba(10, 35, 66, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(32, 177, 77, 0.12), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #edf4fa 100%);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.site-shell {
    width: min(1440px, calc(100% - 32px));
    margin: 16px auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(208, 220, 233, 0.72);
    border-radius: 24px 24px 0 0;
    padding: 8px 18px;
    box-shadow: 0 8px 22px rgba(10, 35, 66, 0.08);
    backdrop-filter: blur(12px);
}

.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.brand img {
    width: 126px;
    max-width: 100%;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.88);
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--navy);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle:hover {
    transform: translateY(-1px);
    border-color: #b8cadc;
}

.menu-toggle.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-link {
    font-size: 0.96rem;
    font-weight: 600;
    color: #050E3C;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--green);
    transform: translateY(-1px);
}

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

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

.nav-dropdown__caret {
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform 0.2s ease;
}

.nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 300px;
    padding: 18px 10px 10px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 28px;
    box-shadow: 0 24px 48px rgba(8, 31, 58, 0.14);
    border: 1px solid rgba(208, 220, 233, 0.72);
    display: grid;
    gap: 6px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 20;
}

.nav-dropdown__menu a {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 0 28px;
    border-radius: 999px;
    color: #3a4150;
    font-size: 1rem;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-dropdown__menu--compact {
    min-width: 240px;
    padding: 14px 8px 8px;
    gap: 4px;
}

.nav-dropdown__menu--compact a {
    min-height: 42px;
    padding: 0 20px;
    font-size: 0.95rem;
    font-weight: 700;
}

.nav-dropdown__menu--grouped {
    min-width: 300px;
    gap: 10px;
}

.nav-submenu {
    display: grid;
    gap: 4px;
}

.nav-submenu__toggle,
.nav-dropdown__single-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 42px;
    width: 100%;
    padding: 0 20px;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: #050E3C;
    font-size: 0.92rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-submenu__toggle:hover,
.nav-dropdown__single-link:hover,
.nav-submenu.is-open > .nav-submenu__toggle {
    background: #eef5fb;
    color: #050E3C;
}

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

.nav-submenu.is-open > .nav-submenu__toggle .nav-submenu__caret {
    transform: rotate(225deg);
}

.nav-submenu__panel {
    display: none;
    gap: 4px;
    padding-left: 12px;
}

.nav-submenu.is-open > .nav-submenu__panel {
    display: grid;
}

.nav-submenu__panel a {
    min-height: 38px;
    padding: 0 20px;
    font-size: 0.92rem;
    font-weight: 600;
}

.nav-submenu--nested {
    margin-left: 8px;
}

.nav-submenu--nested .nav-submenu__toggle {
    min-height: 38px;
    padding: 0 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
}

.nav-submenu--nested .nav-submenu__panel {
    padding-left: 14px;
}

.nav-submenu--nested .nav-submenu__panel a {
    font-size: 0.9rem;
}

.nav-dropdown__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    padding: 12px 20px 4px;
    border-top: 1px solid rgba(5, 14, 60, 0.08);
}

.nav-dropdown__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 12px;
    background: #eef5fb;
    border: 1px solid rgba(5, 14, 60, 0.08);
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.nav-dropdown__social img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
}

.nav-dropdown__social:hover,
.nav-dropdown__social:focus-visible {
    transform: translateY(-2px);
    background: #dff0ff;
    border-color: rgba(25, 177, 28, 0.28);
}


.nav-dropdown__menu a:hover,
.nav-dropdown__menu a.is-current {
    background: #19b11c;
    color: var(--white);
    transform: translateX(2px);
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover .nav-dropdown__caret,
.nav-dropdown.is-open .nav-dropdown__caret {
    transform: rotate(225deg) translateY(-1px);
}

.contact-btn,
.hero-btn,
.btn {
    border-radius: 12px;
    font-weight: 700;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.contact-btn {
    background: #050E3C;
    color: var(--white);
    padding: 12px 22px;
    white-space: nowrap;
}

.contact-btn:hover,
.hero-btn:hover,
.btn:hover {
    transform: translateY(-2px);
}

.hero {
    background: var(--white);
    border-radius: 0 0 28px 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-slider {
    position: relative;
    min-height: 620px;
}

.slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 64px;
    background-position: center;
    background-size: cover;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease, transform 0.8s ease;
    transform: scale(1.01);
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.slide-content {
    max-width: 620px;
    color: var(--white);
}

.slide-eyebrow,
.section-tag,
.panel-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 700;
}

.slide-eyebrow {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.88);
}

.slide-content h1 {
    font-size: clamp(2.3rem, 4vw, 4.5rem);
    line-height: 1.06;
    margin-bottom: 18px;
}

.slide-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 540px;
    color: rgba(255, 255, 255, 0.92);
}

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

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 14px 22px;
    border: 1px solid transparent;
}

.hero-btn.primary,
.btn {
    background: linear-gradient(135deg, var(--green) 0%, #0d8d3a 100%);
    color: var(--white);
    border: none;
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.46);
    backdrop-filter: blur(4px);
}

.slider-controls {
    position: absolute;
    left: 64px;
    bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.75);
    background: transparent;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.slider-dot.active {
    background: var(--green);
    border-color: var(--green);
    transform: scale(1.08);
}

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

.info-card {
    background: #050e3c;
    border: 1px solid rgba(125, 151, 211, 0.24);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 16px 28px rgba(4, 11, 31, 0.28);
}

.info-card h2 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.info-card p {
    color: rgba(231, 238, 255, 0.82);
    line-height: 1.7;
}

.auth-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 470px);
    gap: 32px;
    align-items: start;
    margin-bottom: 40px;
}

.auth-copy {
    padding: 26px 12px 0 4px;
}

.section-tag {
    color: var(--green);
    margin-bottom: 18px;
}

.auth-copy h2 {
    font-size: clamp(2rem, 3vw, 3.3rem);
    line-height: 1.08;
    margin-bottom: 18px;
    color: var(--navy-deep);
}

.auth-copy p {
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.8;
    max-width: 640px;
}

.feature-list {
    list-style: none;
    margin-top: 24px;
    display: grid;
    gap: 14px;
}

.feature-list li {
    position: relative;
    padding-left: 28px;
    color: var(--text);
    font-weight: 600;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green) 0%, #0d8d3a 100%);
}

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

.section-heading h2 {
    font-size: clamp(2rem, 3.2vw, 3.1rem);
    line-height: 1.08;
    color: var(--navy-deep);
    margin-bottom: 14px;
}

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

.container {
    background-color: rgba(255, 255, 255, 0.96);
    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(216, 226, 238, 0.92);
    box-shadow: var(--shadow);
    width: 100%;
}

.panel-tag {
    color: var(--navy);
    margin-bottom: 10px;
}

.container h2 {
    color: var(--navy-deep);
    margin-bottom: 10px;
    font-size: 1.9rem;
}

.subtitle {
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
}

.tab {
    padding: 12px;
    border: 1px solid var(--line);
    background: #f3f8fc;
    color: #35506f;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.tab.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.auth-helper-link {
    margin-top: 14px;
    text-align: right;
}

.auth-helper-link a {
    color: var(--navy);
    font-weight: 700;
}

.auth-helper-link a:hover {
    color: var(--green);
}

.auth-helper-link--center {
    text-align: center;
}

.auth-utility-shell {
    width: min(100%, 620px);
}

.auth-utility-card h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    margin-bottom: 10px;
    color: var(--navy-deep);
}

.auth-dev-message {
    text-align: left;
    overflow-wrap: anywhere;
}

.auth-dev-message a {
    color: inherit;
    font-weight: 700;
    text-decoration: underline;
}

.form-group {
    margin-bottom: 18px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #3d4f63;
    font-weight: 700;
}

input {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #cdd8e4;
    border-radius: 12px;
    font-size: 14px;
    background: #fbfdff;
    min-width: 0;
}

textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #cdd8e4;
    border-radius: 12px;
    font-size: 14px;
    background: #fbfdff;
    resize: vertical;
    min-height: 130px;
}

input:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 4px rgba(20, 56, 102, 0.12);
}

textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 4px rgba(20, 56, 102, 0.12);
}

.btn {
    display: inline-block;
    width: 100%;
    padding: 14px;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    margin-top: 8px;
}

.btn:hover {
    background: linear-gradient(135deg, #0d8d3a 0%, #08722e 100%);
}

.btn:active {
    transform: scale(0.99);
}

.message {
    padding: 13px 14px;
    margin-bottom: 20px;
    border-radius: 12px;
    text-align: center;
}

.message.success {
    background-color: #e7f8ed;
    color: #166534;
    border: 1px solid #b9e5c8;
}

.message.error {
    background-color: #fff1f2;
    color: #9f1239;
    border: 1px solid #fecdd3;
}

.dashboard {
    max-width: 680px;
}

.dashboard-shell {
    width: 100%;
    max-width: 1320px;
}

.dashboard-page {
    display: grid;
    gap: 24px;
}

.dashboard-hero-card {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 24px;
    padding: 32px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(126, 218, 255, 0.2), transparent 28%),
        linear-gradient(135deg, #0a274d 0%, #123a6d 58%, #1b5798 100%);
    border: 1px solid rgba(107, 164, 229, 0.24);
    box-shadow: 0 20px 38px rgba(6, 24, 48, 0.22);
}

.dashboard-hero-card .panel-tag,
.dashboard-hero-card h1,
.dashboard-hero-card .subtitle {
    color: var(--white);
}

.dashboard-hero-card .subtitle {
    max-width: 760px;
    color: rgba(228, 238, 255, 0.84);
}

.dashboard-hero-card__content {
    display: grid;
    align-content: center;
    gap: 10px;
}

.dashboard-hero-card__meta {
    display: grid;
    align-content: start;
    gap: 16px;
}

.dashboard-user-chip {
    display: grid;
    gap: 8px;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.dashboard-user-chip span {
    color: rgba(219, 233, 252, 0.8);
    font-size: 0.86rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.dashboard-user-chip strong {
    color: var(--white);
    overflow-wrap: anywhere;
}

.dashboard-actions--wide {
    margin-top: 0;
}

.dashboard-actions--wide .btn {
    width: 100%;
}

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

.dashboard-stat-card {
    min-height: 170px;
    padding: 22px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(216, 226, 238, 0.92);
    box-shadow: var(--shadow);
    display: grid;
    align-content: start;
    gap: 10px;
}

.dashboard-stat-card__label {
    color: var(--navy);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.dashboard-stat-card strong {
    color: var(--navy-deep);
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1;
}

.dashboard-stat-card p {
    color: var(--muted);
    line-height: 1.75;
}

.dashboard-content-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

.dashboard-panel {
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(216, 226, 238, 0.92);
    box-shadow: var(--shadow);
    display: grid;
    gap: 22px;
}

.dashboard-panel__heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.dashboard-panel__heading .section-tag {
    color: var(--navy);
}

.dashboard-panel__heading h2 {
    margin-top: 10px;
    color: var(--navy-deep);
    font-size: clamp(1.6rem, 2.4vw, 2.4rem);
    line-height: 1.08;
}

.dashboard-panel__count {
    padding: 9px 12px;
    border-radius: 999px;
    background: #eef5fb;
    color: var(--navy);
    font-size: 0.86rem;
    font-weight: 800;
    white-space: nowrap;
}

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

.dashboard-record-card {
    padding: 22px 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(12, 42, 78, 0.96) 0%, rgba(10, 31, 58, 0.98) 100%);
    border: 1px solid rgba(124, 165, 223, 0.22);
    box-shadow: 0 14px 28px rgba(8, 22, 41, 0.18);
    display: grid;
    gap: 14px;
}

.dashboard-record-card--light {
    background: linear-gradient(180deg, rgba(248, 252, 255, 0.98) 0%, rgba(239, 246, 252, 0.98) 100%);
    border: 1px solid rgba(197, 214, 231, 0.92);
    box-shadow: 0 12px 24px rgba(13, 35, 62, 0.08);
}

.dashboard-record-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.dashboard-record-card__top h3 {
    color: var(--white);
    font-size: 1.14rem;
    margin-bottom: 6px;
}

.dashboard-record-card__top p {
    color: rgba(223, 235, 251, 0.8);
    line-height: 1.6;
    overflow-wrap: anywhere;
}

.dashboard-record-card--light .dashboard-record-card__top h3 {
    color: var(--navy-deep);
}

.dashboard-record-card--light .dashboard-record-card__top p {
    color: #55708e;
}

.dashboard-record-card__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.dashboard-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(91, 177, 255, 0.18);
    border: 1px solid rgba(136, 196, 255, 0.2);
    color: #eaf4ff;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.dashboard-badge--soft {
    background: rgba(255, 255, 255, 0.12);
}

.dashboard-record-card--light .dashboard-badge {
    background: rgba(20, 56, 102, 0.08);
    border-color: rgba(20, 56, 102, 0.1);
    color: var(--navy);
}

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

.dashboard-record-card__meta span {
    color: rgba(226, 237, 251, 0.82);
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.dashboard-record-card--light .dashboard-record-card__meta span {
    color: #5c748f;
}

.dashboard-record-card__message {
    color: rgba(239, 246, 255, 0.92);
    line-height: 1.8;
}

.dashboard-record-card--light .dashboard-record-card__message {
    color: #445d77;
}

.dashboard-empty-state {
    padding: 24px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(247, 251, 255, 0.98) 0%, rgba(239, 246, 252, 0.98) 100%);
    border: 1px dashed rgba(178, 199, 223, 0.92);
    display: grid;
    gap: 10px;
}

.dashboard-empty-state h3 {
    color: var(--navy-deep);
    font-size: 1.2rem;
}

.dashboard-empty-state p {
    color: var(--muted);
    line-height: 1.75;
}

.card {
    background: #f8fbff;
    border: 1px solid #dbe3ef;
    border-radius: 12px;
    padding: 20px;
    line-height: 1.8;
}

.logout-btn {
    margin-top: 24px;
}

.utility-page {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
}

.page-with-header {
    padding: 0 0 24px;
}

.utility-shell {
    width: min(100%, 760px);
}

.utility-shell-spaced {
    margin: 28px auto 0;
}

.profile-card,
.setup-results {
    display: grid;
    gap: 14px;
}

.profile-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 18px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid var(--line);
}

.profile-label {
    color: var(--muted);
    font-weight: 600;
}

.profile-value {
    overflow-wrap: anywhere;
    text-align: right;
}

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

.btn-secondary {
    background: var(--navy);
    color: var(--white);
}

.setup-panel h1,
.dashboard h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    margin-bottom: 10px;
    color: var(--navy-deep);
}

.solutions-showcase {
    margin: 34px 0;
}

.why-choose-section {
    margin: 0 0 34px;
    padding: 56px 24px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(216, 226, 238, 0.92);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.why-choose-inner {
    width: min(100%, 980px);
    margin: 0 auto;
    text-align: center;
}

.why-choose-inner h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.1;
    color: var(--navy-deep);
    margin-bottom: 24px;
}

.why-choose-inner p {
    max-width: 980px;
    margin: 0 auto;
    color: #3e4a59;
    font-size: 1.15rem;
    line-height: 1.7;
}

.why-choose-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    margin-top: 34px;
    padding: 15px 28px;
    border-radius: 8px;
    background: var(--navy);
    color: var(--white);
    font-weight: 700;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.why-choose-button:hover {
    background: var(--navy-deep);
    transform: translateY(-2px);
}

.election-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 36px 46px;
    margin: 22px 0 0;
    background: #050E3C;
    color: var(--white);
    border-radius: 18px 18px 0 0;
    box-shadow: 0 16px 30px rgba(2, 8, 20, 0.3);
}

.election-strip__brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.election-strip__logo {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.election-strip__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.election-strip__brand h2 {
    max-width: 260px;
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.1;
    font-weight: 800;
}

.election-strip__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 112px;
    padding: 16px 18px;
    border-radius: 6px;
    background: #58b8ee;
    color: #07111f;
    font-size: 1.05rem;
    font-weight: 700;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.election-strip__button:hover {
    background: #7ccbf5;
    transform: translateY(-2px);
}

.partners-section,
.clients-section {
    padding: 54px 24px 38px;
    margin-bottom: 28px;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.partners-heading,
.clients-heading {
    max-width: none;
    margin-bottom: 30px;
    text-align: center;
}

.partners-slider,
.clients-slider {
    max-width: 980px;
    margin: 0 auto;
}

.partners-viewport,
.clients-viewport {
    overflow: hidden;
}

.partners-track,
.clients-track {
    display: flex;
    gap: 24px;
    will-change: transform;
}

.partner-slide,
.client-slide {
    flex: 0 0 calc((100% - 48px) / 3);
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.partner-slide img,
.client-slide img {
    max-width: 100%;
    max-height: 92px;
    width: auto;
    object-fit: contain;
}

.partners-slider {
    max-width: 100%;
}

.partners-track {
    width: max-content;
    animation: partners-marquee 24s linear infinite;
}

.partners-slider:hover .partners-track {
    animation-play-state: paused;
}

.partner-slide {
    flex: 0 0 240px;
    min-height: 132px;
    padding: 12px 18px;
}

.partner-slide img {
    max-height: 82px;
}

.clients-slider {
    max-width: 100%;
}

.clients-viewport {
    overflow: hidden;
}

.clients-track {
    width: max-content;
    animation: clients-marquee 28s linear infinite;
    transition: none;
}

.clients-slider:hover .clients-track {
    animation-play-state: paused;
}

.client-slide {
    flex: 0 0 220px;
    min-height: 132px;
    padding: 12px 18px;
}

.client-slide img {
    max-height: 82px;
}

@keyframes clients-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 12px));
    }
}

@keyframes partners-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 12px));
    }
}

@media (prefers-reduced-motion: reduce) {
    .partners-track,
    .clients-track {
        animation: none;
    }
}

.custom-solutions-section {
    margin: 0 0 34px;
    border-radius: 24px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(7, 17, 34, 0.42) 0%, rgba(7, 17, 34, 0.58) 100%),
        url('tgts_images/guys.jpg') center/cover no-repeat;
    box-shadow: var(--shadow);
}

.custom-solutions-overlay {
    padding: 42px 36px 54px;
    backdrop-filter: blur(1px);
}

.custom-solutions-heading {
    max-width: none;
    margin: 0 auto 34px;
    text-align: center;
}

.custom-solutions-heading h2,
.custom-solutions-heading p {
    color: var(--white);
}

.custom-solutions-heading h2 {
    font-size: clamp(2rem, 4vw, 3.7rem);
}

.custom-solutions-heading p {
    font-size: clamp(1rem, 1.7vw, 1.55rem);
}

.custom-solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    max-width: 980px;
    margin: 0 auto;
}

.custom-solution-card {
    min-height: 136px;
    padding: 18px 14px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.52);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    box-shadow: 0 12px 28px rgba(8, 31, 58, 0.14);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.custom-solution-card:hover {
    transform: translateY(-4px);
    background: var(--white);
    box-shadow: 0 18px 34px rgba(8, 31, 58, 0.2);
}

.custom-solution-card__icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #d7ecfb 0%, #fef2d3 100%);
    color: var(--navy);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.custom-solution-card h3 {
    color: #4d5663;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.solution-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    max-width: 360px;
    background: #050E3C;
    /*border: 1px solid rgba(125, 151, 211, 0.24);*/
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 18px 30px rgba(4, 11, 31, 0.28);
    margin: 0 auto;
}

.solution-image-wrap {
    height: 255px;
    overflow: hidden;
}

.solution-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.solution-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 26px 24px 30px;
    flex: 1;
}

.solution-body h3 {
    font-size: clamp(1.5rem, 2vw, 2rem);
    color: var(--white);
    line-height: 1.15;
}

.solution-body p {
    color: rgba(231, 238, 255, 0.82);
    font-size: 0.98rem;
    line-height: 1.55;
    max-width: 320px;
    min-height: 92px;
}

.solution-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    padding: 18px 20px;
    margin-top: auto;
    border-radius: 6px;
    background: #050E3C;
    color: var(--white);
    font-weight: 500;
    border: 1px solid rgba(125, 151, 211, 0.24);
}

.contact-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 520px);
    gap: 32px;
    align-items: start;
    margin: 40px 0 48px;
}

.contact-copy {
    padding-top: 12px;
}

.contact-copy h2 {
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1.08;
    margin-bottom: 16px;
    color: var(--navy-deep);
}

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

.contact-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(216, 226, 238, 0.92);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 30px;
    display: grid;
    gap: 28px;
}

.contact-card__list {
    display: grid;
    gap: 28px;
}

.contact-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 16px;
    align-items: start;
}

.contact-item__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #dff3ff 0%, #cfe7f7 100%);
    color: var(--navy);
    font-size: 1.4rem;
}

.contact-item__content h2 {
    color: #2b4f8a;
    /*font-size: clamp(1.45rem, 2.4vw, 2.2rem);*/
    line-height: 1.1;
    margin-bottom: 10px;
}

.contact-item__content p,
.contact-item__content a {
    color: var(--navy-deep);
    font-size: 1.08rem;
    line-height: 1.7;
}

.contact-item__content a:hover {
    color: var(--green);
}

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

.contact-map {
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    min-height: 280px;
}

.contact-map iframe {
    width: 100%;
    min-height: 280px;
    border: 0;
    display: block;
}

.contact-form {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(216, 226, 238, 0.92);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 30px;
}

.support-page {
    padding: 26px 0 34px;
    display: grid;
    gap: 28px;
}

.support-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 24px;
    padding: 38px;
    border-radius: 32px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.92), transparent 24%),
        radial-gradient(circle at 72% 18%, rgba(141, 225, 255, 0.55), transparent 28%),
        radial-gradient(circle at bottom right, rgba(134, 222, 108, 0.24), transparent 30%),
        linear-gradient(135deg, #cfeeff 0%, #82cfff 34%, #3e91de 72%, #1f5ba3 100%);
    box-shadow: 0 24px 46px rgba(25, 72, 128, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.48);
}

.support-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.46), transparent 45%),
        url('tgts_images/system that keep serving team.jpg') center right / cover no-repeat;
    opacity: 0.24;
    pointer-events: none;
}

.support-hero > * {
    position: relative;
    z-index: 1;
}

.support-hero__content {
    display: grid;
    align-content: center;
    gap: 18px;
    min-height: 440px;
}

.support-hero .section-tag,
.support-form .section-tag,
.support-offers .section-tag,
.support-contact-card .section-tag {
    color: rgba(6, 38, 78, 0.78);
}

.support-hero h1 {
    color: #072246;
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    line-height: 0.98;
    max-width: 760px;
    text-shadow: 0 10px 30px rgba(255, 255, 255, 0.28);
}

.support-hero p {
    color: rgba(7, 34, 70, 0.82);
    font-size: 1.05rem;
    line-height: 1.85;
    max-width: 640px;
}

.support-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 4px;
}

.hero-btn--ghost {
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(13, 65, 124, 0.12);
    color: #072246;
}

.hero-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.82);
}

.support-hero__list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-top: 6px;
    max-width: 640px;
}

.support-hero__list li {
    position: relative;
    padding-left: 30px;
    color: rgba(7, 34, 70, 0.84);
    line-height: 1.7;
}

.support-hero__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #86de6c 0%, #2ec1ff 100%);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
}

.support-hero__panel {
    align-self: end;
    display: grid;
    gap: 18px;
    padding: 28px;
    border-radius: 26px;
    background: rgba(248, 252, 255, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.58);
    backdrop-filter: blur(12px);
}

.support-hero__badge {
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(134, 222, 108, 0.22);
    border: 1px solid rgba(58, 152, 55, 0.2);
    color: #1a5d1f;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.support-hero__panel h2 {
    color: #072246;
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    line-height: 1.08;
}

.support-hero__panel p {
    color: rgba(7, 34, 70, 0.76);
    font-size: 0.98rem;
}

.support-metrics {
    display: grid;
    gap: 14px;
}

.support-metric {
    display: grid;
    gap: 6px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(173, 204, 230, 0.72);
}

.support-metric strong {
    color: #0a2f5b;
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.support-metric span {
    color: rgba(7, 34, 70, 0.72);
    line-height: 1.6;
}

.support-insights {
    display: grid;
    grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
    gap: 24px;
}

.support-help-card,
.support-faq-card {
    padding: 32px;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.support-help-card {
    background:
        radial-gradient(circle at top left, rgba(120, 214, 255, 0.22), transparent 28%),
        linear-gradient(145deg, #0b2950 0%, #143866 62%, #1f5ba3 100%);
    border: 1px solid rgba(94, 151, 219, 0.28);
    color: var(--white);
    overflow: hidden;
}

.support-help-card__inner {
    display: grid;
    gap: 20px;
}

.support-help-card .section-tag {
    color: rgba(233, 243, 255, 0.84);
}

.support-help-card h2 {
    color: var(--white);
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1.06;
}

.support-help-card p {
    color: rgba(230, 239, 255, 0.84);
    line-height: 1.85;
}

.support-help-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.support-help-card__list {
    display: grid;
    gap: 14px;
    margin-top: 4px;
}

.support-help-point {
    display: grid;
    gap: 8px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.support-help-point strong {
    color: var(--white);
    font-size: 1rem;
}

.support-help-point span {
    color: rgba(228, 238, 255, 0.8);
    line-height: 1.7;
}

.support-faq-card__heading {
    margin-bottom: 22px;
}

.support-faq-card__heading .section-tag {
    color: var(--navy);
}

.support-faq-card__heading h2 {
    color: var(--navy-deep);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.08;
    margin: 12px 0 14px;
}

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

.support-faq-item {
    border-radius: 20px;
    border: 1px solid rgba(204, 217, 230, 0.9);
    background: rgba(249, 252, 255, 0.98);
    overflow: hidden;
}

.support-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 50px 20px 20px;
    position: relative;
    color: var(--navy-deep);
    font-weight: 700;
    line-height: 1.6;
}

.support-faq-item summary::-webkit-details-marker {
    display: none;
}

.support-faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: var(--navy);
    font-size: 1.5rem;
    font-weight: 400;
}

.support-faq-item[open] summary::after {
    content: "-";
}

.support-faq-item p {
    padding: 0 20px 20px;
    color: var(--muted);
    line-height: 1.8;
}

.support-offers {
    padding: 34px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(216, 226, 238, 0.92);
    box-shadow: var(--shadow);
}

.support-offers__heading {
    max-width: 820px;
    margin-bottom: 22px;
}

.support-offers__heading .section-tag {
    color: var(--navy);
}

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

.support-offer-card {
    position: relative;
    min-height: 220px;
    padding: 24px 22px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(242, 247, 253, 0.98) 100%);
    border: 1px solid rgba(199, 214, 230, 0.9);
    box-shadow: 0 16px 34px rgba(10, 35, 66, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.support-offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 40px rgba(10, 35, 66, 0.12);
    border-color: rgba(47, 160, 218, 0.34);
}

.support-offer-card__accent {
    width: 56px;
    height: 6px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: linear-gradient(90deg, #20b14d 0%, #2fa0da 100%);
}

.support-offer-card h3 {
    margin-bottom: 14px;
    color: var(--navy-deep);
    font-size: 1.2rem;
    line-height: 1.2;
}

.support-offer-card p {
    color: var(--muted);
    line-height: 1.8;
}

.support-contact-section {
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
    gap: 24px;
    align-items: start;
}

.support-contact-card,
.support-form {
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.support-contact-card {
    padding: 32px;
    background:
        radial-gradient(circle at top left, rgba(32, 177, 77, 0.12), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(241, 247, 253, 0.98) 100%);
    border: 1px solid rgba(216, 226, 238, 0.92);
    display: grid;
    gap: 26px;
}

.support-contact-card__copy .section-tag {
    color: var(--navy);
}

.support-contact-card__copy h2,
.support-form__heading h2 {
    color: var(--navy-deep);
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1.08;
    margin: 12px 0 14px;
}

.support-contact-card__copy p,
.support-form__heading p {
    color: var(--muted);
    line-height: 1.8;
}

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

.support-channel {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(205, 217, 231, 0.9);
}

/*.support-channel__icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #143866 0%, #2fa0da 100%);
    color: var(--white);
    font-weight: 800;
    letter-spacing: 0.06em;
}*/

.support-channel h3 {
    color: var(--navy-deep);
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.support-channel p,
.support-channel a {
    color: var(--muted);
    line-height: 1.7;
}

.support-channel a:hover {
    color: var(--green);
}

.support-form {
    padding: 32px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(216, 226, 238, 0.92);
}

.support-form__heading {
    margin-bottom: 20px;
}

.support-form__heading .section-tag {
    color: var(--navy);
}

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

select {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #cdd8e4;
    border-radius: 12px;
    font-size: 14px;
    background: #fbfdff;
    min-width: 0;
    color: var(--text);
}

select:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 4px rgba(20, 56, 102, 0.12);
}

.contact-page-main {
    padding-top: 26px;
}

.about-page {
    padding: 26px 0 34px;
}

.about-hero {
    padding: 34px;
    margin-bottom: 28px;
    background:
        radial-gradient(circle at top left, rgba(32, 177, 77, 0.14), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(243, 248, 254, 0.98) 100%);
    border: 1px solid rgba(216, 226, 238, 0.92);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.about-hero--landing {
    position: relative;
    padding: 0;
    overflow: hidden;
    min-height: 460px;
    border: none;
    box-shadow: var(--shadow);
}

.brief-profile-hero {
    background: #050E3C;
    border-radius: 28px;
}

.vision-mission-hero {
    background: #050E3C;
    border-radius: 28px;
}

.management-hero {
    background: #050E3C;
    border-radius: 28px;
}

.about-hero__image {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

.about-hero__caption {
    position: absolute;
    left: 34px;
    bottom: 34px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 560px;
    padding: 22px 24px;
    background: rgba(5, 14, 60, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    backdrop-filter: blur(6px);
}

.about-hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.08;
    color: var(--navy-deep);
    margin: 12px 0 16px;
}

.about-hero p {
    max-width: 760px;
    color: var(--muted);
    line-height: 1.8;
    font-size: 1.04rem;
}

.about-hero--landing .section-tag {
    color: rgba(255, 255, 255, 0.84);
}

.about-hero--landing h1 {
    margin: 0;
    color: var(--white);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.about-hero--landing p {
    max-width: 520px;
    color: rgba(238, 244, 255, 0.88);
    font-size: 0.98rem;
}

.about-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 10px;
}

.about-split-section {
    margin-bottom: 28px;
}

.about-split-card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: stretch;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(216, 226, 238, 0.92);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-split-card__content {
    padding: 36px 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.about-split-card__content h2 {
    font-size: clamp(1.9rem, 3vw, 2.9rem);
    line-height: 1.1;
    color: var(--navy-deep);
}

.about-split-card__content p {
    color: var(--muted);
    line-height: 1.8;
}

.about-split-card__image img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    display: block;
}

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

.about-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(216, 226, 238, 0.92);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.about-card--wide {
    grid-column: span 2;
}

.about-card--guides {
    position: relative;
    background:
        linear-gradient(180deg, rgba(5, 14, 60, 0.56) 0%, rgba(5, 14, 60, 0.48) 100%),
        url('tgts_images/guys.jpg') center/cover no-repeat;
    border: none;
    overflow: hidden;
    color: white;
}

.about-card--guides h2,
.about-card--guides li {
    color: #ffffff;
    /*text-shadow: 0 1px 6px rgba(0, 0, 0, 0.28);*/
}

.about-card--guides h2 {
    margin-bottom: 18px;
    color: white;
}

.about-card--guides .about-list li::before {
    background: #7ad0ff;
}

.about-card h2 {
    color: var(--navy-deep);
    font-size: 1.55rem;
    margin-bottom: 14px;
}

.about-card p {
    color: var(--muted);
    line-height: 1.8;
}

.about-card p + p {
    margin-top: 14px;
}

.about-story-section {
    margin-top: 28px;
}

.about-story-card {
    padding: 34px;
}

.founder-section {
    margin-top: 28px;
}

.founder-card {
    display: grid;
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    gap: 28px;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(216, 226, 238, 0.92);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.founder-card__image {
    min-height: 100%;
}

.founder-card__image img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    display: block;
}

.founder-card__content {
    padding: 34px 34px 34px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.founder-card__content h2 {
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    line-height: 1.08;
    color: var(--navy-deep);
}

.founder-card__role {
    color: #050E3C;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.founder-card__content p {
    color: var(--muted);
    line-height: 1.8;
}

.team-section {
    margin-top: 28px;
}

.team-section__heading {
    max-width: none;
    margin: 0 auto 26px;
    text-align: center;
}

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

.team-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(216, 226, 238, 0.92);
    border-radius: 24px;
    padding: 24px 22px 28px;
    text-align: center;
    box-shadow: var(--shadow);
}

.team-card__image {
    width: min(100%, 220px);
    aspect-ratio: 1 / 1;
    margin: 0 auto 18px;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(180deg, #eef5fb 0%, #dce8f4 100%);
}

.team-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-card h3 {
    color: var(--navy-deep);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.team-card p {
    color: var(--muted);
    line-height: 1.7;
}

.addons-section {
    margin-top: 28px;
    display: grid;
    gap: 24px;
}

.addons-section__heading {
    max-width: none;
    margin: 0 auto;
    text-align: center;
}

.addons-image-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(216, 226, 238, 0.92);
    border-radius: 24px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.addons-image-card img {
    width: 100%;
    height: clamp(210px, 28vw, 360px);
    object-fit: cover;
    display: block;
}

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

.addon-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(216, 226, 238, 0.92);
    border-radius: 22px;
    padding: 14px;
    text-align: center;
    box-shadow: var(--shadow);
    display: grid;
    gap: 10px;
}

.addon-card__link {
    display: grid;
    gap: 12px;
    border-radius: 16px;
    padding: 6px 4px;
    transition: transform 0.2s ease;
}

.addon-card__link:hover {
    transform: translateY(-2px);
}

.addon-card__icon {
    width: 76px;
    height: 76px;
    margin: 0 auto;
    border-radius: 18px;
    background: linear-gradient(180deg, #eef5fb 0%, #dce8f4 100%);
    display: grid;
    place-items: center;
    padding: 10px;
}

.addon-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.addon-card h3 {
    color: var(--navy-deep);
    font-size: 1.02rem;
    line-height: 1.45;
}

.addon-card__request {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 42px;
    border-radius: 999px;
    background: linear-gradient(180deg, #1ebd84 0%, #17a674 100%);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.addon-card__request:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(30, 189, 132, 0.24);
}

.addon-detail-card {
    margin-top: 6px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(216, 226, 238, 0.92);
    border-radius: 28px;
    box-shadow: var(--shadow);
    padding: 30px;
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 24px;
    align-items: center;
}

.addon-detail-card__icon {
    width: 130px;
    height: 130px;
    border-radius: 26px;
    background: linear-gradient(180deg, #eef5fb 0%, #dce8f4 100%);
    display: grid;
    place-items: center;
    padding: 18px;
}

.addon-detail-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.addon-detail-card__content {
    display: grid;
    gap: 12px;
}

.addon-detail-card__content h2 {
    color: var(--navy-deep);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.08;
}

.addon-detail-card__content p {
    color: var(--muted);
    line-height: 1.8;
}

.addon-detail-card__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.hero-btn--ghost {
    background: rgba(255, 255, 255, 0.94);
    color: var(--navy);
    border: 1px solid #c8d8e8;
}

.career-page {
    padding: 26px 0 34px;
    display: grid;
    gap: 28px;
}

.career-hero {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: 30px;
    background: #050e3c;
    box-shadow: var(--shadow);
}

.career-hero__image {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
}

.career-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 14, 60, 0.88) 0%, rgba(5, 14, 60, 0.66) 44%, rgba(5, 14, 60, 0.2) 100%),
        radial-gradient(circle at top right, rgba(30, 189, 132, 0.2), transparent 28%);
}

.career-hero__content {
    position: absolute;
    left: 42px;
    bottom: 42px;
    max-width: 620px;
    display: grid;
    gap: 14px;
    z-index: 1;
}

.career-hero__content .section-tag {
    justify-self: start;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.12);
}

.career-hero__content h1 {
    color: var(--white);
    font-size: clamp(2.4rem, 4vw, 4.4rem);
    line-height: 1.02;
}

.career-hero__content p {
    color: rgba(235, 242, 255, 0.88);
    line-height: 1.8;
    font-size: 1.02rem;
    max-width: 56ch;
}

.career-application-section {
    padding: 36px 34px 40px;
    background: linear-gradient(180deg, rgba(245, 250, 255, 0.96) 0%, rgba(236, 244, 252, 0.98) 100%);
    border: 1px solid rgba(216, 226, 238, 0.92);
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.career-application-layout {
    display: grid;
    grid-template-columns: minmax(220px, 0.5fr) minmax(720px, 1.5fr);
    gap: 24px;
    align-items: start;
}

.career-application-copy {
    display: grid;
    gap: 16px;
    padding-top: 18px;
}

.career-application-copy .section-tag {
    justify-self: start;
}

.career-application-copy h2 {
    color: var(--navy-deep);
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1.06;
}

.career-application-copy p {
    color: var(--muted);
    line-height: 1.86;
}

.career-apply-button {
    margin-top: 8px;
    background: linear-gradient(180deg, #1ebd84 0%, #17a674 100%);
    border-color: transparent;
}

.career-form-shell {
    width: 100%;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(208, 220, 233, 0.9);
    box-shadow: 0 26px 50px rgba(8, 31, 58, 0.14);
}

.career-form-shell__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 28px 34px;
    background: linear-gradient(180deg, #1ebd84 0%, #18aa76 100%);
}

.career-form-shell__header h3 {
    color: var(--white);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.career-form-shell__close {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: rgba(255, 255, 255, 0.92);
    font-size: 2.1rem;
    line-height: 1;
    transform: rotate(45deg);
    cursor: pointer;
}

.career-form-shell__body {
    padding: 32px 34px 38px;
}

.career-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: center;
    padding-bottom: 24px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(208, 220, 233, 0.9);
}

.career-step {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #9da8ba;
    font-weight: 700;
}

.career-step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: calc(100% - 6px);
    top: 50%;
    width: calc(100% - 26px);
    height: 3px;
    background: rgba(216, 224, 235, 0.96);
    transform: translateY(-50%);
}

.career-step__number {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #e7ebf1;
    color: #6f7b8f;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.career-step__label {
    font-size: 0.98rem;
    position: relative;
    z-index: 1;
}

.career-step.is-active {
    color: #1ebd84;
}

.career-step.is-active .career-step__number {
    background: #1ebd84;
    color: var(--white);
}

.career-step.is-complete {
    color: #127f59;
}

.career-step.is-complete .career-step__number {
    background: rgba(30, 189, 132, 0.18);
    color: #127f59;
}

.career-form-grid--stacked {
    grid-template-columns: 1fr;
}

.career-form-panel {
    display: none;
}

.career-form-panel.is-active {
    display: block;
}

.career-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 22px 26px;
}

.career-field {
    display: grid;
    gap: 12px;
}

.career-field span {
    color: #3e495c;
    font-size: 0.98rem;
    font-weight: 700;
}

.career-field input,
.career-field select,
.career-field textarea {
    width: 100%;
    min-height: 66px;
    padding: 0 20px;
    border: 1px solid rgba(198, 209, 223, 0.94);
    border-radius: 16px;
    background: #ffffff;
    color: #223046;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.career-field select,
.career-field input[type="file"] {
    padding-top: 18px;
    padding-bottom: 18px;
}

.career-field textarea {
    min-height: 150px;
    padding-top: 18px;
    padding-bottom: 18px;
    resize: vertical;
}

.career-field input:focus,
.career-field select:focus,
.career-field textarea:focus {
    border-color: rgba(30, 189, 132, 0.8);
    box-shadow: 0 0 0 4px rgba(30, 189, 132, 0.14);
}

.career-field input::placeholder,
.career-field textarea::placeholder {
    color: #9ea9bb;
}

.career-field small {
    color: #6f7b8f;
    line-height: 1.6;
}

.career-field--full {
    grid-column: 1 / -1;
}

.career-verify-card {
    display: grid;
    gap: 22px;
}

.career-verify-card h4 {
    color: var(--navy-deep);
    font-size: 1.45rem;
}

.career-verify-card p {
    color: var(--muted);
    line-height: 1.75;
}

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

.career-review-item {
    display: grid;
    gap: 8px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(245, 250, 255, 0.92);
    border: 1px solid rgba(208, 220, 233, 0.9);
}

.career-review-item span {
    color: #6f7b8f;
    font-size: 0.92rem;
    font-weight: 700;
}

.career-review-item strong {
    color: var(--navy-deep);
    font-size: 1rem;
}

.career-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: #3e495c;
    line-height: 1.7;
}

.career-checkbox input {
    width: 20px;
    height: 20px;
    min-height: 20px;
    margin-top: 2px;
}

.career-form-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding-top: 14px;
    margin-top: 6px;
    border-top: 1px solid rgba(208, 220, 233, 0.9);
}

.career-form-nav,
.career-form-submit {
    min-width: 160px;
    min-height: 70px;
    padding: 0 28px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(180deg, #1ebd84 0%, #17a674 100%);
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.career-form-nav--secondary {
    background: linear-gradient(180deg, #edf2f8 0%, #dfe7f0 100%);
    color: #314159;
}

.career-form-nav:hover,
.career-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 28px rgba(17, 117, 82, 0.24);
}

.about-list {
    list-style: none;
    display: grid;
    gap: 12px;
}

.about-list li {
    position: relative;
    padding-left: 24px;
    color: var(--text);
    line-height: 1.7;
}

.about-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #19b11c;
}

.contact-hero {
    margin-bottom: 12px;
}

.contact-page-layout {
    margin-top: 0;
}

.solution-detail-page {
    padding: 20px 0 38px;
}

.solution-landing {
    display: grid;
    gap: 28px;
}

.solution-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: stretch;
    gap: 0;
    min-height: 500px;
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(135deg, #07192f 0%, #0d2b4d 62%, #114979 100%);
    box-shadow: var(--shadow);
}

.solution-hero__content {
    padding: 36px 42px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.solution-hero__content .section-tag {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.12);
    color: #d8ecff;
}

.solution-hero__content h1 {
    margin: 16px 0 18px;
    font-size: clamp(2.4rem, 4vw, 4.5rem);
    line-height: 0.98;
    color: var(--white);
    max-width: 10ch;
}

.solution-hero__content .solution-detail-summary {
    color: rgba(233, 242, 251, 0.9);
    max-width: 58ch;
}

.solution-hero__visual {
    position: relative;
    min-height: 100%;
    background: linear-gradient(180deg, rgba(7, 25, 47, 0.1) 0%, rgba(7, 25, 47, 0.34) 100%);
}

.solution-hero__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.solution-hero--checkpoint .solution-hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background:
        radial-gradient(circle at center, rgba(122, 208, 255, 0.2) 0%, transparent 52%),
        linear-gradient(180deg, rgba(7, 25, 47, 0.16) 0%, rgba(7, 25, 47, 0.4) 100%);
}

.solution-hero--checkpoint .solution-hero__visual img {
    width: min(100%, 520px);
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 24px;
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.24);
    background: rgba(255, 255, 255, 0.08);
    padding: 12px;
}

.solution-hero--riskflow .solution-hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: linear-gradient(180deg, rgba(7, 25, 47, 0.16) 0%, rgba(7, 25, 47, 0.28) 100%);
}

.solution-hero--riskflow .solution-hero__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-hero--adobe .solution-hero__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-hero--bydesign .solution-hero__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-overview {
    display: grid;
    grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
    gap: 34px;
    align-items: center;
    padding: 34px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(216, 226, 238, 0.92);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.solution-overview__media {
    overflow: hidden;
    border-radius: 24px;
    min-height: 360px;
    background: linear-gradient(180deg, #edf5fb 0%, #d9e9f7 100%);
}

.solution-overview__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.solution-overview__content h2 {
    margin: 16px 0 18px;
    font-size: clamp(2rem, 3vw, 3.1rem);
    line-height: 1.02;
    color: var(--navy-deep);
}

.solution-overview__subheading {
    margin: -4px 0 16px;
    font-size: 1.2rem;
    line-height: 1.35;
    color: #1b4978;
}

.solution-overview__content--wide {
    max-width: 100%;
}

.solution-overview__content p {
    color: #455467;
    font-size: 1.02rem;
    line-height: 1.85;
    margin: 0 0 18px;
}

.solution-overview__content p:last-of-type {
    margin-bottom: 0;
}

.solution-overview__list {
    margin-top: 22px;
}

.solution-overview--round-image {
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
}

.solution-overview__media--round {
    min-height: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-overview__media--round img {
    width: min(100%, 320px);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 20px 36px rgba(16, 34, 61, 0.18);
    border: 10px solid rgba(255, 255, 255, 0.96);
}

.solution-detail-card--highlights h2 {
    margin: 16px 0 12px;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    color: var(--navy-deep);
}

.solution-features-section {
    padding: 36px 34px 40px;
    background: linear-gradient(180deg, #123154 0%, #1a446f 100%);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.solution-features-heading {
    max-width: 760px;
    margin-bottom: 28px;
}

.solution-features-heading .section-tag {
    background: rgba(255, 255, 255, 0.12);
    color: #d9ecff;
}

.solution-features-heading h2 {
    margin: 16px 0 14px;
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1.04;
    color: var(--white);
}

.solution-features-heading p {
    color: rgba(228, 238, 248, 0.82);
    line-height: 1.8;
}

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

.solution-feature-card {
    min-height: 100%;
    padding: 26px 24px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(31, 74, 121, 0.92) 0%, rgba(21, 53, 88, 0.96) 100%);
    border: 1px solid rgba(170, 207, 244, 0.26);
}

.solution-feature-card h3 {
    margin-bottom: 14px;
    font-size: 1.28rem;
    line-height: 1.2;
    color: #f4f9ff;
}

.solution-feature-card p {
    color: rgba(220, 232, 244, 0.84);
    line-height: 1.78;
}

.solution-features-section--riskflow .solution-feature-card {
    background: linear-gradient(180deg, rgba(24, 56, 96, 0.94) 0%, rgba(15, 39, 70, 0.98) 100%);
}

.solution-overview--adobe {
    grid-template-columns: 1fr;
}

.solution-feature-story-section {
    padding: 36px 34px 40px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(216, 226, 238, 0.92);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.solution-features-heading--dark .section-tag {
    background: rgba(19, 67, 112, 0.12);
    color: #174a7a;
}

.solution-features-heading--dark h2 {
    color: var(--navy-deep);
}

.solution-features-heading--dark p {
    color: #53657a;
}

.solution-story-grid {
    display: grid;
    gap: 24px;
}

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

.solution-story-card {
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(180deg, #f7fbff 0%, #edf5fd 100%);
    border: 1px solid rgba(193, 212, 232, 0.9);
    box-shadow: 0 12px 24px rgba(16, 34, 61, 0.08);
}

.solution-story-card__image {
    height: 220px;
    background: linear-gradient(180deg, #dfeffd 0%, #cfe2f5 100%);
}

.solution-story-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.solution-story-card__body {
    padding: 24px 22px 26px;
}

.solution-story-card__body h3 {
    margin-bottom: 14px;
    font-size: 1.4rem;
    line-height: 1.16;
    color: var(--navy-deep);
}

.solution-story-card__body p {
    color: #4c5d70;
    line-height: 1.82;
}

.solution-value-section {
    padding: 36px 34px 40px;
    background: linear-gradient(180deg, #eff6fd 0%, #e7f1fb 100%);
    border: 1px solid rgba(216, 226, 238, 0.92);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

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

.solution-value-card {
    min-height: 100%;
    padding: 26px 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(193, 212, 232, 0.9);
    box-shadow: 0 12px 24px rgba(16, 34, 61, 0.08);
}

.solution-value-card__icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 16px;
    background: linear-gradient(180deg, #123154 0%, #1d4c7f 100%);
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.solution-value-card h3 {
    margin-bottom: 14px;
    font-size: 1.28rem;
    line-height: 1.2;
    color: var(--navy-deep);
}

.solution-value-card p {
    color: #4c5d70;
    line-height: 1.8;
}

.solution-products-section {
    display: grid;
    gap: 24px;
}

.solution-overview--products {
    background: rgba(255, 255, 255, 0.97);
}

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

.solution-feature-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
    gap: 24px;
    align-items: center;
    margin-bottom: 24px;
}

.solution-feature-intro__content p {
    margin: 0;
    color: rgba(228, 238, 248, 0.86);
    line-height: 1.82;
    font-size: 1.04rem;
}

.solution-feature-intro__media {
    overflow: hidden;
    min-height: 240px;
    border-radius: 22px;
    border: 1px solid rgba(170, 207, 244, 0.26);
    background: linear-gradient(180deg, rgba(31, 74, 121, 0.72) 0%, rgba(21, 53, 88, 0.88) 100%);
    box-shadow: 0 18px 34px rgba(8, 20, 38, 0.24);
}

.solution-feature-intro__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.solution-product-card {
    min-height: 100%;
    padding: 26px 24px;
    border-radius: 22px;
    background: linear-gradient(180deg, #f7fbff 0%, #edf5fd 100%);
    border: 1px solid rgba(193, 212, 232, 0.9);
    box-shadow: 0 12px 24px rgba(16, 34, 61, 0.08);
}

.solution-product-card h3 {
    margin-bottom: 14px;
    font-size: 1.28rem;
    line-height: 1.2;
    color: var(--navy-deep);
}

.solution-product-card p {
    color: #4c5d70;
    line-height: 1.8;
}

.solution-detail-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 34px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(216, 226, 238, 0.92);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.solution-detail-card h1 {
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.08;
    margin-bottom: 16px;
    color: var(--navy-deep);
}

.solution-detail-summary {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.solution-detail-panel {
    margin-top: 28px;
    padding: 26px;
    border-radius: 20px;
    background: #f6fbff;
    border: 1px solid var(--line);
}

.solution-detail-panel h2 {
    color: var(--navy);
    margin-bottom: 14px;
}

.solution-detail-back {
    color: var(--navy);
    border-color: rgba(20, 56, 102, 0.22);
    background: #eef5fb;
}

.digital-services-section {
    margin: 0 0 34px;
    padding: 42px 28px 30px;
    background: linear-gradient(180deg, #081426 0%, #0b1d36 100%);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.digital-services-inner {
    max-width: 980px;
    margin: 0 auto;
}

.digital-services-heading {
    max-width: none;
    margin-bottom: 34px;
    text-align: center;
}

.digital-services-heading h2 {
    color: var(--white);
    font-size: clamp(2rem, 3.2vw, 3.2rem);
}

.digital-services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
    justify-content: center;
}

.digital-service-card {
    min-height: 154px;
    padding: 26px 18px 22px;
    border: 1px solid rgba(88, 141, 230, 0.3);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(15, 35, 64, 0.95) 0%, rgba(8, 19, 38, 0.98) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    text-align: center;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
    transition: background-color 0.22s ease, border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.digital-service-card:hover {
    background: linear-gradient(180deg, #123c73 0%, #0c2c56 100%);
    border-color: rgba(120, 194, 255, 0.7);
    transform: translateY(-4px);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.42);
}

.digital-service-card__image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
}

.digital-service-card__image img {
    max-width: 100%;
    max-height: 64px;
    object-fit: contain;
}

.digital-service-card h3 {
    color: var(--white);
    font-size: 0.96rem;
    font-weight: 700;
    line-height: 1.35;
}

.digital-services-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.digital-services-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 14px 24px;
    border-radius: 4px;
    background: #2fa0da;
    color: var(--white);
    font-weight: 600;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.digital-services-button:hover {
    background: #44b6f0;
    transform: translateY(-2px);
}

.site-footer {
    margin-top: 30px;
    background:
        radial-gradient(circle at top left, rgba(79, 140, 255, 0.18), transparent 26%),
        linear-gradient(180deg, #050e3c 0%, #071735 100%);
    color: var(--white);
    border-radius: 24px;
    box-shadow: 0 24px 46px rgba(2, 8, 20, 0.28);
    overflow: hidden;
}

.site-footer__top {
    display: grid;
    grid-template-columns: 1.5fr 0.9fr 1fr 1fr;
    gap: 28px;
    padding: 40px 34px 30px;
}

.site-footer__brand,
.site-footer__links,
.site-footer__contact,
.site-footer__cta {
    display: grid;
    align-content: start;
    gap: 12px;
}

.site-footer__logo {
    display: inline-flex;
    width: fit-content;
}

.site-footer__logo img {
    width: 138px;
    display: block;
}

.site-footer__brand h2 {
    font-size: clamp(1.4rem, 2vw, 2rem);
    line-height: 1.15;
}

.site-footer__brand p,
.site-footer__contact p,
.site-footer__cta p {
    color: rgba(230, 238, 255, 0.82);
    line-height: 1.75;
}

.site-footer h3 {
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #9ec7ff;
}

.site-footer__links a,
.site-footer__contact a {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer__links a:hover,
.site-footer__contact a:hover {
    color: #9ec7ff;
    transform: translateX(2px);
}

.site-footer__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 180px;
    padding: 14px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(158, 199, 255, 0.28);
    color: var(--white);
    font-weight: 700;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.site-footer__button:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(158, 199, 255, 0.5);
}

.site-footer__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
}

.site-footer__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(158, 199, 255, 0.24);
    color: var(--white);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.site-footer__social img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

.site-footer__social:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(158, 199, 255, 0.5);
}

.site-footer__bottom {
    padding: 18px 34px 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__bottom p {
    color: rgba(230, 238, 255, 0.72);
    text-align: center;
    font-size: 0.95rem;
}

@media (max-width: 1100px) {
    .topbar {
        flex-wrap: wrap;
        justify-content: center;
        border-radius: 24px;
    }

    .main-nav {
        gap: 18px;
    }

    .hero {
        border-radius: 24px;
    }

    .info-strip,
    .auth-section,
    .contact-section,
    .solution-grid {
        grid-template-columns: 1fr;
    }

    .auth-copy {
        padding-top: 8px;
    }

    .election-strip {
        padding: 30px 28px;
    }

    .partner-slide {
        flex-basis: calc((100% - 24px) / 2);
    }

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

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

    .support-hero,
    .support-insights,
    .support-contact-section {
        grid-template-columns: 1fr;
    }

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

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

    .dashboard-content-grid,
    .dashboard-hero-card {
        grid-template-columns: 1fr;
    }

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

    .career-application-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .topbar {
        gap: 16px;
        padding: 12px 18px;
        justify-content: space-between;
        align-items: center;
    }

    .menu-toggle {
        display: inline-flex;
        order: 2;
    }

    .main-nav {
        display: none;
        order: 4;
        width: 100%;
        grid-template-columns: 1fr;
        gap: 8px;
        padding-top: 8px;
    }

    .main-nav.is-open {
        display: grid;
    }

    .nav-link {
        width: 100%;
        text-align: left;
        padding: 12px 14px;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: #f5f9fd;
    }

    .nav-dropdown {
        width: 100%;
        display: grid;
    }

    .nav-dropdown__toggle {
        width: 100%;
        justify-content: space-between;
        padding: 12px 14px;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: #f5f9fd;
    }

    .nav-dropdown__menu {
        position: static;
        transform: none;
        min-width: 0;
        margin-top: 10px;
        padding: 10px;
        border-radius: 20px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
        box-shadow: none;
    }

    .nav-dropdown.is-open .nav-dropdown__menu {
        display: grid;
        transform: none;
    }

    .nav-dropdown:hover .nav-dropdown__menu {
        transform: none;
    }

    .contact-btn {
        order: 3;
        width: 100%;
        text-align: center;
        padding: 14px 18px;
    }

    .election-strip {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .site-shell {
        width: min(100% - 18px, 100%);
        margin: 9px auto 24px;
    }

    .topbar {
        padding: 12px 16px;
    }

    .brand img {
        width: 132px;
    }

    .main-nav {
        gap: 14px;
    }

    .nav-link {
        font-size: 0.95rem;
    }

    .hero-slider {
        min-height: 520px;
    }

    .slide {
        padding: 28px 24px 72px;
        align-items: flex-end;
    }

    .slide-content {
        max-width: 100%;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 0.98rem;
    }

    .slider-controls {
        left: 24px;
        bottom: 24px;
    }

    .container {
        padding: 24px 20px;
    }

    .contact-form {
        padding: 24px 20px;
    }

    .contact-card {
        padding: 24px 20px;
    }

    .support-hero,
    .support-help-card,
    .support-faq-card,
    .support-offers,
    .support-contact-card,
    .support-form {
        padding: 24px 20px;
    }

    .support-hero__content {
        min-height: 0;
    }

    .support-hero h1 {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .support-form__grid,
    .support-offers__grid {
        grid-template-columns: 1fr;
    }

    .dashboard-panel,
    .dashboard-hero-card,
    .dashboard-stat-card {
        padding: 24px 20px;
    }

    .dashboard-stats,
    .dashboard-record-card__meta {
        grid-template-columns: 1fr;
    }

    .dashboard-panel__heading,
    .dashboard-record-card__top {
        flex-direction: column;
    }

    .dashboard-record-card__badges {
        justify-content: flex-start;
    }

    .solution-detail-card {
        padding: 26px 22px;
    }

    .solution-hero,
    .solution-overview {
        grid-template-columns: 1fr;
    }

    .solution-hero__content,
    .solution-overview {
        padding: 28px 24px;
    }

    .solution-hero__visual {
        min-height: 320px;
    }

    .solution-hero {
        min-height: unset;
    }

    .solution-features-section {
        padding: 28px 24px 32px;
    }

    .solution-feature-story-section {
        padding: 28px 24px 32px;
    }

    .solution-value-section {
        padding: 28px 24px 32px;
    }

    .solution-features-grid {
        grid-template-columns: 1fr;
    }

    .solution-story-grid--three {
        grid-template-columns: 1fr;
    }

    .solution-feature-intro {
        grid-template-columns: 1fr;
    }

    .solution-overview__media {
        min-height: 280px;
    }

    .solution-overview__media--round {
        min-height: 0;
    }

    .solution-overview__media--round img {
        width: min(100%, 260px);
    }

    .about-hero {
        padding: 28px 24px;
    }

    .about-hero--landing {
        min-height: 360px;
    }

    .about-hero__image {
        height: 360px;
    }

    .about-hero__caption {
        left: 20px;
        right: 20px;
        bottom: 20px;
        max-width: none;
        padding: 18px 18px;
    }

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

    .career-application-layout {
        grid-template-columns: 1fr;
    }

    .career-form-grid {
        grid-template-columns: 1fr;
    }

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

    .career-review-grid {
        grid-template-columns: 1fr;
    }

    .career-step:not(:last-child)::after {
        display: none;
    }

    .about-card--wide {
        grid-column: auto;
    }

    .about-split-card {
        grid-template-columns: 1fr;
    }

    .about-split-card__content {
        padding: 28px 24px;
    }

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

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

    .founder-card {
        grid-template-columns: 1fr;
    }

    .addon-detail-card {
        grid-template-columns: 1fr;
        padding: 26px 24px;
        justify-items: center;
        text-align: center;
    }

    .addon-detail-card__actions {
        justify-content: center;
    }

    .founder-card__content {
        padding: 0 24px 28px;
    }

    .solution-card {
        max-width: 100%;
    }

    .solution-image-wrap {
        height: 280px;
    }

    .partners-section,
    .clients-section {
        padding: 42px 18px 30px;
    }

    .why-choose-section {
        padding: 42px 20px;
    }

    .why-choose-inner p {
        font-size: 1.02rem;
    }

    .partner-slide,
    .client-slide {
        min-height: 112px;
    }

    .client-slide {
        flex-basis: 180px;
    }

    .custom-solutions-overlay {
        padding: 34px 20px 38px;
    }

    .digital-services-section {
        padding: 34px 20px 28px;
    }

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

    .solution-value-grid {
        grid-template-columns: 1fr;
    }

    .solution-products-grid {
        grid-template-columns: 1fr;
    }

    .site-footer__top {
        padding: 34px 22px 26px;
        gap: 24px;
    }

    .site-footer__bottom {
        padding: 16px 22px 20px;
    }

    .utility-page {
        align-items: stretch;
        padding: 18px 12px 24px;
    }

    .utility-shell {
        width: 100%;
    }
}

@media (max-width: 540px) {
    .site-shell {
        width: calc(100% - 12px);
    }

    .topbar {
        padding: 10px 14px;
    }

    .hero-slider {
        min-height: 470px;
    }

    .slide {
        padding: 24px 16px 72px;
    }

    .slide-content h1 {
        font-size: 1.7rem;
    }

    .slide-content p {
        font-size: 0.92rem;
        line-height: 1.6;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .election-strip {
        padding: 24px 18px;
    }

    .election-strip__brand {
        align-items: flex-start;
    }

    .partner-slide {
        flex-basis: 100%;
    }

    .client-slide {
        flex-basis: 160px;
    }

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

    .custom-solution-card {
        min-height: 118px;
    }

    .digital-services-grid {
        grid-template-columns: 1fr;
    }

    .digital-service-card {
        min-height: 138px;
        padding: 22px 16px 20px;
    }

    .hero-btn {
        width: 100%;
        min-width: 0;
    }

    .why-choose-button {
        width: 100%;
        min-width: 0;
    }

    .about-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .career-hero {
        min-height: 420px;
    }

    .career-hero__image {
        min-height: 420px;
    }

    .career-hero__content {
        left: 22px;
        right: 22px;
        bottom: 22px;
        max-width: none;
    }

    .career-application-section {
        padding: 24px 20px 28px;
    }

    .career-form-shell__header,
    .career-form-shell__body {
        padding-left: 20px;
        padding-right: 20px;
    }

    .career-form-submit {
        width: 100%;
    }

    .career-form-actions {
        flex-direction: column;
    }

    .career-form-nav {
        width: 100%;
    }

    .about-card {
        padding: 24px 20px;
    }

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

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

    .addon-detail-card__icon {
        width: 112px;
        height: 112px;
    }

    .addon-detail-card__actions {
        flex-direction: column;
        width: 100%;
    }

    .addon-detail-card__actions .hero-btn {
        width: 100%;
    }

    .about-split-card__image img {
        min-height: 260px;
    }

    .founder-card__image img {
        min-height: 260px;
    }

    .site-footer__top {
        grid-template-columns: 1fr;
    }

    .site-footer__button {
        width: 100%;
        min-width: 0;
    }

    .feature-list li,
    .info-card p,
    .subtitle,
    .auth-copy p,
    .contact-copy p,
    .section-heading p,
    .why-choose-inner p,
    .site-footer__brand p,
    .site-footer__contact p,
    .site-footer__cta p {
        font-size: 0.96rem;
    }

    .solution-body {
        padding: 24px 20px 28px;
    }

    .solution-image-wrap {
        height: 230px;
    }

    .solution-body p {
        min-height: 0;
    }

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

    .profile-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .profile-value {
        text-align: left;
    }
}

@media (max-width: 380px) {
    .brand img {
        width: 118px;
    }

    .main-nav {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 20px 16px;
        border-radius: 20px;
    }

    .contact-form {
        padding: 20px 16px;
        border-radius: 20px;
    }

    .contact-card {
        padding: 20px 16px;
        border-radius: 20px;
    }

    .contact-item {
        grid-template-columns: 44px 1fr;
        gap: 14px;
    }

    .contact-item__icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .solution-detail-card {
        padding: 22px 16px;
        border-radius: 20px;
    }

    .solution-hero,
    .solution-overview {
        border-radius: 20px;
    }

    .solution-hero__content,
    .solution-overview {
        padding: 22px 16px;
    }

    .solution-features-section {
        padding: 22px 16px 24px;
        border-radius: 20px;
    }

    .solution-feature-story-section {
        padding: 22px 16px 24px;
        border-radius: 20px;
    }

    .solution-value-section {
        padding: 22px 16px 24px;
        border-radius: 20px;
    }

    .solution-feature-card {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .solution-value-card {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .solution-story-card {
        border-radius: 16px;
    }

    .solution-story-card__image {
        height: 200px;
    }

    .solution-story-card__body {
        padding: 20px 16px 22px;
    }

    .solution-hero__content h1 {
        font-size: 2rem;
        max-width: none;
    }

    .solution-hero__visual,
    .solution-overview__media {
        min-height: 220px;
        border-radius: 16px;
    }

    .solution-overview__media--round {
        border-radius: 0;
    }

    .solution-detail-panel {
        padding: 20px 16px;
    }

    .slide-content h1 {
        font-size: 1.5rem;
    }

    .slider-controls {
        left: 16px;
        bottom: 18px;
    }
}
