@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
    --primary: #086ad8;
    --primary-deep: #002fa6;
    --primary-dark: #071d49;
    --accent: #d2a98e;
    --ink: #333333;
    --muted: #696969;
    --soft: #f8f8f8;
    --soft-blue: #eff2f6;
    --line: #e4e8f6;
    --white: #ffffff;
    --shadow: 0 18px 48px rgba(51, 51, 51, .08);
    --shadow-strong: 0 24px 70px rgba(15, 35, 77, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--muted);
    font-family: Poppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14px;
    line-height: 1.72;
    background: var(--white);
}
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
h1, h2, h3, h4, h5, h6 { color: var(--ink); font-weight: 600; line-height: 1.24; margin: 0; letter-spacing: 0; }
p { margin: 0; }
.container { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }

.top-strip {
    background: #f8fbff;
    border-bottom: 1px solid #eeeeee;
    font-size: 12px;
}
.top-strip .container {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.top-strip i { color: var(--primary); }
.top-strip a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary-deep);
    white-space: nowrap;
}
.top-strip .container > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.top-links { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: flex-end; }
.top-links span { color: var(--muted); }
.top-consult {
    min-height: 30px;
    padding: 0 12px;
    border: 1px solid rgba(8, 106, 216, .18);
    border-radius: 999px;
    background: var(--white);
    font-weight: 600;
}
.top-consult:hover {
    color: var(--white);
    background: var(--primary);
}
.top-consult:hover i {
    color: var(--white);
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 8px 30px rgba(51, 51, 51, .055);
    backdrop-filter: blur(14px);
}
.nav {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}
.brand { flex: 0 0 auto; }
.brand img { width: 172px; height: auto; }
.nav-links {
    display: flex;
    gap: 2px;
    align-items: center;
    color: var(--ink);
    font-weight: 600;
    font-size: 13px;
    flex: 1 1 auto;
    justify-content: center;
    flex-wrap: nowrap;
}
.nav-links > a,
.nav-item > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 86px;
    padding: 0 11px;
    white-space: nowrap;
}
.nav-links > a:after,
.nav-item > a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 24px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}
.nav-links > a:hover,
.nav-item:hover > a { color: var(--primary); }
.nav-links > a:hover:after,
.nav-item:hover > a:after { transform: scaleX(1); }
.nav-item { position: relative; }
.nav-item.has-menu > a { padding-right: 22px; }
.nav-item.has-menu > a:before {
    content: "";
    position: absolute;
    right: 8px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: translateY(-65%) rotate(45deg);
}
.mega-menu {
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    min-width: 720px;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-top: 3px solid var(--primary);
    border-radius: 0 0 8px 8px;
    box-shadow: var(--shadow-strong);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 16px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    pointer-events: none;
}
.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    pointer-events: auto;
}
.mega-intro {
    display: grid;
    gap: 8px;
    padding: 4px 22px 4px 0;
    border-right: 1px solid var(--line);
}
.mega-intro span {
    color: #ababab;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.mega-intro strong {
    color: var(--primary-deep);
    font-size: 21px;
    line-height: 1.34;
}
.mega-intro p { font-weight: 400; }
.services-menu {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 24px;
}
.mega-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.mega-menu a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 6px;
    color: var(--ink);
    font-weight: 500;
    line-height: 1.35;
}
.mega-menu a:hover {
    background: #f4f8ff;
    color: var(--primary);
}
.compact-menu {
    min-width: 310px;
    left: 0;
    transform: translate(0, 16px);
    padding: 14px;
}
.nav-item:hover .compact-menu { transform: translate(0, 0); }
.compact-menu.small { min-width: 230px; }
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}
.mobile-nav { display: none; }

.btn, .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;
    border-radius: 5px;
    border: 1px solid transparent;
    font-weight: 500;
    font-size: 13px;
    line-height: 1.2;
    white-space: nowrap;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover, .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(8, 106, 216, .18); }
.btn.primary, .nav-cta { background: var(--primary); color: var(--white); border-color: var(--primary); }
.nav-cta.ghost {
    background: transparent;
    color: var(--primary);
    border-color: #cfe0f6;
}

