:root {
    --bg: #eef5ff;
    --bg-deep: #dceaff;
    --surface: #ffffff;
    --surface-strong: #f8fbff;
    --surface-soft: #edf4ff;
    --primary: #0b63f3;
    --primary-strong: #0848bd;
    --primary-ink: #072a66;
    --accent: #5fb6ff;
    --text: #0f1f3d;
    --text-soft: #536887;
    --line: rgba(11, 99, 243, 0.12);
    --line-strong: rgba(11, 99, 243, 0.22);
    --shadow-lg: 0 30px 80px rgba(21, 70, 155, 0.16);
    --shadow-md: 0 18px 44px rgba(17, 66, 146, 0.12);
    --shadow-sm: 0 10px 26px rgba(17, 66, 146, 0.08);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: Aptos, "Segoe UI", Tahoma, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(95, 182, 255, 0.3), transparent 28%),
        radial-gradient(circle at 85% 0%, rgba(11, 99, 243, 0.12), transparent 22%),
        linear-gradient(180deg, #f8fbff 0%, #eef5ff 48%, #f7fbff 100%);
}

img {
    display: block;
    max-width: 100%;
}

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

button,
input,
textarea {
    font: inherit;
}

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

.page-shell {
    position: relative;
    overflow: clip;
}

.page-shell::before,
.page-shell::after {
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: 999px;
    filter: blur(10px);
}

.page-shell::before {
    top: 140px;
    right: -120px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(95, 182, 255, 0.22), transparent 70%);
}

.page-shell::after {
    top: 620px;
    left: -180px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(11, 99, 243, 0.14), transparent 72%);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(11, 99, 243, 0.08);
}

.topbar,
.site-nav,
.hero-actions,
.footer-inner,
.contact-meta,
.admin-header,
.admin-list-actions,
.client-strip-inner {
    display: flex;
    align-items: center;
}

.topbar,
.footer-inner,
.admin-header {
    justify-content: space-between;
}

.topbar {
    min-height: 82px;
    gap: 24px;
}

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

.brand-logo {
    width: 54px;
    height: 54px;
    object-fit: contain;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    padding: 6px;
    box-shadow: 0 16px 34px rgba(11, 99, 243, 0.16);
}

.brand strong,
h1,
h2,
h3 {
    font-family: "Aptos Display", "Trebuchet MS", "Segoe UI", sans-serif;
    letter-spacing: -0.04em;
}

.brand strong {
    display: block;
    font-size: 1.05rem;
}

.brand small,
.site-nav a,
.lead,
.section-heading p,
.project-body p,
.review-card p,
.hero-copy,
.flash,
.admin-list-item span,
.admin-list-item small {
    color: var(--text-soft);
}

.brand-mark {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0)),
        linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    box-shadow: 0 16px 34px rgba(11, 99, 243, 0.28);
}

.site-nav {
    gap: 10px;
    flex-wrap: wrap;
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(11, 99, 243, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary-ink);
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(17, 66, 146, 0.08);
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-6px) rotate(-45deg);
}

.site-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    transition: color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.site-nav a:hover {
    color: var(--primary-strong);
    background: rgba(11, 99, 243, 0.08);
    transform: translateY(-1px);
}

.site-nav a.is-active {
    color: var(--primary-strong);
    background: rgba(11, 99, 243, 0.1);
    font-weight: 700;
}

.button,
.nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.button:hover,
.nav-button:hover,
.admin-menu a:hover {
    transform: translateY(-2px);
}

.primary,
.nav-button {
    background: linear-gradient(135deg, var(--primary), #42a7ff);
    color: #fff;
    box-shadow: 0 16px 36px rgba(11, 99, 243, 0.28);
}

.ghost {
    color: var(--primary-ink);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.42);
    box-shadow: 0 10px 28px rgba(12, 56, 129, 0.12);
}

.hero {
    padding: 28px 0 0;
}

.hero-slider {
    position: relative;
    min-height: 700px;
    overflow: hidden;
    border-radius: 0 0 42px 42px;
    background:
        linear-gradient(135deg, #07285f 0%, #0b63f3 55%, #5db6ff 100%);
    box-shadow: var(--shadow-lg);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.18), transparent 18%),
        linear-gradient(140deg, rgba(6, 27, 68, 0.82), rgba(11, 99, 243, 0.58)),
        var(--hero-image, linear-gradient(135deg, rgba(11, 99, 243, 0.18), rgba(255, 255, 255, 0.06)));
    background-position: center, center, center;
    background-size: auto, auto, cover;
    transition: opacity 0.75s ease;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 18, 46, 0.82) 0%, rgba(4, 18, 46, 0.34) 50%, rgba(4, 18, 46, 0.12) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: 700px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 500px);
    align-items: center;
    gap: 56px;
    padding: 76px 0 102px;
    color: #fff;
}

