:root {
    --bg: #f5f9fd;
    --white: #ffffff;
    --ink: #10233f;
    --muted: #5b6f8c;
    --line: #d9e6f4;
    --brand: #007dcf;
    --brand-dark: #0063a8;
    --brand-soft: #e6f3fb;
    --shadow: 0 10px 30px rgba(0, 125, 207, 0.08);
    --radius: 16px;
    --container: 1140px;
    --font: "Plus Jakarta Sans", sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(245, 249, 253, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(217, 230, 244, 0.9);
}

.header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand {
    flex-shrink: 0;
}

.brand img {
    width: 150px;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.site-nav a {
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 600;
    transition: 0.2s ease;
}

.site-nav a:hover {
    color: var(--brand-dark);
    background: var(--brand-soft);
}

.site-nav a.active {
    color: var(--brand-dark);
    background: var(--brand-soft);
}

.header-actions {
    flex-shrink: 0;
}

.nav-toggle {
    display: none;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    place-items: center;
    gap: 5px;
    flex-direction: column;
    padding: 0;
}

.nav-toggle span {
    width: 16px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 44px;
    padding: 0.7rem 1.2rem;
    border-radius: 12px;
    border: 1px solid transparent;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}

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

.btn-sm {
    min-height: 38px;
    padding: 0.45rem 0.95rem;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--brand);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(0, 125, 207, 0.25);
}

.btn-primary:hover {
    background: var(--brand-dark);
}

.btn-outline {
    background: var(--white);
    border-color: var(--line);
    color: var(--ink);
}

.btn-outline:hover {
    border-color: var(--brand);
    color: var(--brand-dark);
}

.btn-light {
    background: var(--white);
    color: var(--brand-dark);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand-dark);
    font-size: 0.82rem;
    font-weight: 700;
}

.hero,
.page-hero {
    padding: 2.4rem 0 2.6rem;
}

.hero-split {
    text-align: left;
}

.hero-grid,
.page-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: start;
}

.hero-copy {
    padding-top: 0.2rem;
}

.hero-inner,
.page-hero .container:not(.page-hero-grid) {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
}

.page-hero-media {
    text-align: left;
}

.page-hero-grid img,
.panel-image {
    width: 100%;
    border-radius: 20px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    background: var(--white);
    object-fit: cover;
}

.hero h1,
.page-hero h1 {
    margin: 1rem 0 0;
    font-size: clamp(2rem, 4.4vw, 3.2rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
    font-weight: 800;
}

.hero h1 span,
.page-hero h1 span,
.section-head h2 span,
.split h2 span {
    color: var(--brand);
}

.hero-lead,
.page-hero p {
    margin: 1rem 0 0;
    max-width: 540px;
    color: var(--muted);
    font-size: 1.05rem;
}

.page-hero-media .hero-lead,
.page-hero-media p {
    margin-left: 0;
}

.hero-actions {
    display: flex;
    justify-content: flex-start;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.35rem;
}

.hero-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.35rem;
    max-width: 540px;
}

.tech-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    min-height: 34px;
    max-width: 100%;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--brand-dark);
    box-shadow: 0 4px 12px rgba(0, 125, 207, 0.06);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
}

.hero-tech .tech-item svg,
.tech-item svg {
    width: 16px !important;
    height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
    flex: 0 0 16px;
    display: block;
    overflow: hidden;
}

.hero-slider {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

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

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease;
    display: grid;
    grid-template-rows: 1fr auto;
}

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

.slide-media {
    min-height: 280px;
    background: #eef5fb;
}

.slide-media img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.slide-caption {
    padding: 1rem 1.15rem 1.15rem;
}

.slide-caption h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--ink);
}

.slide-caption p {
    margin: 0.4rem 0 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 1rem 1rem;
    border-top: 1px solid var(--line);
}

.slider-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--brand-dark);
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
}

.slider-btn:hover {
    border-color: var(--brand);
    background: var(--brand-soft);
}