@media (max-width: 1280px) {
    .brand img { width: 152px; }
    .nav-links { font-size: 12px; }
    .nav-links > a,
    .nav-item > a { padding-left: 8px; padding-right: 8px; }
    .nav-item.has-menu > a { padding-right: 19px; }
    .nav-actions .ghost { display: none; }
    .nav-cta { padding-inline: 22px; }
}
.nav-cta.ghost:hover {
    background: #f4f8ff;
}
.btn.secondary { background: var(--white); color: var(--primary); border-color: var(--primary); }
.btn.warm { background: var(--accent); color: var(--white); border-color: var(--accent); }

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 16% 18%, rgba(8, 106, 216, .10), transparent 26%),
        linear-gradient(120deg, #f4edd9 0%, #ffffff 42%, #eef5ff 100%);
}
.hero-grid {
    min-height: 670px;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 34px;
    align-items: center;
    padding: 84px 0 74px;
}
.eyebrow {
    color: #ababab;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 13px;
    font-weight: 500;
}
.hero h1 {
    max-width: 720px;
    margin-top: 18px;
    color: var(--primary-deep);
    font-size: clamp(41px, 6.5vw, 71px);
    font-weight: 600;
    line-height: 1.08;
}
.hero .lead {
    max-width: 640px;
    margin-top: 24px;
    color: var(--ink);
    font-size: 18px;
}
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}
.hero-proof span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid rgba(8, 106, 216, .15);
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(15, 35, 77, .06);
}
.hero-art {
    position: relative;
    min-height: 540px;
    transform-style: preserve-3d;
}
.hero-art .main-figure {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(620px, 100%);
    filter: drop-shadow(0 30px 48px rgba(0, 47, 166, .18));
}
.hero-art .float-card {
    position: absolute;
    left: 2%;
    top: 8%;
    width: 250px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--shadow);
}
.float-card strong { display: block; color: var(--primary-deep); font-size: 23px; font-weight: 600; }
.float-card span { color: var(--muted); font-size: 13px; }
.hero-art .orbit {
    position: absolute;
    right: 7%;
    top: 5%;
    width: 126px;
    height: 126px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: var(--white);
    font-weight: 600;
    background: var(--primary);
    box-shadow: 0 22px 42px rgba(8, 106, 216, .25);
    animation: pulseBadge 3.8s ease-in-out infinite;
}
.architecture-orbit {
    position: absolute;
    inset: 34px 22px 20px;
    pointer-events: none;
    border: 1px solid rgba(8, 106, 216, .12);
    border-radius: 50%;
    animation: slowSpin 18s linear infinite;
}
.architecture-orbit span {
    position: absolute;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: var(--primary-deep);
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(8, 106, 216, .14);
    box-shadow: 0 14px 28px rgba(15, 35, 77, .08);
    font-size: 13px;
    font-weight: 700;
    animation: reverseSpin 18s linear infinite;
}
.architecture-orbit span:nth-child(1) { left: 14%; top: 5%; }
.architecture-orbit span:nth-child(2) { right: 7%; top: 28%; }
.architecture-orbit span:nth-child(3) { left: 28%; bottom: 4%; }
.architecture-orbit span:nth-child(4) { right: 22%; bottom: 12%; }
@keyframes slowSpin {
    to { transform: rotate(360deg); }
}
@keyframes reverseSpin {
    to { transform: rotate(-360deg); }
}
@keyframes pulseBadge {
    0%, 100% { transform: translateY(0); box-shadow: 0 22px 42px rgba(8, 106, 216, .25); }
    50% { transform: translateY(-8px); box-shadow: 0 28px 52px rgba(8, 106, 216, .32); }
}

.quick-offer {
    position: relative;
    z-index: 4;
    margin-top: -44px;
}
.quick-offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
    box-shadow: var(--shadow-strong);
}
.quick-offer a {
    display: grid;
    gap: 7px;
    padding: 26px 30px;
    border-right: 1px solid var(--line);
    transition: background .18s ease, transform .18s ease;
}
.quick-offer a:last-child { border-right: 0; }
.quick-offer a:hover {
    background: #f5f9ff;
}
.quick-offer strong {
    color: var(--primary-deep);
    font-size: 17px;
    font-weight: 600;
}
.quick-offer span { color: var(--muted); }

.metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    box-shadow: 0 -1px 0 var(--line) inset;
}
.metric {
    padding: 34px 28px;
    text-align: center;
    border-right: 1px solid var(--line);
}
.metric:last-child { border-right: 0; }
.metric strong {
    display: block;
    color: var(--primary);
    font-size: 41px;
    font-weight: 500;
    line-height: 1;
}
.metric span { color: var(--ink); }

.trust-marquee {
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: var(--white);
}
.marquee-track {
    width: max-content;
    display: flex;
    gap: 12px;
    padding: 18px 0;
    animation: marquee 34s linear infinite;
}
.marquee-track span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--primary-deep);
    background: #f7fbff;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}