.hero-text {
    max-width: 720px;
}

.hero-media {
    position: relative;
    width: min(100%, 540px);
    aspect-ratio: 5 / 6;
    justify-self: end;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.hero-media::before {
    content: "";
    position: absolute;
    inset: 12% 6% 4% 14%;
    border-radius: 44px;
    background: radial-gradient(circle at center, rgba(95, 182, 255, 0.34), rgba(11, 99, 243, 0.08) 58%, transparent 76%);
    filter: blur(18px);
    opacity: 0.95;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    border-radius: 34px;
    box-shadow: 0 24px 60px rgba(4, 28, 78, 0.22);
}

.hero-media.is-placeholder::before {
    inset: 18% 8% 8% 12%;
    border-radius: 38px;
    background:
        radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.22), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.03));
    filter: none;
}

.eyebrow,
.section-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 18px;
    padding: 9px 15px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.section-label {
    background: rgba(11, 99, 243, 0.08);
    color: var(--primary-strong);
}

.hero h1 {
    max-width: 720px;
    margin: 0 0 16px;
    font-size: clamp(3rem, 6vw, 5.7rem);
    line-height: 0.92;
}

.hero-subtitle {
    max-width: 580px;
    margin: 0 0 12px;
    font-size: 1.25rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.9);
}

.hero-copy {
    max-width: 620px;
    margin: 0 0 30px;
    font-size: 1.02rem;
    line-height: 1.78;
    color: rgba(255, 255, 255, 0.74);
}

.hero-actions {
    gap: 14px;
    flex-wrap: wrap;
}

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

.slider-dots button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
    cursor: pointer;
    transition: width 0.24s ease, background 0.24s ease;
}

.slider-dots button.is-active {
    width: 38px;
    background: #fff;
}

.client-strip {
    margin-top: -6px;
    padding: 42px 0 28px;
}

.client-strip-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.client-strip-head {
    max-width: 100%;
    margin-bottom: 0;
}

.client-strip-head .section-label {
    margin-bottom: 12px;
}

.client-strip-head h2 {
    margin: 0 0 10px;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1;
}

.client-strip-head p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.7;
}

.logo-slider {
    --logo-gap: 20px;
    --logo-slides-per-view: 4;
    position: relative;
}

.logo-slider-controls {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-bottom: 16px;
}

.logo-slider-arrow {
    min-width: 100px;
    padding: 12px 18px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: var(--primary-ink);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, opacity 0.22s ease, background 0.22s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 10px 24px rgba(17, 66, 146, 0.08);
}

.arrow-icon {
    font-size: 1.1em;
    display: inline-block;
}

.logo-slider-arrow:hover:not(:disabled) {
    transform: translateY(-2px);
    background: rgba(11, 99, 243, 0.06);
    box-shadow: 0 14px 30px rgba(17, 66, 146, 0.12);
}

.logo-slider-arrow:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.logo-viewport {
    overflow: hidden;
}

.logo-track {
    display: flex;
    gap: var(--logo-gap);
    transition: transform 0.5s ease;
    will-change: transform;
}

.logo-slide {
    flex: 0 0 calc((100% - (var(--logo-slides-per-view) - 1) * var(--logo-gap)) / var(--logo-slides-per-view));
}

.logo-card {
    min-height: 140px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 251, 255, 0.72));
    border: 0;
    box-shadow: 0 14px 30px rgba(17, 66, 146, 0.06);
    color: var(--primary-ink);
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.logo-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(11, 99, 243, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(11, 99, 243, 0.1);
}

.logo-card:hover::before {
    opacity: 1;
}

.logo-card-inner {
    display: grid;
    place-items: center;
    width: 100%;
    flex: 1;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 60px;
}

.logo-text {
    font-size: 0.85rem;
    line-height: 1.3;
}

.industry-type-badge {
    position: absolute;
    bottom: 6px;
    right: 6px;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(11, 99, 243, 0.12);
    color: var(--primary-ink);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0;
    transition: opacity 0.22s ease;
}

.logo-card:hover .industry-type-badge {
    opacity: 1;
}

.logo-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.logo-slider-dots button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(11, 99, 243, 0.2);
    cursor: pointer;
    transition: width 0.3s ease, background 0.3s ease;
}

.logo-slider-dots button.is-active {
    width: 32px;
    background: var(--primary);
}

.section {
    padding: 92px 0;
}

.split-section,
.tint-section {
    position: relative;
}

.tint-section {
    background:
        radial-gradient(circle at 10% 20%, rgba(95, 182, 255, 0.16), transparent 18%),
        linear-gradient(180deg, rgba(11, 99, 243, 0.03), rgba(255, 255, 255, 0));
}