.slider-dots {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.slider-dots button {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 0;
    padding: 0;
    background: #c7d8ea;
    cursor: pointer;
}

.slider-dots button.is-active {
    width: 22px;
    background: var(--brand);
}

.section {
    padding: 3.5rem 0;
}

.section.soft {
    background: linear-gradient(180deg, #eaf4fb 0%, #f7f8fa 100%);
}

.section-head {
    margin-bottom: 2rem;
}

.section-head.center,
.center-cta {
    text-align: center;
}

.section-head h2,
.split h2,
.content-block h2 {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-weight: 800;
}

.section-head p,
.split > div > p,
.content-block p {
    margin: 0.8rem 0 0;
    color: var(--muted);
}

.card-grid {
    display: grid;
    gap: 1rem;
}

.card-grid.three {
    grid-template-columns: repeat(3, 1fr);
}

.card-grid.four {
    grid-template-columns: repeat(4, 1fr);
}

.feature-card,
.client-card,
.info-card,
.contact-form,
.preview-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.feature-card {
    padding: 1.35rem;
}

.icon-wrap {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--brand);
    background: var(--brand-soft);
    margin-bottom: 0.9rem;
}

.icon-wrap svg {
    width: 22px;
    height: 22px;
}

.feature-card h3,
.client-card strong,
.preview-card strong {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
}

.feature-card p,
.preview-card p {
    margin: 0.55rem 0 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.client-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 210px;
    padding: 1.35rem 1.2rem 1.25rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

a.client-card:hover {
    border-color: var(--brand);
    box-shadow: 0 14px 34px rgba(0, 125, 207, 0.14);
    transform: translateY(-2px);
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 88px;
    margin-bottom: 0.95rem;
    padding: 0.65rem 0.85rem;
    border-radius: 12px;
    background: linear-gradient(180deg, #f7fbfe 0%, var(--brand-soft) 100%);
    border: 1px solid rgba(0, 125, 207, 0.12);
}

.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.client-card strong {
    color: var(--ink);
}

.client-card span {
    display: block;
    margin-top: 0.35rem;
    color: var(--muted);
    font-size: 0.9rem;
}

a.client-card:hover strong {
    color: var(--brand);
}

.split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: center;
}

.check-list {
    list-style: none;
    margin: 1.3rem 0 1.6rem;
    padding: 0;
    display: grid;
    gap: 0.7rem;
}

.check-list li {
    position: relative;
    padding-left: 1.6rem;
    font-weight: 600;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--brand);
    font-weight: 800;
}

.preview-panel {
    display: grid;
    gap: 1rem;
}

.preview-card {
    padding: 1.5rem;
}

.preview-card.large {
    min-height: 260px;
    display: grid;
    align-content: center;
    gap: 0.7rem;
    background:
        radial-gradient(circle at 80% 20%, rgba(0, 125, 207, 0.18), transparent 35%),
        var(--white);
}

.preview-card a {
    display: inline-block;
    margin-top: 0.8rem;
    color: var(--brand-dark);
    font-weight: 700;
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.stat-row div {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1rem;
    text-align: center;
}

.stat-row b {
    display: block;
    font-size: 1.2rem;
}

.stat-row span {
    color: var(--muted);
    font-size: 0.85rem;
}

.center-cta {
    margin-top: 1.75rem;
}

.cta-band {
    padding: 2.5rem 0 4rem;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.6rem 1.8rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #007dcf, #0063a8);
    color: var(--white);
    box-shadow: 0 16px 40px rgba(0, 99, 168, 0.25);
}

.cta-inner h2 {
    margin: 0;
    font-size: 1.5rem;
}

.cta-inner p {
    margin: 0.35rem 0 0;
    opacity: 0.92;
}

.narrow {
    max-width: 920px;
}

.content-block {
    margin-bottom: 2rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.25rem;
    align-items: start;
}

.contact-info {
    display: grid;
    gap: 0.9rem;
}

.info-card {
    padding: 1.1rem 1.2rem;
}

.info-card span {
    display: block;
    color: var(--brand-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.info-card p,
.info-card a {
    margin: 0;
    font-weight: 600;
}

.contact-map-card {
    padding-bottom: 1rem;
}

.contact-map-frame {
    margin-top: 0.55rem;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #eef5fb;
    aspect-ratio: 4 / 3;
}

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

.contact-map-link {
    display: inline-flex !important;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.75rem !important;
    color: var(--brand) !important;
    font-weight: 700;
}

.contact-map-link svg {
    width: 16px;
    height: 16px;
}

.contact-map-link:hover {
    color: var(--brand-dark) !important;
}

.contact-form {
    padding: 1.35rem;
    display: grid;
    gap: 0.9rem;
}

.field {
    display: grid;
    gap: 0.35rem;
}

.field label {
    font-weight: 700;
    font-size: 0.92rem;
}

.field input,
.field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.8rem 0.95rem;
    background: #fbfbfc;
    outline: none;
}

.field input:focus,
.field textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(0, 125, 207, 0.12);
}

.field small {
    color: #dc2626;
}

.form-success {
    background: var(--brand-soft);
    color: var(--brand-dark);
    border: 1px solid rgba(0, 125, 207, 0.25);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    font-weight: 700;
}

.form-error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
    border-radius: 12px;
    padding: 0.8rem 1rem;
    font-weight: 700;
}

.contact-success {
    background: #ecfdf5;
    border: 1px solid #86efac;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(22, 163, 74, 0.08);
    padding: 2rem 1.5rem;
    text-align: center;
    display: grid;
    gap: 0.75rem;
    place-items: center;
    align-content: start;
}

.contact-success-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #15803d;
    background: #dcfce7;
    margin-bottom: 0.25rem;
}

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