.trust-marquee:hover .marquee-track {
    animation-play-state: paused;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.js .reveal,
.js .card,
.js .detail-block {
    opacity: 0;
    transform: translateY(22px);
}
.js .reveal.is-visible,
.js .card.is-visible,
.js .detail-block.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .58s ease, transform .58s ease, box-shadow .22s ease, border-color .22s ease;
}

.section { padding: 96px 0; }
.section.soft { background: var(--soft); }
.section.blue-soft { background: var(--soft-blue); }
.section.dark {
    background: #111d34;
    color: var(--white);
}
.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 26px;
    margin-bottom: 44px;
}
.section-head > .btn {
    flex: 0 0 auto;
    min-width: 132px;
}
.section h2, .page-hero h1 {
    margin-top: 12px;
    font-size: clamp(31px, 4.8vw, 47px);
    color: var(--ink);
    font-weight: 600;
}
.section-head p { max-width: 480px; }
.dark h2, .dark h3, .dark .eyebrow { color: var(--white); }
.dark p { color: rgba(255, 255, 255, .78); }

.roadmap-section { padding: 78px 0; }
.operating-system {
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(6, 20, 48, .95), rgba(12, 52, 106, .92)),
        url("/images/brand/ecs-impact.jpg");
    background-size: cover;
    background-position: center;
    color: var(--white);
}
.operating-system h2,
.operating-system h3 {
    color: var(--white);
}
.operating-system p {
    max-width: 560px;
    margin-top: 18px;
    color: rgba(255, 255, 255, .76);
}
.command-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 54px;
    align-items: center;
}
.command-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}
.command-tabs button {
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    color: rgba(255,255,255,.84);
    background: rgba(255,255,255,.06);
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}
.command-tabs button.active,
.command-tabs button:hover {
    color: #111d34;
    background: var(--accent);
    border-color: var(--accent);
}
.command-panel {
    position: relative;
    min-height: 430px;
    padding: 34px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 10px;
    background: rgba(255,255,255,.08);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .18);
    backdrop-filter: blur(16px);
}
.command-track {
    position: absolute;
    inset: 34px;
    display: grid;
    align-content: center;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .28s ease, transform .28s ease;
    pointer-events: none;
}
.command-track.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.command-track span {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: 12px;
    font-weight: 700;
}
.command-track h3 {
    max-width: 620px;
    margin-top: 12px;
    font-size: clamp(27px, 4vw, 41px);
}
.command-track ul {
    display: grid;
    gap: 12px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}
.command-track li {
    position: relative;
    padding: 14px 16px 14px 42px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    color: rgba(255,255,255,.84);
    background: rgba(255,255,255,.06);
}
.command-track li:before {
    content: "";
    position: absolute;
    left: 17px;
    top: 22px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}
.command-lines {
    position: absolute;
    inset: 0;
    opacity: .45;
    pointer-events: none;
}
.command-lines i {
    position: absolute;
    height: 1px;
    width: 52%;
    background: linear-gradient(90deg, transparent, rgba(210,169,142,.7), transparent);
    animation: scanLine 5s linear infinite;
}
.command-lines i:nth-child(1) { top: 20%; left: -20%; }
.command-lines i:nth-child(2) { top: 40%; right: -18%; animation-delay: .8s; }
.command-lines i:nth-child(3) { top: 62%; left: -15%; animation-delay: 1.6s; }
.command-lines i:nth-child(4) { top: 82%; right: -22%; animation-delay: 2.4s; }
@keyframes scanLine {
    0% { transform: translateX(-20%); opacity: 0; }
    20%, 70% { opacity: 1; }
    100% { transform: translateX(160%); opacity: 0; }
}
.roadmap-wrap {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 54px;
    align-items: center;
}
.roadmap-wrap > div:first-child p {
    max-width: 470px;
    margin-top: 18px;
}
.roadmap {
    position: relative;
    display: grid;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 18px 48px rgba(51, 51, 51, .06);
}
.roadmap:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 34px;
    right: 34px;
    height: 1px;
    background: rgba(8, 106, 216, .16);
}
.roadmap div {
    position: relative;
    display: grid;
    grid-template-columns: 58px 130px 1fr;
    gap: 18px;
    align-items: center;
    padding: 24px 30px;
    border-bottom: 1px solid var(--line);
}
.roadmap div:last-child { border-bottom: 0; }
.roadmap span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--white);
    background: var(--primary);
    font-size: 13px;
    font-weight: 700;
}
.roadmap strong {
    color: var(--primary-deep);
    font-size: 17px;
    font-weight: 600;
}
.roadmap p {
    margin: 0;
    color: var(--muted);
}