.split-grid,
.contact-grid,
.admin-two-column {
    display: grid;
    gap: 28px;
}

.split-grid,
.contact-grid {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: start;
}

.section-heading {
    max-width: 710px;
    margin-bottom: 38px;
}

.section-heading h2,
.split-grid h2,
.contact-section h2 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1;
}

.section-heading p,
.lead {
    font-size: 1.04rem;
    line-height: 1.8;
}

.stat-grid,
.card-grid,
.admin-kpis {
    display: grid;
    gap: 22px;
}

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

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

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

.content-card,
.stat-card {
    position: relative;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.95));
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.content-card::before,
.stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(95, 182, 255, 0.5), rgba(255, 255, 255, 0.9));
}

.content-card {
    padding: 30px;
}

.stat-card {
    min-height: 150px;
    display: flex;
    align-items: flex-end;
    padding: 28px;
    background:
        radial-gradient(circle at top right, rgba(95, 182, 255, 0.18), transparent 35%),
        linear-gradient(180deg, #ffffff, #f1f7ff);
}

.stat-card strong {
    font-size: 1.15rem;
    line-height: 1.35;
}

.service-card,
.project-card,
.review-card {
    height: 100%;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-card:hover,
.project-card:hover,
.review-card:hover,
.logo-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--line-strong);
}

.service-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--surface-soft), #d9ebff);
    color: var(--primary-strong);
    font-weight: 800;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.service-card h3,
.project-body h3,
.review-card strong {
    margin: 0 0 12px;
}

.service-card p,
.project-body p,
.review-card p {
    margin: 0;
    line-height: 1.75;
}

.project-card {
    padding: 0;
}

.project-media {
    position: relative;
    aspect-ratio: 16 / 10;
    background:
        linear-gradient(160deg, rgba(11, 99, 243, 0.18), rgba(95, 182, 255, 0.32));
}

.project-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(5, 31, 79, 0.1));
}

.project-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--primary-ink);
    font-size: 2rem;
    font-weight: 800;
}

.project-body {
    padding: 24px;
}

.project-tag {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(11, 99, 243, 0.08);
    color: var(--primary-strong);
    font-size: 0.8rem;
    font-weight: 700;
}

.project-body a {
    display: inline-flex;
    align-items: center;
    margin-top: 18px;
    color: var(--primary-strong);
    font-weight: 700;
}

.review-card {
    background:
        radial-gradient(circle at top right, rgba(95, 182, 255, 0.14), transparent 30%),
        linear-gradient(180deg, #ffffff, #f8fbff);
}

.review-stars {
    margin-bottom: 16px;
    color: var(--primary);
    font-size: 1.1rem;
    letter-spacing: 0.12em;
}

.review-card footer {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 20%),
        linear-gradient(135deg, #083784 0%, #0b63f3 52%, #55b2ff 100%);
    color: #fff;
}

.contact-section::before {
    content: "";
    position: absolute;
    inset: auto -10% -120px auto;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 70%);
}

.contact-section .section-label {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.contact-section .lead,
.contact-section .contact-meta a {
    color: rgba(255, 255, 255, 0.84);
}

.contact-meta {
    gap: 18px;
    flex-wrap: wrap;
}

.contact-meta a {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.form-card {
    background: rgba(255, 255, 255, 0.98);
    color: var(--text);
    box-shadow: 0 24px 58px rgba(4, 28, 78, 0.22);
}

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

label {
    display: grid;
    gap: 8px;
}

label span {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-soft);
}

input,
textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input:focus,
textarea:focus {
    border-color: rgba(11, 99, 243, 0.35);
    box-shadow: 0 0 0 4px rgba(11, 99, 243, 0.08);
    background: #fbfdff;
}

.full-span {
    grid-column: 1 / -1;
}

.full-width {
    width: 100%;
}

.flash {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.94);
}

.flash.success {
    color: #14664b;
    border-color: rgba(20, 102, 75, 0.18);
}

.flash.error {
    color: #9f2637;
    border-color: rgba(159, 38, 55, 0.18);
}

.site-footer {
    padding: 34px 0 42px;
}

.footer-inner {
    gap: 18px;
    padding: 22px 26px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.82);
}

.footer-inner p {
    margin: 0;
    color: var(--text-soft);
}

.footer-inner a {
    color: var(--primary-strong);
    font-weight: 700;
}

.admin-body {
    min-height: 100vh;
}

.admin-shell {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    min-height: 100vh;
}

.admin-sidebar {
    padding: 28px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 28%),
        linear-gradient(180deg, #072b68 0%, #0b4ab8 100%);
    color: #fff;
}

