:root {
    --navy-950: #04101b;
    --navy-900: #071826;
    --navy-850: #0a2032;
    --navy-800: #0c2940;
    --navy-700: #113d5d;
    --blue-600: #007fb8;
    --blue-500: #009fdc;
    --cyan-400: #20d4f0;
    --cyan-300: #64e1f2;
    --ice-100: #e8f8fc;
    --white: #ffffff;
    --surface: #f4f8fa;
    --surface-2: #eaf1f5;
    --ink: #0a1b29;
    --muted: #596c7a;
    --line: #d7e2e8;
    --success: #159467;
    --danger: #bc3d48;
    --container: 1220px;
    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 30px;
    --shadow: 0 24px 60px rgba(1, 21, 36, .14);
    --font: Inter, Aptos, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

::selection {
    color: var(--navy-950);
    background: var(--cyan-300);
}

html {
    scrollbar-color: var(--blue-600) var(--navy-950);
    scrollbar-width: thin;
}

::-webkit-scrollbar {
    width: 11px;
}

::-webkit-scrollbar-track {
    background: var(--navy-950);
}

::-webkit-scrollbar-thumb {
    background: var(--blue-600);
    border: 3px solid var(--navy-950);
    border-radius: 8px;
}

body.nav-open {
    overflow: hidden;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:where(a, button, input, select, textarea):focus-visible {
    outline: 3px solid var(--cyan-400);
    outline-offset: 3px;
}

:where(button, input, select, textarea):disabled,
.button[aria-disabled="true"] {
    cursor: not-allowed;
    opacity: .56;
    transform: none;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    letter-spacing: -.035em;
    line-height: 1.08;
}

p:last-child {
    margin-bottom: 0;
}

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

.site-main {
    min-height: 65vh;
    overflow: clip;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 8px;
    left: 8px;
    padding: 10px 16px;
    color: var(--navy-950);
    background: var(--cyan-300);
    border-radius: 8px;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: none;
}

.button {
    display: inline-flex;
    min-height: 52px;
    padding: 0 24px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--navy-950);
    background: linear-gradient(135deg, var(--cyan-300), var(--blue-500));
    border: 1px solid transparent;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 159, 220, .2);
    font-weight: 800;
    line-height: 1;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.button:hover,
.button:focus-visible {
    box-shadow: 0 16px 36px rgba(0, 159, 220, .32);
    transform: translateY(-2px);
}

.button--small {
    min-height: 42px;
    padding-inline: 18px;
    font-size: .85rem;
}

.button--ghost {
    color: var(--white);
    background: rgba(255, 255, 255, .04);
    border-color: rgba(255, 255, 255, .25);
    box-shadow: none;
}

.button--ghost:hover,
.button--ghost:focus-visible {
    background: rgba(255, 255, 255, .1);
    box-shadow: none;
}

.button--outline {
    color: var(--white);
    background: transparent;
    border-color: rgba(255, 255, 255, .38);
    box-shadow: none;
}

.button--dark {
    color: var(--white);
    background: var(--navy-900);
    box-shadow: 0 12px 28px rgba(4, 16, 27, .18);
}

.button--white {
    color: var(--navy-950);
    background: var(--white);
    box-shadow: 0 12px 32px rgba(2, 17, 27, .18);
}

.button--full {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 20px;
    align-items: center;
    gap: 10px;
    color: var(--blue-600);
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .14em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow i {
    width: 22px;
    height: 2px;
    background: currentColor;
}

.eyebrow--light {
    color: var(--cyan-300);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-600);
    border-bottom: 1px solid rgba(0, 127, 184, .3);
    font-weight: 800;
}

.text-link:hover,
.text-link:focus-visible {
    color: var(--navy-900);
}

/* Header */
.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    height: 78px;
    color: var(--white);
    background:
        radial-gradient(circle at 12% 0, rgba(28, 178, 220, .13), transparent 28%),
        linear-gradient(90deg, rgba(4, 15, 26, .97), rgba(8, 27, 43, .97) 58%, rgba(6, 20, 33, .97));
    border-bottom: 1px solid rgba(91, 226, 245, .18);
    box-shadow: 0 12px 34px rgba(0, 0, 0, .14), inset 0 1px rgba(255, 255, 255, .025);
    backdrop-filter: blur(18px);
    transition: background .25s ease, box-shadow .25s ease;
}

.site-header::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 4%, rgba(87, 228, 247, .6) 20%, rgba(35, 124, 234, .12) 55%, transparent 88%);
    content: "";
    pointer-events: none;
}

.admin-bar .site-header {
    top: 32px;
}

.site-header.is-scrolled {
    background: rgba(4, 15, 26, .985);
    box-shadow: 0 14px 38px rgba(0, 0, 0, .26);
}