.grid { display: grid; gap: 30px; }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.grid.three { grid-template-columns: repeat(3, 1fr); }
.grid.four { grid-template-columns: repeat(4, 1fr); }
.card {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 34px;
    background: var(--white);
    box-shadow: 0 0 0 rgba(51, 51, 51, 0);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
a.card:hover, .card:hover {
    transform: translateY(-6px);
    border-color: rgba(8, 106, 216, .22);
    box-shadow: var(--shadow);
}
.card h3 {
    margin: 0 0 14px;
    font-size: 23px;
    font-weight: 600;
}
.card p { margin: 0 0 20px; }
.service-card img { width: 68px; height: 74px; object-fit: contain; margin-bottom: 24px; }
.service-card {
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
}
.service-card h3 { min-height: 58px; }
.service-card p { flex: 1; }
.service-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 34px;
    right: 34px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d2a98e, transparent);
    opacity: .75;
}
.industry-card {
    isolation: isolate;
    min-height: 230px;
    overflow: hidden;
}
.industry-card:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: linear-gradient(135deg, rgba(255,255,255,.94), rgba(244,248,255,.86)), var(--industry-bg);
    background-size: cover;
    background-position: center;
    opacity: .72;
    transition: transform .22s ease, opacity .22s ease;
}
.industry-card:after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -34px;
    z-index: 1;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(8, 106, 216, .08);
}
.industry-card h3,
.industry-card p {
    position: relative;
    z-index: 2;
}
a.industry-card:hover:before {
    opacity: .86;
    transform: scale(1.04);
}
.card-cta {
    display: inline-grid;
    place-items: center;
    align-items: center;
    width: 44px;
    height: 44px;
    margin: 18px auto 0;
    border-radius: 50%;
    color: var(--primary-deep);
    background: rgba(210, 169, 142, .22);
    font-weight: 600;
    font-size: 19px;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}
a.card:hover .card-cta {
    color: var(--white);
    background: #d2a98e;
    transform: translateX(2px);
}
.portfolio-lab {
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(210, 169, 142, .20), transparent 28%),
        linear-gradient(135deg, #f8f8f8, #ffffff 48%, #eef5ff);
}
.portfolio-lab .section-head {
    align-items: flex-start;
}
.portfolio-lab .section-head p {
    max-width: 700px;
    margin-top: 14px;
}
.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: -14px 0 34px;
}
.portfolio-filters button {
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--primary-deep);
    background: var(--white);
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.portfolio-filters button.active,
.portfolio-filters button:hover {
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}
.portfolio-panel {
    display: none;
}
.portfolio-panel.active {
    display: block;
    animation: portfolioFade .24s ease;
}
@keyframes portfolioFade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.portfolio-card {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    border-radius: 10px;
    background: #111d34;
    box-shadow: var(--shadow);
    transition: transform .22s ease, box-shadow .22s ease;
}
.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
}
.portfolio-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .58;
    transform: scale(1.02);
    transition: transform .32s ease, opacity .32s ease;
}
.portfolio-card:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(7, 29, 73, .10), rgba(7, 29, 73, .92));
}
.portfolio-card:hover img {
    opacity: .7;
    transform: scale(1.08);
}
.portfolio-card div {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 34px;
}
.portfolio-card span {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
    font-weight: 700;
}
.portfolio-card h3 {
    max-width: 560px;
    color: var(--white);
    font-size: 26px;
}
.portfolio-card p {
    max-width: 560px;
    margin-top: 12px;
    color: rgba(255,255,255,.78);
}
.portfolio-card strong {
    display: block;
    margin-top: 20px;
    color: var(--white);
    font-size: 22px;
    font-weight: 600;
}
.portfolio-card small {
    display: inline-flex;
    margin-top: 18px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.portfolio-taxonomy {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 26px;
}
.portfolio-taxonomy div,
.portfolio-taxonomy a {
    display: block;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .74);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.portfolio-taxonomy a:hover {
    transform: translateY(-4px);
    border-color: rgba(8, 106, 216, .24);
    box-shadow: var(--shadow);
}
.portfolio-taxonomy-wide {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 0;
}
.portfolio-taxonomy span {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-deep);
    font-weight: 700;
}
.portfolio-taxonomy p {
    margin: 0;
    color: var(--muted);
}
.tech-card {
    isolation: isolate;
    min-height: 220px;
}
.solution-card span {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 22px;
    border-radius: 50%;
    color: var(--primary-deep);
    background: rgba(210, 169, 142, .22);
    font-size: 13px;
    font-weight: 700;
}
.tech-card h3,
.tech-card p,
.tech-card .pill-row {
    position: relative;
    z-index: 2;
}
.tech-watermark {
    position: absolute;
    right: 18px;
    bottom: -18px;
    z-index: 1;
    color: var(--primary);
    opacity: .075;
    font-size: 103px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.04em;
    pointer-events: none;
}
.tech-cloud .tech-watermark,
.tech-devops .tech-watermark {
    font-size: 127px;
    bottom: -26px;
}
.dark .card { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .12); color: var(--white); }
.dark .card h3 { color: var(--white); }
.dark .card p { color: rgba(255, 255, 255, .76); }