.contact-success h2 {
    margin: 0;
    color: #166534;
    font-size: 1.45rem;
}

.contact-success p {
    margin: 0;
    color: #166534;
    font-weight: 600;
    max-width: 28rem;
}

.contact-success .btn {
    margin-top: 0.5rem;
}

.captcha-field {
    background: var(--brand-soft);
    border: 1px solid rgba(0, 125, 207, 0.28);
    border-radius: 12px;
    padding: 0.95rem 1rem;
}

.captcha-field label {
    color: var(--brand-dark);
}

.captcha-field input {
    max-width: 140px;
    background: var(--white);
    border-color: rgba(0, 125, 207, 0.35);
}

.site-footer {
    background: #0f172a;
    color: rgba(255, 255, 255, 0.75);
    padding: 3rem 0 1.25rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1.1fr;
    gap: 2rem;
}

.footer-brand img {
    width: 140px;
    margin-bottom: 0.9rem;
    filter: brightness(0) invert(1);
}

.footer-brand p,
.footer-grid p {
    margin: 0;
}

.footer-grid h4 {
    margin: 0 0 0.8rem;
    color: #fff;
}

.footer-grid a:not(.social-btn) {
    display: block;
    margin-bottom: 0.45rem;
    color: rgba(255, 255, 255, 0.72);
}

.footer-grid a:not(.social-btn):hover {
    color: #7ec4f0;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 1.1rem;
    flex-wrap: wrap;
}

.footer-social .social-btn {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    margin: 0;
    border-radius: 50%;
    background: #007DCF;
    color: #fff;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 16px rgba(0, 125, 207, 0.28);
}

.footer-social .social-btn svg {
    width: 18px;
    height: 18px;
}

.footer-social .social-btn:hover {
    background: #0063a8;
    color: #fff;
    transform: translateY(-2px);
}

.footer-map {
    margin-top: 1.25rem;
}

.footer-map h4 {
    margin-bottom: 0.7rem;
}

.footer-map-frame {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(126, 196, 240, 0.28);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    background: #0b1729;
    aspect-ratio: 16 / 10;
}

.footer-map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 180px;
    border: 0;
}

.footer-map-link {
    display: inline-block !important;
    margin-top: 0.65rem !important;
    color: #7ec4f0 !important;
    font-weight: 600;
    font-size: 0.9rem;
}

.footer-map-link:hover {
    color: #fff !important;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.92rem;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
}

.footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.72);
}

.footer-links a:hover {
    color: #7ec4f0;
}

.faq-list {
    display: grid;
    gap: 0.8rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.9rem 1rem;
    box-shadow: var(--shadow);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--ink);
    list-style: none;
}

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

.faq-item p {
    margin: 0.7rem 0 0;
    color: var(--muted);
}

.legal-content h2 {
    margin: 1.6rem 0 0.55rem;
    font-size: 1.2rem;
}

.legal-content p,
.legal-content a {
    color: var(--muted);
}

.legal-content a {
    color: var(--brand-dark);
    font-weight: 600;
}

.legal-updated {
    font-weight: 700;
    color: var(--brand-dark) !important;
}