.site-header__inner {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

.brand,
.custom-logo-link {
    display: flex;
    width: 96px;
    height: 64px;
    align-items: center;
    flex: 0 0 auto;
}

.brand img,
.custom-logo {
    width: 96px;
    height: 64px;
    object-fit: contain;
    object-position: center;
}

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

.site-nav__list,
.site-nav .menu {
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.site-nav__list a,
.site-nav .menu a {
    position: relative;
    color: rgba(255, 255, 255, .8);
    font-size: .88rem;
    font-weight: 700;
}

.site-nav__list a::after,
.site-nav .menu a::after {
    position: absolute;
    right: 0;
    bottom: -10px;
    left: 0;
    height: 2px;
    background: var(--cyan-400);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}

.site-nav__list a:hover,
.site-nav .menu a:hover,
.site-nav__list a:focus-visible,
.site-nav .menu a:focus-visible,
.site-nav .current-menu-item > a {
    color: var(--white);
}

.site-nav__list a:hover::after,
.site-nav .menu a:hover::after,
.site-nav__list a:focus-visible::after,
.site-nav .menu a:focus-visible::after,
.site-nav .current-menu-item > a::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    color: var(--white);
    background: transparent;
    border: 0;
    cursor: pointer;
}

.nav-toggle__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
}

.nav-toggle__bars {
    display: grid;
    gap: 5px;
}

.nav-toggle__bars i {
    display: block;
    width: 27px;
    height: 2px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
}

/* Hero */
.hero {
    position: relative;
    min-height: 730px;
    color: var(--white);
    background:
        radial-gradient(circle at 74% 40%, rgba(0, 182, 227, .19), transparent 31%),
        linear-gradient(125deg, #04101b 0%, #07243a 58%, #063d5b 100%);
}

.hero::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 16, 27, .35), transparent 55%);
    content: "";
    pointer-events: none;
}

.hero__grid,
.page-hero__grid {
    position: absolute;
    inset: 0;
    opacity: .28;
    background:
        radial-gradient(circle at 82% 38%, rgba(100, 225, 242, .2), transparent 28%),
        linear-gradient(112deg, transparent 0 66%, rgba(100, 225, 242, .08) 66.1%, transparent 66.35%);
    pointer-events: none;
}

.hero__inner {
    position: relative;
    display: grid;
    min-height: 650px;
    padding-block: 82px 64px;
    align-items: center;
    grid-template-columns: 1.02fr .98fr;
    gap: 58px;
}

.hero__content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    max-width: 700px;
    margin-bottom: 26px;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 850;
}

.hero h1 span {
    display: block;
    color: var(--cyan-300);
}

.hero__lead {
    max-width: 680px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, .74);
    font-size: clamp(1.05rem, 1.6vw, 1.26rem);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero__proof {
    display: grid;
    max-width: 660px;
    margin: 44px 0 0;
    padding: 28px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .13);
    grid-template-columns: repeat(3, 1fr);
    list-style: none;
}

.hero__proof li {
    padding-right: 18px;
}

.hero__proof li + li {
    padding-left: 22px;
    border-left: 1px solid rgba(255, 255, 255, .13);
}

.hero__proof strong,
.hero__proof span {
    display: block;
}

.hero__proof strong {
    margin-bottom: 4px;
    color: var(--white);
    font-size: .96rem;
}

.hero__proof span {
    color: rgba(255, 255, 255, .55);
    font-size: .74rem;
    line-height: 1.35;
}

.hero__visual {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.hero__visual > img {
    position: relative;
    z-index: 2;
    width: 100%;
    aspect-ratio: 1.12;
    object-fit: cover;
    object-position: center;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 34px;
    box-shadow: 0 38px 100px rgba(0, 0, 0, .46);
}

.hero__halo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 104%;
    aspect-ratio: 1;
    border: 1px solid rgba(32, 212, 240, .28);
    border-radius: 50%;
    box-shadow: 0 0 80px rgba(32, 212, 240, .12);
    transform: translate(-50%, -50%);
}

.status-card {
    position: absolute;
    z-index: 3;
    display: flex;
    min-width: 220px;
    padding: 14px 18px;
    align-items: center;
    gap: 12px;
    color: var(--navy-950);
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 13px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .3);
    backdrop-filter: blur(12px);
}

.status-card--top {
    top: 10%;
    left: -30px;
}

.status-card--bottom {
    right: -18px;
    bottom: 9%;
}

.status-card__icon {
    display: grid;
    width: 38px;
    height: 38px;
    color: var(--navy-950);
    background: var(--cyan-300);
    border-radius: 10px;
    place-items: center;
    font-size: .75rem;
    font-weight: 900;
}

.status-card strong,
.status-card small {
    display: block;
}

.status-card strong {
    font-size: .82rem;
}

.status-card small {
    color: var(--muted);
    font-size: .68rem;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: #16bf84;
    border: 3px solid #d9f8eb;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(22, 191, 132, .14);
}