.list { padding: 0; margin: 20px 0 0; list-style: none; }
.list li {
    border-top: 1px solid var(--line);
    padding: 12px 0;
}
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 5px 12px;
    color: var(--primary);
    background: #f7fbff;
    font-size: 13px;
}

.logos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.logo-tile {
    min-height: 92px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--ink);
    background: var(--white);
    font-weight: 500;
    box-shadow: 0 10px 24px rgba(51, 51, 51, .04);
}

.ecs-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 56px;
}
.ecs-steps:before {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    top: 62px;
    height: 1px;
    background: var(--line);
}
.step-card {
    position: relative;
    text-align: center;
    z-index: 1;
}
.step-card .number {
    width: 126px;
    height: 126px;
    margin: 0 auto 28px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--primary);
    font-size: 33px;
    font-weight: 500;
    box-shadow: 0 12px 32px rgba(51, 51, 51, .06);
}
.step-card h3 {
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 12px;
}
.step-card p { max-width: 260px; margin: 0 auto; }

.company-split {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 64px;
    align-items: center;
}
.company-visual {
    position: relative;
    min-height: 430px;
}
.company-visual:before {
    content: "";
    position: absolute;
    inset: 42px 0 0 34px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(8,106,216,.10), rgba(210,169,142,.22));
}
.company-visual img {
    position: relative;
    width: min(520px, 100%);
    margin: 0 auto;
    filter: drop-shadow(0 28px 42px rgba(0, 47, 166, .14));
}
.check-list {
    display: grid;
    gap: 13px;
    margin-top: 28px;
}
.check-list span {
    position: relative;
    padding-left: 30px;
    color: var(--ink);
}
.check-list span:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 5px rgba(8, 106, 216, .12);
}

.image-band {
    min-height: 440px;
    display: flex;
    align-items: center;
    background-image: linear-gradient(90deg, rgba(0, 47, 166, .88), rgba(8, 106, 216, .58)), url("/images/brand/ecs-impact.jpg");
    background-size: cover;
    background-position: center;
    color: var(--white);
}
.image-band .band-panel {
    max-width: 620px;
    margin-left: auto;
    padding: 70px 0;
}
.image-band h2 { color: var(--white); font-size: clamp(33px, 5vw, 51px); }
.image-band p { margin-top: 18px; color: rgba(255,255,255,.82); font-size: 17px; }