@media (max-width: 980px) {
    .card-grid.three,
    .card-grid.four,
    .split,
    .contact-layout,
    .footer-grid,
    .hero-grid,
    .page-hero-grid {
        grid-template-columns: 1fr 1fr;
    }

    .header-actions {
        display: none;
    }
}

.ceo-section {
    padding-top: 1rem;
}

.ceo-panel {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
    align-items: stretch;
    background: linear-gradient(145deg, #0b1f38 0%, #102a4a 55%, #0d3a6b 100%);
    border: 1px solid rgba(0, 125, 207, 0.35);
    border-radius: 24px;
    padding: 1.4rem;
    box-shadow: 0 24px 50px rgba(7, 24, 51, 0.18);
    overflow: hidden;
}

.ceo-photo-wrap {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 3px solid #007DCF;
    box-shadow:
        0 0 0 6px rgba(0, 125, 207, 0.18),
        0 18px 40px rgba(0, 0, 0, 0.28);
    background: #071526;
    min-height: 420px;
}

.ceo-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.ceo-copy {
    color: rgba(255, 255, 255, 0.9);
    padding: 1rem 0.6rem 0.6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ceo-label {
    margin: 0 0 0.45rem;
    color: #7ec4f0;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ceo-copy h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    letter-spacing: 0.02em;
}

.ceo-rule {
    display: block;
    width: 72px;
    height: 3px;
    margin: 0.9rem 0 1.2rem;
    border-radius: 99px;
    background: linear-gradient(90deg, #007DCF, rgba(126, 196, 240, 0.2));
    position: relative;
}

.ceo-rule::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 10px;
    height: 10px;
    border: 2px solid #fff;
    border-radius: 50%;
    transform: translate(-20%, -50%);
    background: #007DCF;
}

.ceo-copy > p:not(.ceo-label) {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
    font-size: 1rem;
}

.ceo-sign {
    margin-top: 1.6rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ceo-sign strong {
    display: block;
    color: #fff;
    font-size: 1.15rem;
}

.ceo-sign span {
    display: block;
    margin-top: 0.25rem;
    color: #7ec4f0;
    font-weight: 600;
}

@media (max-width: 980px) {
    .ceo-panel {
        grid-template-columns: 1fr;
    }

    .ceo-photo-wrap {
        min-height: 360px;
        max-height: 520px;
    }
}

.team-section {
    padding-top: 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.team-card {
    text-align: center;
}

.team-photo {
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(0, 125, 207, 0.28);
    box-shadow: var(--shadow);
    background: #eef5fb;
    aspect-ratio: 3 / 4;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.team-card h3 {
    margin: 0.85rem 0 0.2rem;
    font-size: 1.02rem;
    color: var(--navy, #10233f);
}

.team-card span {
    color: var(--brand);
    font-weight: 700;
    font-size: 0.9rem;
}

@media (max-width: 1100px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 760px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin-inline: auto;
    }
}

@media (max-width: 760px) {
    .nav-toggle {
        display: inline-grid;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: calc(100% + 0.4rem);
        left: 1rem;
        right: 1rem;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 14px;
        box-shadow: var(--shadow);
        padding: 0.5rem;
        flex-direction: column;
        align-items: stretch;
    }

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

    .site-nav a {
        padding: 0.8rem 0.9rem;
    }

    .card-grid.three,
    .card-grid.four,
    .split,
    .contact-layout,
    .footer-grid,
    .stat-row,
    .hero-grid,
    .page-hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        justify-content: flex-start;
    }

    .slider-viewport {
        min-height: 380px;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero,
    .page-hero {
        padding: 3rem 0 2rem;
    }
}


/* Mobile hardening */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

@media (max-width: 760px) {
    .hero-tech {
        max-width: 100%;
        gap: 0.45rem;
    }
    .tech-item {
        font-size: 0.72rem;
        padding: 0.3rem 0.55rem;
        min-height: 30px;
    }
    .hero-copy h1 {
        font-size: clamp(1.7rem, 8vw, 2.2rem);
    }
    .hero-slider {
        order: 2;
    }
    .hero-copy {
        order: 1;
    }
    .slider-viewport {
        min-height: 320px;
    }
    .ceo-panel {
        padding: 1rem;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .footer-social .social-btn {
        width: 38px;
        height: 38px;
    }
}