.hero__ticker {
    position: relative;
    z-index: 4;
    color: rgba(255, 255, 255, .68);
    background: rgba(0, 0, 0, .2);
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.hero__ticker .container {
    display: flex;
    min-height: 80px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.hero__ticker i {
    width: 5px;
    height: 5px;
    flex: 0 0 auto;
    background: var(--cyan-400);
    border-radius: 50%;
}

/* Sections */
.section {
    padding-block: 110px;
}

.section-heading h2,
.integration__content h2,
.gallery-feature h2,
.contact-info h2 {
    max-width: 780px;
    margin-bottom: 22px;
    font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.section-heading p {
    max-width: 650px;
    margin-inline: auto;
    color: var(--muted);
    font-size: 1.08rem;
}

.section-heading--center {
    margin-bottom: 56px;
    text-align: center;
}

.section-heading--center h2 {
    margin-inline: auto;
}

.section-heading--light h2 {
    color: var(--white);
}

.section-heading--light p {
    color: rgba(255, 255, 255, .62);
}

.section--intro {
    background: var(--white);
}

.intro-grid {
    display: grid;
    align-items: start;
    grid-template-columns: .95fr 1.05fr;
    gap: clamp(50px, 8vw, 110px);
}

.intro-copy {
    padding-top: 42px;
    color: var(--muted);
    font-size: 1.08rem;
}

.intro-copy p {
    margin-bottom: 22px;
}

.intro-copy .text-link {
    margin-top: 10px;
}

.section--dark {
    position: relative;
    color: var(--white);
    background: var(--navy-950);
}

.section--dark::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 48%;
    height: 100%;
    opacity: .35;
    background: radial-gradient(circle at 100% 0, rgba(0, 159, 220, .35), transparent 42%);
    content: "";
    pointer-events: none;
}

.section--dark .container {
    position: relative;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-left: 1px solid rgba(255, 255, 255, .12);
}

.solution-card {
    position: relative;
    min-height: 330px;
    padding: 36px;
    background: rgba(255, 255, 255, .025);
    border-right: 1px solid rgba(255, 255, 255, .12);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    transition: background .25s ease, transform .25s ease;
}

.solution-card:hover {
    z-index: 2;
    background: rgba(0, 159, 220, .11);
    transform: translateY(-4px);
}

.solution-card__number {
    position: absolute;
    top: 28px;
    right: 30px;
    color: rgba(255, 255, 255, .25);
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: .72rem;
    letter-spacing: .12em;
}

.solution-card__icon {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: 52px;
    color: var(--cyan-300);
    background: rgba(32, 212, 240, .08);
    border: 1px solid rgba(32, 212, 240, .22);
    border-radius: 14px;
    place-items: center;
}

.solution-card__icon svg {
    width: 26px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

.solution-card h3 {
    margin-bottom: 14px;
    font-size: 1.35rem;
}

.solution-card p {
    color: rgba(255, 255, 255, .58);
    font-size: .92rem;
}

/* Integration */
.integration {
    background: var(--surface);
}

.integration__grid {
    display: grid;
    align-items: center;
    grid-template-columns: 1.08fr .92fr;
    gap: clamp(50px, 7vw, 90px);
}

.integration__visual {
    position: relative;
}

.image-frame {
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.image-frame img {
    width: 100%;
    aspect-ratio: 1.35;
    object-fit: cover;
    border-radius: 22px;
}

.image-tag {
    position: absolute;
    right: -18px;
    bottom: 30px;
    display: inline-flex;
    padding: 13px 17px;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: 0 14px 34px rgba(0, 31, 50, .16);
    font-size: .78rem;
    font-weight: 800;
}

.image-tag i {
    width: 9px;
    height: 9px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(21, 148, 103, .12);
}

.integration__content > p {
    color: var(--muted);
    font-size: 1.03rem;
}

.integration__systems {
    display: grid;
    margin-block: 30px;
    gap: 9px;
    grid-template-columns: repeat(3, 1fr);
}

.integration__systems span {
    display: grid;
    min-width: 0;
    padding: 10px;
    align-content: center;
    gap: 6px;
    color: var(--navy-700);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: .62rem;
    font-weight: 800;
    text-align: center;
}

.integration__systems img {
    width: 100%;
    height: 54px;
    object-fit: contain;
    border-radius: 5px;
}

.notice {
    padding: 18px 20px;
    background: #e6f7fb;
    border: 1px solid #b8e3ed;
    border-radius: 10px;
}

.notice strong {
    display: block;
    margin-bottom: 4px;
    color: var(--navy-800);
    font-size: .85rem;
}

.notice p {
    color: #526773;
    font-size: .8rem;
    line-height: 1.5;
}

/* Plataforma */
.platform-section {
    position: relative;
    color: var(--white);
    background:
        radial-gradient(circle at 85% 25%, rgba(32, 212, 240, .14), transparent 28%),
        linear-gradient(135deg, var(--navy-950), #0a2940);
}

.platform-section__grid {
    display: grid;
    align-items: center;
    grid-template-columns: .76fr 1.24fr;
    gap: clamp(48px, 7vw, 92px);
}

.platform-section h2 {
    margin-bottom: 22px;
    font-size: clamp(2.2rem, 4vw, 3.65rem);
}

.platform-section__content > p {
    color: rgba(255, 255, 255, .62);
}

.platform-section__content ul {
    display: grid;
    margin: 28px 0 34px;
    padding: 0;
    gap: 10px;
    list-style: none;
}

.platform-section__content li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .78);
    font-size: .86rem;
}

.platform-section__content li i {
    display: grid;
    width: 21px;
    height: 21px;
    color: var(--navy-950);
    background: var(--cyan-300);
    border-radius: 50%;
    place-items: center;
    font-size: .65rem;
    font-style: normal;
    font-weight: 900;
}

.platform-section__visual {
    position: relative;
}

.platform-section__visual > img {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    box-shadow: 0 38px 80px rgba(0, 0, 0, .4);
}

.platform-section__badge {
    position: absolute;
    right: 22px;
    bottom: -20px;
    display: inline-flex;
    padding: 12px 16px;
    align-items: center;
    gap: 9px;
    color: var(--navy-950);
    background: var(--white);
    border-radius: 9px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .3);
    font-size: .72rem;
    font-weight: 850;
}

.platform-section__badge i {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(21, 148, 103, .12);
}

/* Process */
.process {
    background: var(--white);
}

.process-list {
    display: grid;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(4, 1fr);
    list-style: none;
}

.process-list li {
    position: relative;
    padding: 32px 28px 8px;
    border-top: 2px solid var(--line);
}

.process-list li::before {
    position: absolute;
    top: -7px;
    left: 28px;
    width: 12px;
    height: 12px;
    background: var(--blue-500);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--blue-500);
    content: "";
}

.process-list > li > span {
    display: block;
    margin-bottom: 42px;
    color: var(--blue-500);
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: .8rem;
    font-weight: 800;
}

.process-list h3 {
    margin-bottom: 12px;
    font-size: 1.28rem;
}

.process-list p {
    color: var(--muted);
    font-size: .88rem;
}

/* Credenciais */
.credentials-section {
    padding-top: 0;
    background: var(--white);
}

.credentials-section__grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 20px;
}