.case-metric { display: block; margin-top: 18px; color: var(--primary); font-size: 21px; font-weight: 600; }
.case-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(330px, 1fr);
    gap: 22px;
    overflow-x: auto;
    padding: 4px 2px 18px;
    scroll-snap-type: x proximity;
}
.case-rail .case-card {
    min-height: 320px;
    scroll-snap-align: start;
}
.case-rail::-webkit-scrollbar { height: 8px; }
.case-rail::-webkit-scrollbar-thumb { background: rgba(255,255,255,.22); border-radius: 999px; }
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: process; }
.process div {
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
}
.process strong { display: block; color: var(--primary-deep); font-size: 17px; font-weight: 500; }
.process p { margin-top: 10px; }

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 112px 0;
    background:
        linear-gradient(90deg, rgba(244, 237, 217, .88), rgba(255, 255, 255, .96)),
        url("/images/brand/ecs-contact-bg.jpg");
    background-size: cover;
    background-position: center;
}
.page-hero .lead {
    max-width: 760px;
    margin-top: 18px;
    color: var(--ink);
    font-size: 17px;
}
.content { padding: 78px 0; }
.split { display: grid; grid-template-columns: 2fr 1fr; gap: 42px; align-items: start; }
.split article h2 { margin: 28px 0 12px; font-size: 31px; }
.split article h2:first-child { margin-top: 0; }
.rich-copy p + p { margin-top: 16px; }
.rich-copy h2 { color: var(--primary-deep); }
.rich-copy p {
    max-width: 820px;
    font-size: 15px;
    line-height: 1.85;
}
.detail-narrative {
    display: grid;
    gap: 18px;
}
.detail-block {
    position: relative;
    padding: 28px 30px 30px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(135deg, #ffffff, #f7fbff);
    box-shadow: 0 12px 32px rgba(51, 51, 51, .04);
}
.detail-block:before {
    content: "";
    position: absolute;
    left: 0;
    top: 28px;
    width: 4px;
    height: 52px;
    border-radius: 0 999px 999px 0;
    background: var(--primary);
}
.detail-block span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12px;
    font-weight: 700;
}
.detail-block h2 {
    margin: 0 0 12px;
    color: var(--primary-deep);
    font-size: 25px;
    font-weight: 600;
}
.detail-block p {
    max-width: 880px;
    margin: 0;
    line-height: 1.8;
}
.detail-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}
.detail-points li {
    position: relative;
    min-height: 42px;
    padding: 11px 12px 11px 34px;
    border: 1px solid rgba(210, 169, 142, .38);
    border-radius: 6px;
    background: rgba(210, 169, 142, .08);
    color: var(--ink);
    font-size: 13px;
    line-height: 1.45;
    font-weight: 500;
}
.detail-points li:before {
    content: "";
    position: absolute;
    left: 14px;
    top: 18px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
}
.detail-sidebar {
    position: sticky;
    top: 112px;
}
.detail-sidebar h3 {
    margin-bottom: 18px;
    color: var(--primary-deep);
}
.detail-sidebar h4 {
    margin: 22px 0 10px;
    color: var(--primary-deep);
    font-size: 13px;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: .1em;
}
.detail-sidebar h4:first-of-type {
    margin-top: 0;
}
.service-deep-dive {
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    border-top: 1px solid var(--line);
}
.service-deep-dive .section-head {
    align-items: flex-start;
}
.service-deep-dive .section-head p {
    max-width: 850px;
    margin-top: 16px;
}
.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}
.service-detail-card {
    position: relative;
    min-height: 100%;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 14px 34px rgba(51, 51, 51, .045);
}
.service-detail-card > span {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 50%;
    color: var(--primary-deep);
    background: rgba(210, 169, 142, .22);
    font-size: 13px;
    font-weight: 700;
}
.service-detail-card h3 {
    margin-bottom: 12px;
    color: var(--primary-deep);
    font-size: 22px;
}
.service-detail-card p {
    margin-bottom: 18px;
}
.service-detail-card ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.service-detail-card li {
    position: relative;
    padding-left: 18px;
    color: var(--ink);
    font-size: 13px;
    line-height: 1.5;
}
.service-detail-card li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
}
.service-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 28px;
}
.service-info-panel {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}
.service-info-panel h3 {
    margin-bottom: 16px;
    color: var(--primary-deep);
    font-size: 21px;
}
.service-final-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    margin-top: 30px;
    padding: 38px;
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(7, 29, 73, .94), rgba(8, 106, 216, .84)),
        url("/images/brand/ecs-impact.jpg");
    background-size: cover;
    background-position: center;
}
.service-final-cta h2 {
    max-width: 760px;
    margin-top: 10px;
    color: var(--white);
    font-size: clamp(28px, 4vw, 40px);
}
.service-final-cta p {
    max-width: 820px;
    margin-top: 14px;
    color: rgba(255,255,255,.78);
}
.contact-hero {
    background:
        linear-gradient(90deg, rgba(244, 237, 217, .90), rgba(255, 255, 255, .94)),
        url("/images/brand/ecs-contact-bg.jpg");
}
.contact-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}
.contact-quick-actions a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid rgba(8, 106, 216, .18);
    border-radius: 999px;
    color: var(--primary-deep);
    background: rgba(255,255,255,.76);
    font-weight: 600;
}
.contact-quick-actions a:hover {
    color: var(--white);
    background: var(--primary);
}
.contact-section {
    background: linear-gradient(180deg, #ffffff, #f8fbff);
}
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.42fr) minmax(340px, .72fr);
    gap: 30px;
    align-items: stretch;
}
.form { display: grid; gap: 15px; }
.contact-form,
.response-card,
.contact-channel-card {
    transform: none;
}
.contact-form:hover,
.response-card:hover,
.contact-channel-card:hover {
    transform: none;
    border-color: var(--line);
    box-shadow: 0 0 0 rgba(51, 51, 51, 0);
}
.contact-form {
    align-content: start;
    min-height: 100%;
    padding: 36px;
}
.contact-form h2 {
    max-width: 720px;
    margin-top: 10px;
    color: var(--primary-deep);
    font-size: clamp(26px, 3.2vw, 36px);
    line-height: 1.18;
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}
.input, .textarea, select {
    width: 100%;
    min-height: 54px;
    border: 1px solid #f5f5f5;
    border-radius: 4px;
    padding: 13px 16px;
    color: #7e7e7e;
    background: #f5f5f5;
    font: inherit;
}
.input:focus, .textarea:focus, select:focus { outline: none; border-color: var(--primary); color: var(--primary); }
.input.is-invalid,
.textarea.is-invalid,
select.is-invalid {
    border-color: #d94b4b;
    background: #fff7f7;
}
.textarea { min-height: 140px; resize: vertical; }
.alert { padding: 14px 16px; border-radius: 4px; background: #edf7ff; color: var(--primary-deep); }
.error-alert {
    background: #fff3f3;
    color: #9f2f2f;
}
.recaptcha-wrap {
    display: grid;
    gap: 8px;
    min-height: 78px;
    align-items: start;
}
.field-error {
    margin: 0;
    color: #9f2f2f;
    font-size: 13px;
    font-weight: 600;
}
.contact-side {
    display: grid;
    gap: 20px;
    align-content: start;
}
.response-card,
.contact-channel-card {
    min-height: auto;
    padding: 30px;
}
.response-card > span {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    border-radius: 50%;
    color: var(--primary-deep);
    background: rgba(210, 169, 142, .22);
    font-weight: 700;
}
.contact-channel-card {
    display: grid;
    gap: 14px;
}
.contact-channel-card a {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 0 14px;
    align-items: center;
    min-width: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f8fbff;
}
.contact-channel-card i {
    grid-row: span 2;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--white);
    background: var(--primary);
}
.contact-channel-card span {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 700;
}
.contact-channel-card strong {
    color: var(--primary-deep);
    font-weight: 600;
    overflow-wrap: anywhere;
}
.office-section .section-head p {
    max-width: 620px;
    margin-top: 12px;
}
.office-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    align-items: stretch;
}
.office-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 24px;
    align-items: start;
    min-height: 100%;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 14px 34px rgba(51, 51, 51, .045);
}
.office-card:before {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(8, 106, 216, .07);
}
.office-card img {
    position: relative;
    z-index: 1;
    width: 120px;
    height: 86px;
    object-fit: contain;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 10px 24px rgba(51, 51, 51, .08);
}
.office-card div {
    position: relative;
    z-index: 1;
}
.office-card span {
    display: block;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
    font-weight: 700;
}
.office-card h3 {
    margin: 8px 0 10px;
    color: var(--primary-deep);
    font-size: 24px;
}
.office-card p {
    margin-bottom: 14px;
}
.office-card address {
    color: var(--ink);
    font-style: normal;
    font-weight: 600;
}