.admin-menu {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.admin-menu a {
    padding: 14px 16px;
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.78);
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.admin-menu a.active {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.admin-main {
    padding: 34px;
}

.admin-form-card form {
    display: grid;
    gap: 16px;
}

.admin-two-column {
    grid-template-columns: minmax(0, 400px) minmax(0, 1fr);
}

.admin-list-item {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(11, 99, 243, 0.08);
}

.admin-list-item:last-child {
    border-bottom: 0;
}

.admin-list-item strong,
.admin-kpis strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.08rem;
}

.admin-list-actions {
    gap: 10px;
}

.admin-list-actions form {
    margin: 0;
}

.admin-list-actions button,
.admin-list-actions a,
.lead-item button {
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--primary-strong);
    cursor: pointer;
}

.checkbox-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-row input {
    width: auto;
}

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

.admin-login-card {
    width: min(520px, 100%);
}

@media (max-width: 1100px) {
    .hero-content {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
        gap: 36px;
    }

    .logo-slider {
        --logo-slides-per-view: 3;
    }
    
    .client-strip-inner {
        padding: 32px;
    }

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

    .card-grid,
    .admin-kpis,
    .stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .site-nav,
    .hero-actions,
    .footer-inner,
    .contact-meta,
    .admin-header,
    .admin-list-item,
    .admin-list-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .split-grid,
    .contact-grid,
    .admin-shell,
    .admin-two-column,
    .services-grid,
    .card-grid,
    .admin-kpis,
    .stat-grid {
        grid-template-columns: 1fr;
    }

    .hero-slider,
    .hero-content {
        min-height: 600px;
    }

    .topbar {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        min-height: auto;
        padding: 14px 0;
    }

    .brand {
        min-width: 0;
        flex: 1 1 auto;
        padding-right: 12px;
    }

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

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .site-nav {
        display: none;
        width: 100%;
        margin-top: 14px;
        padding: 14px;
        gap: 8px;
        border: 1px solid rgba(11, 99, 243, 0.08);
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.94);
        box-shadow: 0 20px 38px rgba(17, 66, 146, 0.08);
    }

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

    .site-nav a {
        width: 100%;
        padding: 12px 14px;
        border-radius: 14px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 28px;
        align-items: flex-start;
        padding: 56px 0 86px;
    }

    .hero-slider {
        border-radius: 0 0 30px 30px;
    }

    .hero-media {
        width: min(100%, 420px);
        justify-self: start;
        order: -1;
    }

    .logo-slider {
        --logo-slides-per-view: 2;
    }
    
    .client-strip-inner {
        padding: 28px;
    }

    .admin-main {
        padding: 22px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(var(--container), calc(100% - 20px));
    }

    .page-shell::before {
        top: 80px;
        right: -180px;
        width: 280px;
        height: 280px;
    }

    .page-shell::after {
        left: -220px;
        width: 280px;
        height: 280px;
    }

    .hero-content {
        min-height: 0;
        gap: 20px;
        padding: 30px 0 84px;
    }

    .hero-media {
        width: min(100%, 320px);
    }

    .hero h1 {
        font-size: clamp(2rem, 10vw, 2.7rem);
        line-height: 0.98;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    .hero-copy,
    .lead,
    .section-heading p {
        font-size: 0.96rem;
        line-height: 1.7;
    }

    .hero-actions,
    .contact-meta {
        width: 100%;
    }

    .hero-actions .button,
    .contact-meta a {
        width: 100%;
        justify-content: center;
    }

    .section {
        padding: 72px 0;
    }

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

    .content-card,
    .stat-card,
    .client-strip-inner,
    .footer-inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .logo-slider {
        --logo-slides-per-view: 1;
        --logo-gap: 12px;
    }
    
    .logo-card {
        min-height: 120px;
        padding: 18px 14px;
        border-radius: 16px;
        font-size: 0.9rem;
    }

    .logo-slider-controls {
        justify-content: space-between;
        gap: 8px;
        margin-bottom: 12px;
    }

    .logo-slider-arrow {
        min-width: 0;
        flex: 1;
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .project-body,
    .content-card:not(.project-card) {
        padding: 22px 18px;
    }

    .stat-card {
        min-height: 120px;
        padding: 22px 18px;
    }

    .footer-inner {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .brand {
        gap: 10px;
    }

    .brand-logo,
    .brand-mark {
        width: 46px;
        height: 46px;
    }

    .hero-slider {
        border-radius: 0 0 24px 24px;
    }

    .content-card,
    .stat-card,
    .client-strip-inner,
    .footer-inner {
        padding-left: 16px;
        padding-right: 16px;
    }

    .contact-section::before {
        width: 240px;
        height: 240px;
    }
}