.credential-card {
    position: relative;
    min-height: 480px;
    overflow: hidden;
    color: var(--white);
    background: var(--navy-900);
    border-radius: var(--radius);
}

.credential-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3, 17, 28, .94), rgba(3, 17, 28, .05) 70%);
    content: "";
}

.credential-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.credential-card:hover img {
    transform: scale(1.025);
}

.credential-card--dahua img {
    padding: 28px;
    background: #f6f6f3;
    object-fit: contain;
}

.credential-card > div {
    position: absolute;
    z-index: 2;
    right: 30px;
    bottom: 28px;
    left: 30px;
}

.credential-card span {
    color: var(--cyan-300);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.credential-card h2 {
    margin: 7px 0 8px;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.credential-card p {
    max-width: 540px;
    color: rgba(255, 255, 255, .68);
    font-size: .84rem;
}

/* Projects */
.section--projects {
    background: var(--surface-2);
}

.projects-heading {
    display: flex;
    margin-bottom: 48px;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

.projects-heading .section-heading h2 {
    margin-bottom: 0;
}

.project-showcase {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    grid-template-rows: repeat(2, 260px);
    gap: 18px;
}

.project-card {
    position: relative;
    min-height: 0;
    overflow: hidden;
    color: var(--white);
    background: var(--navy-900);
    border-radius: var(--radius);
}

.project-card--large {
    grid-row: 1 / 3;
}

.project-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 15, 25, .92), rgba(2, 15, 25, 0) 65%);
    content: "";
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.project-card:hover img {
    transform: scale(1.035);
}

.project-card > div {
    position: absolute;
    z-index: 2;
    right: 28px;
    bottom: 26px;
    left: 28px;
}

.project-card span {
    color: var(--cyan-300);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.project-card h3 {
    max-width: 520px;
    margin: 6px 0 0;
    font-size: clamp(1.15rem, 2vw, 1.75rem);
}

.trust-section {
    color: var(--white);
    background:
        radial-gradient(circle at 85% 50%, rgba(0, 159, 220, .21), transparent 27%),
        var(--navy-950);
}

.trust-section__grid {
    display: grid;
    align-items: center;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(50px, 8vw, 110px);
}

.trust-section h2 {
    margin-bottom: 20px;
    font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.trust-section p {
    max-width: 570px;
    color: rgba(255, 255, 255, .62);
}

.check-list {
    display: grid;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    list-style: none;
}

.check-list li {
    display: flex;
    min-height: 132px;
    padding: 22px;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
}

.check-list i {
    display: grid;
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    color: var(--navy-950);
    background: var(--cyan-300);
    border-radius: 50%;
    place-items: center;
    font-size: .78rem;
    font-style: normal;
    font-weight: 900;
}

.check-list strong,
.check-list span {
    display: block;
}

.check-list strong {
    margin-bottom: 6px;
    color: var(--white);
    font-size: .88rem;
}

.check-list span {
    color: rgba(255, 255, 255, .56);
    font-size: .78rem;
    line-height: 1.45;
}

.cta-section {
    color: var(--white);
    background: linear-gradient(115deg, #007fb8, #004e75);
}

.cta-section__inner {
    display: flex;
    min-height: 350px;
    padding-block: 64px;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.cta-section h2 {
    max-width: 750px;
    margin-bottom: 16px;
    font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.cta-section p {
    color: rgba(255, 255, 255, .72);
}

.cta-section__actions {
    display: grid;
    min-width: 230px;
    gap: 10px;
}

/* Internal page hero */
.page-hero {
    position: relative;
    color: var(--white);
    background:
        radial-gradient(circle at 80% 20%, rgba(32, 212, 240, .18), transparent 32%),
        linear-gradient(125deg, var(--navy-950), var(--navy-700));
}

.page-hero__inner {
    position: relative;
    display: grid;
    min-height: 480px;
    padding-block: 84px;
    align-items: center;
    grid-template-columns: 1fr .8fr;
    gap: 70px;
}

.page-hero h1 {
    max-width: 850px;
    margin-bottom: 22px;
    font-size: clamp(3rem, 6vw, 5rem);
}

.page-hero p {
    max-width: 680px;
    color: rgba(255, 255, 255, .68);
    font-size: 1.12rem;
}

.page-hero small {
    color: rgba(255, 255, 255, .48);
}

.page-hero__visual img {
    width: 100%;
    max-height: 340px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--radius);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .38);
}

.page-hero--compact .page-hero__inner,
.page-hero--legal .page-hero__inner {
    min-height: 390px;
    grid-template-columns: 1fr;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.gallery-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.gallery-card--wide {
    grid-column: 1 / 3;
}

.gallery-card__image {
    position: relative;
    display: block;
    width: 100%;
    height: 330px;
    padding: 0;
    overflow: hidden;
    background: var(--navy-900);
    border: 0;
    cursor: zoom-in;
}

.gallery-card--wide .gallery-card__image {
    height: 520px;
}

.gallery-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.gallery-card__image img[src*="dahua-eco-partner"] {
    padding: 18px;
    background: #f6f6f3;
    object-fit: contain;
}

.gallery-card__image:hover img,
.gallery-card__image:focus-visible img {
    transform: scale(1.025);
}

.gallery-card__image span {
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 8px 12px;
    color: var(--white);
    background: rgba(4, 16, 27, .75);
    border-radius: 8px;
    backdrop-filter: blur(8px);
    font-size: .75rem;
    font-weight: 800;
}

.gallery-card__body {
    padding: 26px 28px 30px;
}

.gallery-card__body > span {
    color: var(--blue-600);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.gallery-card h2 {
    margin: 8px 0 10px;
    font-size: 1.55rem;
}

.gallery-card p {
    color: var(--muted);
    font-size: .9rem;
}

.gallery-feature {
    background: var(--surface);
}

.gallery-feature__grid {
    display: grid;
    align-items: center;
    grid-template-columns: .78fr 1.22fr;
    gap: 70px;
}

.gallery-feature p {
    margin-bottom: 28px;
    color: var(--muted);
}

.gallery-feature img {
    width: 100%;
    border: 10px solid var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.lightbox {
    position: fixed;
    z-index: 5000;
    inset: 0;
    display: grid;
    padding: 60px;
    background: rgba(2, 11, 18, .94);
    place-items: center;
}

.lightbox[hidden] {
    display: none;
}

.lightbox img {
    max-width: min(1200px, 96vw);
    max-height: 84vh;
    border-radius: 12px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .7);
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 46px;
    height: 46px;
    color: var(--white);
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.8rem;
}

/* Contact */
.contact-section {
    background: var(--surface);
}

.contact-grid {
    display: grid;
    align-items: start;
    grid-template-columns: .75fr 1.25fr;
    gap: clamp(45px, 7vw, 90px);
}

.contact-info > p {
    color: var(--muted);
}

.contact-info__items {
    display: grid;
    margin-top: 34px;
    border-top: 1px solid var(--line);
}

.contact-info__items a {
    display: flex;
    padding: 17px 0;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid var(--line);
}

.contact-info__items span {
    color: var(--muted);
    font-size: .76rem;
}

.contact-info__items strong {
    color: var(--navy-800);
    font-size: .88rem;
    text-align: right;
}

.contact-info__items a:hover strong {
    color: var(--blue-600);
}

.contact-info__notice {
    margin-top: 28px;
    padding: 18px;
    background: #fff6e3;
    border: 1px solid #ead8ad;
    border-radius: 9px;
}

.contact-info__notice strong {
    font-size: .8rem;
}

.contact-info__notice p {
    color: #67593c;
    font-size: .76rem;
    line-height: 1.45;
}

.contact-form-card {
    padding: clamp(28px, 5vw, 48px);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.contact-form-card__head > span {
    color: var(--blue-600);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.contact-form-card__head h2 {
    margin: 7px 0 28px;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.contact-form,
.contact-form label {
    display: grid;
}

.contact-form {
    gap: 18px;
}

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

.contact-form label > span {
    margin-bottom: 7px;
    color: var(--navy-800);
    font-size: .78rem;
    font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    color: var(--ink);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 9px;
    outline: 2px solid transparent;
    outline-offset: 2px;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form input,
.contact-form select {
    height: 50px;
    padding: 0 14px;
}

.contact-form textarea {
    min-height: 145px;
    padding: 13px 14px;
    resize: vertical;
}

.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
    background: var(--white);
    border-color: var(--blue-500);
    outline-color: var(--blue-500);
    box-shadow: 0 0 0 3px rgba(0, 159, 220, .12);
}

.contact-form .consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-form .consent input {
    width: 17px;
    height: 17px;
    margin-top: 2px;
    flex: 0 0 auto;
}

.contact-form .consent span {
    color: var(--muted);
    font-size: .72rem;
    font-weight: 500;
    line-height: 1.5;
}

.contact-form .consent a {
    color: var(--blue-600);
    text-decoration: underline;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
}

.form-alert {
    margin-bottom: 22px;
    padding: 13px 15px;
    border-radius: 8px;
    font-size: .82rem;
    font-weight: 700;
}

.form-alert--success {
    color: #0a6847;
    background: #e4f8ef;
    border: 1px solid #bcebd6;
}

.form-alert--error {
    color: #8e2731;
    background: #fff0f1;
    border: 1px solid #f1c6ca;
}

/* Legal and generic content */
.legal-section {
    background: var(--surface);
}

.legal-layout {
    display: grid;
    align-items: start;
    grid-template-columns: 250px minmax(0, 820px);
    justify-content: center;
    gap: 70px;
}

.legal-nav {
    position: sticky;
    top: 110px;
    display: grid;
    padding: 22px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    gap: 7px;
}

.legal-nav strong {
    margin-bottom: 8px;
    color: var(--navy-800);
}

.legal-nav a {
    padding: 5px 0;
    color: var(--muted);
    font-size: .76rem;
}

.legal-nav a:hover {
    color: var(--blue-600);
}

.legal-content {
    padding: clamp(28px, 5vw, 58px);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.legal-intro {
    padding-bottom: 28px;
    color: var(--navy-700) !important;
    border-bottom: 1px solid var(--line);
    font-size: 1.08rem;
    font-weight: 600;
}

.legal-content section {
    padding-top: 28px;
    scroll-margin-top: 100px;
}

.legal-content h2 {
    margin-bottom: 15px;
    font-size: 1.55rem;
}

.legal-content p,
.legal-content li {
    color: var(--muted);
    font-size: .92rem;
}

.legal-content li + li {
    margin-top: 9px;
}

.legal-content a {
    color: var(--blue-600);
    text-decoration: underline;
}

.content-section {
    background: var(--surface);
}

.content-narrow {
    max-width: 900px;
}

.entry-card {
    padding: 36px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.entry-card + .entry-card {
    margin-top: 24px;
}

.entry-card h2 a:hover {
    color: var(--blue-600);
}

.not-found {
    display: grid;
    min-height: 72vh;
    color: var(--white);
    background: radial-gradient(circle at center, #0b4d70, var(--navy-950) 70%);
    place-items: center;
    text-align: center;
}

.not-found__inner > span {
    color: var(--cyan-300);
    font-size: clamp(5rem, 14vw, 10rem);
    font-weight: 900;
    line-height: 1;
}

.not-found h1 {
    margin: 18px 0 12px;
    font-size: clamp(2rem, 5vw, 3.8rem);
}

.not-found p {
    margin-bottom: 28px;
    color: rgba(255, 255, 255, .65);
}

/* Footer */
.site-footer {
    color: var(--white);
    background: #020b12;
}

.site-footer__grid {
    display: grid;
    padding-block: 76px 58px;
    grid-template-columns: 1.25fr .65fr 1fr 1.1fr;
    gap: 52px;
}

.site-footer__brand img {
    width: min(220px, 100%);
    aspect-ratio: 1.5;
    margin-bottom: 22px;
    object-fit: contain;
    border-radius: 12px;
    object-fit: contain;
    object-position: left center;
}

.site-footer__brand p,
.site-footer__cta p {
    color: rgba(255, 255, 255, .52);
    font-size: .8rem;
}

.site-footer__since {
    color: var(--cyan-300);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .05em;
}

.site-footer__title {
    margin: 5px 0 20px;
    font-size: .87rem;
    letter-spacing: .01em;
}

.site-footer__links {
    display: grid;
    margin: 0;
    padding: 0;
    gap: 10px;
    list-style: none;
}

.site-footer__links a {
    color: rgba(255, 255, 255, .55);
    font-size: .77rem;
}

.site-footer__links a:hover {
    color: var(--cyan-300);
}

.site-footer__cta .button {
    margin-top: 18px;
}

.site-footer__bottom {
    display: grid;
    padding-block: 20px;
    align-items: center;
    grid-template-columns: auto 1fr auto;
    gap: 28px;
    color: rgba(255, 255, 255, .32);
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-size: .64rem;
}

.site-footer__bottom p {
    margin: 0;
}

.site-footer__legal {
    text-align: center;
}

.site-footer__bottom a:hover {
    color: var(--white);
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.whatsapp-dock {
    position: fixed;
    z-index: 1200;
    right: 24px;
    bottom: 24px;
}

.whatsapp-dock__toggle {
    position: relative;
    display: grid;
    width: 58px;
    height: 58px;
    padding: 0;
    color: var(--white);
    background: #20b967;
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .28);
    cursor: pointer;
    place-items: center;
}

.whatsapp-dock__toggle:hover,
.whatsapp-dock__toggle:focus-visible {
    background: #159b55;
    box-shadow: 0 16px 38px rgba(0, 0, 0, .34);
}

.whatsapp-dock__toggle svg {
    position: relative;
    z-index: 2;
    width: 29px;
    fill: currentColor;
}

.whatsapp-dock__pulse {
    position: absolute;
    inset: -5px;
    border: 2px solid rgba(32, 185, 103, .5);
    border-radius: 50%;
    animation: radar-pulse 2s infinite;
}

.whatsapp-dock__sectors {
    position: absolute;
    right: 2px;
    bottom: 72px;
    display: grid;
    width: 285px;
    gap: 9px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px) scale(.97);
    transform-origin: bottom right;
    transition: opacity .2s ease, transform .2s ease;
}

.whatsapp-dock.is-open .whatsapp-dock__sectors {
    opacity: 1;
    pointer-events: auto;
    transform: none;
}

.whatsapp-sector {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.whatsapp-sector:hover > span,
.whatsapp-sector:focus-visible > span {
    background: var(--navy-800);
    border-color: rgba(100, 225, 242, .38);
}

.whatsapp-sector > span {
    display: grid;
    min-width: 190px;
    padding: 9px 12px;
    color: var(--white);
    background: rgba(4, 16, 27, .95);
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 9px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .24);
    text-align: right;
}

.whatsapp-sector strong {
    font-size: .76rem;
    line-height: 1.25;
}

.whatsapp-sector small {
    margin-top: 2px;
    color: rgba(255, 255, 255, .55);
    font-size: .61rem;
}

.whatsapp-sector > i {
    display: grid;
    width: 43px;
    height: 43px;
    flex: 0 0 auto;
    color: var(--white);
    background: #20b967;
    border: 2px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .25);
    place-items: center;
    font-size: .7rem;
    font-style: normal;
    font-weight: 900;
}

.whatsapp-sector--administrative > i { background: #2384c6; }
.whatsapp-sector--technical > i { background: #e47d22; }
.whatsapp-sector--software > i { background: #7551c9; }

.contact-info__sectors a > span {
    display: grid;
    position: relative;
    padding-left: 18px;
    color: var(--navy-800);
    font-size: .8rem;
    font-weight: 850;
}

.contact-info__sectors small {
    color: var(--muted);
    font-size: .66rem;
    font-weight: 500;
}

.sector-dot {
    position: absolute;
    top: 5px;
    left: 0;
    width: 8px;
    height: 8px;
    background: #20b967;
    border-radius: 50%;
}

.sector-dot--administrative { background: #2384c6; }
.sector-dot--technical { background: #e47d22; }
.sector-dot--software { background: #7551c9; }

@keyframes radar-pulse {
    0% { opacity: .85; transform: scale(.85); }
    80%, 100% { opacity: 0; transform: scale(1.4); }
}

.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease;
}

.js .reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

@media (max-width: 1080px) {
    .site-nav { gap: 18px; }
    .site-nav__list, .site-nav .menu { gap: 18px; }
    .site-nav__list a, .site-nav .menu a { font-size: .8rem; }
    .hero__inner { gap: 36px; }
    .status-card--top { left: -10px; }
    .status-card--bottom { right: -8px; }
    .site-footer__grid { grid-template-columns: 1.2fr .8fr 1fr; }
    .site-footer__cta { grid-column: 1 / 4; }
}

@media (max-width: 900px) {
    .admin-bar .site-header { top: 46px; }
    .nav-toggle { display: block; padding: 10px; }
    .site-nav {
        position: fixed;
        z-index: 1001;
        top: 78px;
        right: 0;
        left: 0;
        display: grid;
        max-height: calc(100dvh - 78px);
        padding: 28px 20px 36px;
        overflow-y: auto;
        color: var(--white);
        background: rgba(4, 16, 27, .99);
        border-top: 1px solid rgba(255, 255, 255, .08);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity .2s ease, transform .2s ease;
    }
    .admin-bar .site-nav { top: 124px; }
    .site-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
    .site-nav__list, .site-nav .menu { display: grid; gap: 0; }
    .site-nav__list a, .site-nav .menu a { display: block; padding: 14px 2px; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 1rem; }
    .site-nav__list a::after, .site-nav .menu a::after { display: none; }
    .site-nav__cta { width: 100%; margin-top: 8px; }
    .nav-open .nav-toggle__bars i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-open .nav-toggle__bars i:nth-child(2) { opacity: 0; }
    .nav-open .nav-toggle__bars i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .hero { min-height: auto; }
    .hero__inner { grid-template-columns: 1fr; padding-block: 70px; }
    .hero__visual { width: min(680px, 92%); margin-inline: auto; }
    .hero__ticker .container { justify-content: flex-start; overflow-x: auto; }
    .hero__ticker span { white-space: nowrap; }
    .intro-grid, .integration__grid, .platform-section__grid, .trust-section__grid, .gallery-feature__grid, .contact-grid { grid-template-columns: 1fr; }
    .intro-copy { padding-top: 0; }
    .solutions-grid { grid-template-columns: repeat(2, 1fr); }
    .process-list { grid-template-columns: repeat(2, 1fr); row-gap: 42px; }
    .credentials-section__grid { grid-template-columns: 1fr 1fr; }
    .project-showcase { grid-template-columns: 1fr 1fr; grid-template-rows: 430px 280px; }
    .project-card--large { grid-column: 1 / 3; grid-row: auto; }
    .page-hero__inner { grid-template-columns: 1fr; gap: 40px; }
    .page-hero__visual { max-width: 700px; }
    .legal-layout { grid-template-columns: 1fr; gap: 24px; }
    .legal-nav { position: static; grid-template-columns: repeat(2, 1fr); }
    .legal-nav strong { grid-column: 1 / 3; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
    .site-footer__brand { grid-column: 1 / 3; }
    .site-footer__cta { grid-column: 1 / 3; }
    .site-footer__bottom { grid-template-columns: 1fr auto; }
    .site-footer__legal { grid-column: 1 / 3; grid-row: 2; text-align: left; }
}

@media (max-width: 640px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .brand, .custom-logo-link { width: 84px; height: 56px; }
    .brand img, .custom-logo { width: 84px; height: 56px; }
    .section { padding-block: 76px; }
    .hero__inner { padding-block: 58px; }
    .hero h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
    .hero__actions { display: grid; }
    .hero__proof { grid-template-columns: 1fr; gap: 17px; }
    .hero__proof li, .hero__proof li + li { padding: 0; border: 0; }
    .hero__proof span { font-size: .78rem; }
    .hero__visual { width: 100%; }
    .hero__visual > img { aspect-ratio: 1; border-radius: 22px; }
    .status-card { min-width: 0; max-width: 205px; padding: 11px 13px; }
    .status-card--top { top: -20px; left: 8px; }
    .status-card--bottom { right: 8px; bottom: -20px; }
    .status-card__icon { width: 32px; height: 32px; }
    .status-card strong { font-size: .72rem; }
    .status-card small { font-size: .6rem; }
    .hero__ticker .container { min-height: 65px; }
    .section-heading h2, .integration__content h2, .gallery-feature h2, .contact-info h2 { font-size: clamp(2rem, 10vw, 2.8rem); }
    .solutions-grid { grid-template-columns: 1fr; }
    .solution-card { min-height: 280px; padding: 30px 26px; }
    .solution-card__icon { margin-bottom: 38px; }
    .image-tag { right: 8px; bottom: 14px; }
    .integration__systems { grid-template-columns: repeat(2, 1fr); }
    .platform-section__badge { right: 10px; }
    .process-list { grid-template-columns: 1fr; gap: 30px; }
    .credentials-section__grid { grid-template-columns: 1fr; }
    .credential-card { min-height: 420px; }
    .process-list li { padding-left: 10px; }
    .process-list li::before { left: 10px; }
    .process-list > li > span { margin-bottom: 22px; }
    .projects-heading { align-items: start; flex-direction: column; }
    .project-showcase { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(3, 310px); }
    .project-card--large { grid-column: auto; }
    .check-list { grid-template-columns: 1fr; }
    .cta-section__inner { align-items: stretch; flex-direction: column; gap: 28px; }
    .cta-section__actions { min-width: 0; }
    .page-hero__inner { min-height: 420px; padding-block: 62px; }
    .page-hero h1 { font-size: clamp(2.6rem, 13vw, 4rem); }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-card--wide { grid-column: auto; }
    .gallery-card__image, .gallery-card--wide .gallery-card__image { height: 280px; }
    .lightbox { padding: 16px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-info__items a { align-items: flex-start; flex-direction: column; gap: 3px; }
    .contact-info__items strong { text-align: left; }
    .legal-nav { grid-template-columns: 1fr; }
    .legal-nav strong { grid-column: auto; }
    .legal-content { padding: 26px 22px; }
    .site-footer__grid { grid-template-columns: 1fr; gap: 36px; }
    .site-footer__brand, .site-footer__cta { grid-column: auto; }
    .site-footer__bottom { grid-template-columns: 1fr; gap: 9px; }
    .site-footer__legal { grid-column: auto; grid-row: auto; }
    .whatsapp-dock { right: 16px; bottom: 16px; }
    .whatsapp-dock__toggle { width: 54px; height: 54px; }
    .whatsapp-dock__sectors { width: min(285px, calc(100vw - 28px)); }
}

@media (max-width: 782px) {
    .admin-bar .site-header { top: 46px; }
}