.footer {
    background: #f8f8f8;
    color: var(--muted);
    padding: 72px 0 34px;
}
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 36px; }
.footer h3, .footer strong { color: var(--ink); font-weight: 500; }
.footer a { display: block; margin: 9px 0; color: var(--muted); }
.footer a:hover { color: var(--primary); }
.footer-logo { width: 170px; margin-bottom: 18px; }
.presence {
    color: var(--primary-deep);
    font-weight: 600;
}
.social-links {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}
.social-links a {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    margin: 0;
    border-radius: 50%;
    color: var(--primary-deep);
    background: rgba(210, 169, 142, .22);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}
.social-links a:hover {
    color: var(--white);
    background: var(--primary);
}
.footer-bottom {
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    font-size: 13px;
}
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 50;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: #25d366;
    box-shadow: 0 18px 36px rgba(37, 211, 102, .28);
    font-weight: 800;
    letter-spacing: -.04em;
}
.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 40px rgba(37, 211, 102, .34);
}

.cms-wrap { padding: 48px 0; background: var(--soft); }
.table { width: 100%; border-collapse: collapse; background: var(--white); box-shadow: var(--shadow); }
.table th, .table td { border-bottom: 1px solid var(--line); padding: 14px; text-align: left; }
.cms-actions { display: flex; gap: 10px; align-items: center; }

@media (max-width: 1060px) {
    .nav-links, .nav-actions { display: none; }
    .mobile-nav { display: block; margin-left: auto; position: relative; }
    .mobile-nav summary {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        padding: 0 18px;
        border: 1px solid var(--line);
        border-radius: 5px;
        color: var(--primary);
        font-weight: 600;
        cursor: pointer;
        list-style: none;
    }
    .mobile-nav summary::-webkit-details-marker { display: none; }
    .mobile-panel {
        position: absolute;
        right: 0;
        top: calc(100% + 12px);
        width: min(320px, calc(100vw - 28px));
        padding: 14px;
        border: 1px solid var(--line);
        border-top: 3px solid var(--primary);
        border-radius: 8px;
        background: var(--white);
        box-shadow: var(--shadow-strong);
    }
    .mobile-panel a {
        display: block;
        padding: 12px 10px;
        border-radius: 5px;
        color: var(--ink);
        font-weight: 500;
    }
    .mobile-panel a:hover { background: #f4f8ff; color: var(--primary); }
    .hero-grid, .split, .footer-grid, .contact-grid { grid-template-columns: 1fr; }
    .hero-art { min-height: 460px; }
    .metrics, .grid.two, .grid.three, .grid.four, .process, .logos, .quick-offer-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid,
    .portfolio-taxonomy,
    .office-grid,
    .service-detail-grid,
    .service-info-grid,
    .service-final-cta { grid-template-columns: 1fr; }
    .roadmap-wrap { grid-template-columns: 1fr; }
    .command-grid { grid-template-columns: 1fr; }
    .command-panel { min-height: 470px; }
    .ecs-steps, .company-split { grid-template-columns: 1fr; }
    .ecs-steps:before { display: none; }
}
@media (max-width: 640px) {
    .container { width: min(100% - 28px, 1200px); }
    .top-strip .container { align-items: flex-start; flex-direction: column; padding: 10px 0; gap: 8px; }
    .top-links { justify-content: flex-start; gap: 8px 12px; }
    .top-links span { display: none; }
    .top-consult { padding-inline: 10px; }
    .nav { min-height: 76px; }
    .brand img { width: 150px; }
    .hero-grid { padding: 58px 0; min-height: auto; }
    .hero h1 { font-size: 37px; }
    .hero-art { min-height: 330px; }
    .architecture-orbit { inset: 28px 0 12px; }
    .architecture-orbit span { width: 48px; height: 48px; }
    .hero-art .float-card { width: 200px; left: 0; }
    .hero-art .orbit { width: 92px; height: 92px; font-size: 12px; }
    .metrics, .grid.two, .grid.three, .grid.four, .process, .logos, .quick-offer-grid { grid-template-columns: 1fr; }
    .portfolio-card { min-height: 430px; }
    .portfolio-card div { padding: 24px; }
    .portfolio-card h3 { font-size: 22px; }
    .marquee-track { animation-duration: 24s; }
    .roadmap-section { padding: 58px 0; }
    .operating-system { padding: 66px 0; }
    .command-panel { min-height: 560px; padding: 24px; }
    .command-track { inset: 24px; }
    .roadmap { box-shadow: none; }
    .roadmap:before { display: none; }
    .roadmap div {
        grid-template-columns: 42px 1fr;
        gap: 12px 16px;
        padding: 22px;
    }
    .roadmap p {
        grid-column: 2;
    }
    .case-rail { grid-auto-columns: minmax(282px, 86vw); }
    .detail-block { padding: 24px 22px 24px 26px; }
    .detail-block h2 { font-size: 21px; }
    .service-detail-card ul { grid-template-columns: 1fr; }
    .service-detail-card,
    .service-info-panel,
    .service-final-cta { padding: 24px; }
    .detail-points { grid-template-columns: 1fr; }
    .detail-sidebar { position: static; }
    .quick-offer { margin-top: 0; }
    .quick-offer a { border-right: 0; border-bottom: 1px solid var(--line); }
    .ecs-steps { grid-template-columns: 1fr; }
    .section { padding: 66px 0; }
    .section-head { display: block; }
    .actions .btn { width: 100%; }
    .image-band .band-panel { margin-left: 0; }
    .form-grid,
    .office-card { grid-template-columns: 1fr; }
    .office-card img { width: 98px; height: 70px; }
}
