:root {
    --bg: #f2f1ec;
    --surface: #fbfaf6;
    --surface-2: #e8ebe7;
    --text: #14242b;
    --muted: #667377;
    --line: #cbd1ce;
    --white: #fff;
    --success: #347852;
    --danger: #a33f2a;
    --header: rgba(242, 241, 236, .95);
    --max: 1320px;
    --ease: cubic-bezier(.2, .72, .25, 1);
}

html[data-theme="dark"] {
    --bg: #111b20;
    --surface: #18252b;
    --surface-2: #223239;
    --text: #f2f1ec;
    --muted: #aab4b6;
    --line: #35474e;
    --header: rgba(17, 27, 32, .95);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-width: 320px;
    background: var(--bg);
    color: var(--text);
    font: 400 16px/1.65 "Open Sans", Arial, sans-serif;
    transition: background-color .3s ease, color .3s ease;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { color: inherit; font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }

.skip-link {
    position: fixed;
    z-index: 200;
    top: 10px;
    left: 10px;
    padding: 10px 14px;
    background: var(--text);
    color: var(--bg);
    transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.page-progress {
    position: fixed;
    z-index: 120;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    pointer-events: none;
}
.page-progress span { display: block; width: 0; height: 100%; background: var(--accent); }

.site-header {
    position: sticky;
    z-index: 80;
    top: 0;
    border-bottom: 1px solid var(--line);
    background: var(--header);
    backdrop-filter: blur(14px);
}
.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: min(calc(100% - 48px), var(--max));
    min-height: 84px;
    margin: 0 auto;
}
.brand { display: inline-flex; align-items: center; width: fit-content; gap: 12px; }
.brand > img { width: auto; max-width: 190px; height: 48px; object-fit: contain; }
.brand-mark {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--accent);
    border-radius: 50%;
    color: var(--accent);
    font: 900 14px/1 "Roboto", sans-serif;
    letter-spacing: -.04em;
    transition: background .3s ease, color .3s ease, transform .35s var(--ease);
}
.brand:hover .brand-mark { background: var(--accent); color: #fff; transform: rotate(-8deg); }
.brand-text { display: grid; line-height: 1; }
.brand-text strong { font: 900 19px/1 "Roboto", sans-serif; letter-spacing: .03em; }
.brand-text small { margin-top: 7px; color: var(--muted); font-size: 8px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 27px; }
.main-nav a { position: relative; padding: 31px 0; font-size: 12px; font-weight: 700; white-space: nowrap; }
.main-nav a::after {
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    height: 2px;
    background: var(--accent);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s var(--ease);
}
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.theme-toggle, .menu-toggle {
    border: 0;
    background: transparent;
    cursor: pointer;
}
.theme-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
}
.theme-toggle span {
    position: relative;
    width: 18px;
    height: 18px;
    overflow: hidden;
    border-radius: 50%;
    background: var(--text);
}
.theme-toggle span::after {
    position: absolute;
    inset: 3px 1px 3px 9px;
    border-radius: 0 10px 10px 0;
    background: var(--bg);
    content: "";
}
.button {
    display: inline-flex;
    min-height: 50px;
    padding: 0 22px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .25s var(--ease), box-shadow .25s ease, background .25s ease;
}
.button:hover { transform: translateY(-3px); box-shadow: 0 12px 25px rgba(20,36,43,.12); }
.button-dark { background: var(--primary); color: #fff; }
.button-accent { background: var(--accent); color: #fff; }
.button-plain { border-color: var(--line); background: transparent; }
.button-light { background: #fff; color: #14242b; }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 10px 7px; }
.menu-toggle i { display: block; width: 100%; height: 1px; margin: 6px 0; background: currentColor; transition: transform .3s ease; }

.hero {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    width: min(calc(100% - 48px), var(--max));
    min-height: 690px;
    margin: 0 auto;
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
}
.hero-copy {
    display: flex;
    padding: 85px 8%;
    flex-direction: column;
    justify-content: center;
}
.hero-status {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 32px;
    padding: 8px 11px;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.hero-status i, .hero-card-bottom > i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4c9a67;
    box-shadow: 0 0 0 5px rgba(76,154,103,.12);
    animation: pulse 2.2s ease infinite;
}
.hero h1 {
    max-width: 620px;
    margin: 0;
    font: 900 clamp(54px, 5.4vw, 82px)/.98 "Roboto", sans-serif;
    letter-spacing: -.052em;
}
.hero-copy > p {
    max-width: 610px;
    margin: 30px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.hero-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 50px 0 0;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}
.hero-facts div { display: grid; gap: 3px; }
.hero-facts dt { font: 900 16px/1.2 "Roboto", sans-serif; }
.hero-facts dd { margin: 0; color: var(--muted); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.hero-visual { position: relative; min-width: 0; overflow: hidden; border-left: 1px solid var(--line); background: var(--surface-2); }
.hero-visual::after { position: absolute; inset: 0; border: 20px solid rgba(255,255,255,.14); content: ""; pointer-events: none; }
.hero-visual > img { width: 100%; height: 100%; object-fit: cover; object-position: 56% center; transition: transform 1.2s var(--ease); }
.hero-visual:hover > img { transform: scale(1.025); }
.hero-card {
    position: absolute;
    z-index: 2;
    padding: 17px 20px;
    border: 1px solid rgba(20,36,43,.16);
    background: rgba(251,250,246,.94);
    color: #14242b;
    backdrop-filter: blur(10px);
}
.hero-card span { display: block; color: #667377; font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.hero-card strong { display: block; margin-top: 4px; font: 700 15px/1.3 "Roboto", sans-serif; }
.hero-card-top { top: 42px; right: 42px; }
.hero-card-bottom { right: 42px; bottom: 42px; display: flex; align-items: center; gap: 14px; }
.hero-card-bottom span { display: grid; gap: 3px; text-transform: none; letter-spacing: 0; }
.hero-card-bottom strong { margin: 0; }

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: min(calc(100% - 48px), var(--max));
    margin: 0 auto;
    border: 1px solid var(--line);
    border-top: 0;
}
.trust-strip > div { display: flex; min-height: 84px; padding: 0 25px; align-items: center; gap: 14px; border-right: 1px solid var(--line); }
.trust-strip > div:last-child { border-right: 0; }
.trust-strip span { color: var(--accent); font: 900 11px/1 "Roboto", sans-serif; }
.trust-strip strong { font: 500 13px/1.4 "Roboto", sans-serif; }

.services-section, .process-section, .team-section {
    width: min(calc(100% - 48px), var(--max));
    margin: 0 auto;
    padding: 140px 0;
}
.section-title {
    display: grid;
    grid-template-columns: 1fr .58fr;
    align-items: end;
    gap: 70px;
    margin-bottom: 62px;
}
.section-title h2, .assurance-copy h2, .team-heading h2, .location-copy h2, .home-cta h2 {
    margin: 0;
    font: 900 clamp(43px, 5vw, 70px)/1 "Roboto", sans-serif;
    letter-spacing: -.045em;
}
.section-title p, .team-heading p {
    max-width: 520px;
    margin: 0 0 6px;
    color: var(--muted);
    font-size: 16px;
}
.service-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.service-card {
    position: relative;
    display: flex;
    min-height: 385px;
    padding: 28px;
    flex-direction: column;
    border: 1px solid var(--line);
    background: var(--surface);
    transition: transform .35s var(--ease), border-color .3s ease, box-shadow .3s ease;
}
.service-card:nth-child(-n+3) { grid-column: span 2; }
.service-card:nth-child(n+4) { grid-column: span 3; min-height: 340px; }
.service-card:hover { z-index: 2; border-color: var(--accent); transform: translateY(-8px); box-shadow: 0 20px 45px rgba(20,36,43,.09); }
.service-card-head { display: flex; align-items: center; justify-content: space-between; }
.service-card-head span { color: var(--accent); font: 900 12px/1 "Roboto", sans-serif; }
.service-card-head b { padding: 6px 9px; border: 1px solid var(--line); color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.service-card h3 { margin: 64px 0 15px; font: 700 25px/1.13 "Roboto", sans-serif; letter-spacing: -.025em; }
.service-card p { margin: 0; color: var(--muted); font-size: 13px; }
.service-card-foot { display: flex; margin-top: auto; padding: 22px 0 14px; align-items: end; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--line); }
.service-card-foot span { color: var(--muted); font-size: 10px; }
.service-card-foot strong { font: 700 15px/1 "Roboto", sans-serif; }
.service-card > a { padding-top: 14px; font-size: 11px; font-weight: 700; }

.assurance-section {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    min-height: 650px;
    background: var(--primary);
    color: #fff;
}
.assurance-copy {
    display: flex;
    padding: 9%;
    flex-direction: column;
    justify-content: center;
}
.assurance-copy > p { max-width: 600px; margin: 30px 0; color: #b7c2c5; font-size: 17px; }
.assurance-copy ul { margin: 0; padding: 0; list-style: none; }
.assurance-copy li { position: relative; padding: 13px 0 13px 28px; border-top: 1px solid rgba(255,255,255,.16); font-size: 13px; }
.assurance-copy li::before { position: absolute; top: 18px; left: 3px; width: 8px; height: 8px; border: 2px solid var(--accent); border-radius: 50%; content: ""; }
.assurance-board { display: flex; width: min(86%, 680px); margin: 75px auto; padding: 32px; flex-direction: column; align-self: center; background: #f5f3ed; color: #14242b; box-shadow: 0 35px 70px rgba(0,0,0,.18); transform: rotate(1.2deg); }
.board-top { display: flex; padding-bottom: 25px; align-items: center; justify-content: space-between; border-bottom: 1px solid #ccd1ce; }
.board-top span { color: #667377; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.board-top b { font: 700 12px/1 "Roboto", sans-serif; }
.board-device { display: grid; grid-template-columns: 52px 1fr auto; align-items: center; gap: 16px; padding: 28px 0; border-bottom: 1px solid #ccd1ce; }
.device-icon { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 50%; background: #14242b; color: #fff; font: 900 18px "Roboto"; }
.board-device > div:nth-child(2) { display: grid; gap: 4px; }
.board-device strong { font: 700 15px "Roboto"; }
.board-device span { color: #667377; font-size: 11px; }
.board-device em { padding: 7px 10px; background: #dfeee4; color: #347852; font-size: 9px; font-style: normal; font-weight: 700; text-transform: uppercase; }
.board-timeline { padding-top: 24px; }
.board-timeline > div { display: grid; grid-template-columns: 20px 1fr; gap: 14px; min-height: 75px; }
.board-timeline i { position: relative; width: 12px; height: 12px; margin-top: 4px; border: 2px solid #a9b1ae; border-radius: 50%; }
.board-timeline i::after { position: absolute; top: 14px; left: 3px; width: 2px; height: 49px; background: #d2d7d4; content: ""; }
.board-timeline > div:last-child i::after { display: none; }
.board-timeline .done i { border-color: #347852; background: #347852; }
.board-timeline .active i { border-color: var(--accent); }
.board-timeline span { display: flex; align-items: flex-start; justify-content: space-between; gap: 15px; }
.board-timeline strong { font: 700 13px "Roboto"; }
.board-timeline small { color: #7a8586; font-size: 10px; }

.process-section { border-bottom: 1px solid var(--line); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.process-grid article { min-height: 320px; padding: 35px 34px; border-right: 1px solid var(--line); }
.process-grid article:first-child { border-left: 1px solid var(--line); }
.process-grid span { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--accent); border-radius: 50%; color: var(--accent); font: 900 13px "Roboto"; }
.process-grid h3 { margin: 80px 0 18px; font: 700 23px/1.15 "Roboto"; letter-spacing: -.025em; }
.process-grid p { margin: 0; color: var(--muted); font-size: 13px; }

.team-section { display: grid; grid-template-columns: .68fr 1fr; gap: 90px; }
.team-heading { position: sticky; top: 120px; align-self: start; }
.team-heading p { margin-top: 26px; }
.team-list { border-top: 1px solid var(--line); }
.team-member { display: grid; grid-template-columns: 58px 1fr .9fr; align-items: center; gap: 20px; padding: 27px 10px; border-bottom: 1px solid var(--line); }
.avatar { display: grid; width: 54px; height: 54px; place-items: center; border-radius: 50%; background: var(--avatar-color); color: #fff; font: 900 18px "Roboto"; }
.team-member h3 { margin: 0 0 5px; font: 700 18px "Roboto"; }
.team-member p, .team-member > span { margin: 0; color: var(--muted); font-size: 11px; }

.location-section { display: grid; grid-template-columns: .72fr 1.28fr; min-height: 570px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.location-copy { display: flex; padding: 9%; flex-direction: column; justify-content: center; }
.location-copy > p { margin: 28px 0 35px; color: var(--muted); font-size: 17px; }
.location-copy > div { display: grid; padding-top: 25px; gap: 8px; border-top: 1px solid var(--line); }
.location-copy span { color: var(--muted); font-size: 12px; }
.location-copy a { font: 700 20px "Roboto"; }
.map-frame { min-height: 570px; border-left: 1px solid var(--line); background: var(--surface-2); }
.map-frame iframe, .contact-map iframe { width: 100%; height: 100%; min-height: inherit; border: 0; filter: saturate(.75) contrast(.95); }
.home-cta { display: flex; width: min(calc(100% - 48px), var(--max)); min-height: 330px; margin: 100px auto; padding: 65px 7%; align-items: center; justify-content: space-between; gap: 50px; background: var(--accent); color: #fff; }
.home-cta h2 { font-size: clamp(38px, 4.5vw, 65px); }
.home-cta p { margin: 18px 0 0; color: rgba(255,255,255,.82); }

.site-footer { background: #101c21; color: #f4f3ee; }
.footer-top {
    display: grid;
    grid-template-columns: 1.2fr .65fr .9fr 1fr;
    width: min(calc(100% - 48px), var(--max));
    margin: 0 auto;
    padding: 75px 0;
}
.footer-top > div { padding: 0 34px; border-right: 1px solid #34474e; }
.footer-top > div:first-child { padding-left: 0; }
.footer-top > div:last-child { padding-right: 0; border-right: 0; }
.brand-light .brand-mark { color: #fff; }
.brand-light .brand-text small { color: #93a1a5; }
.footer-brand p { max-width: 340px; margin: 28px 0 0; color: #93a1a5; font-size: 13px; }
.footer-top h3 { margin: 3px 0 24px; color: #93a1a5; font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-contact a, .footer-contact span { font-size: 12px; }
.footer-contact span { color: #93a1a5; }
.whatsapp-card > span { display: block; margin-bottom: 18px; color: #93a1a5; font-size: 11px; }
.whatsapp-card a { display: flex; padding: 17px; align-items: center; gap: 13px; border: 1px solid #34474e; transition: border-color .25s ease, transform .25s ease; }
.whatsapp-card a:hover { border-color: #25d366; transform: translateY(-3px); }
.whatsapp-card img { width: 38px; height: 38px; object-fit: contain; }
.whatsapp-card strong { font: 700 13px/1.3 "Roboto"; }
.footer-bottom { display: flex; width: min(calc(100% - 48px), var(--max)); min-height: 75px; margin: 0 auto; align-items: center; justify-content: space-between; border-top: 1px solid #34474e; color: #839296; font-size: 10px; }
.mobile-actions { display: none; }

.form-hero, .track-hero, .page-hero {
    display: flex;
    width: min(calc(100% - 48px), var(--max));
    min-height: 380px;
    margin: 0 auto;
    padding: 75px 7%;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
}
.form-hero h1, .track-hero h1, .page-hero h1 {
    max-width: 850px;
    margin: 0;
    font: 900 clamp(52px, 6vw, 84px)/.96 "Roboto";
    letter-spacing: -.05em;
}
.form-hero p, .track-hero p, .page-hero p { max-width: 650px; margin: 24px 0 0; color: var(--muted); font-size: 17px; }
.form-hero aside { display: grid; min-width: 190px; padding: 22px; border: 1px solid var(--line); }
.form-hero aside span { color: var(--muted); font-size: 10px; }
.form-hero aside strong { margin-top: 6px; font: 700 18px "Roboto"; }
.request-layout, .track-search, .track-result, .content-page {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    width: min(calc(100% - 48px), var(--max));
    margin: 70px auto 120px;
    gap: 55px;
}
.service-form { display: grid; gap: 22px; }
.service-form fieldset { margin: 0; padding: 38px; border: 1px solid var(--line); background: var(--surface); }
.service-form legend { display: flex; padding: 0 12px 0 0; align-items: center; gap: 13px; font: 700 20px "Roboto"; }
.service-form legend span { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: var(--primary); color: #fff; font-size: 12px; }
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 10px 0 28px; }
.choice-card { cursor: pointer; }
.choice-card input { position: absolute; opacity: 0; }
.choice-card > span { display: grid; min-height: 88px; padding: 18px; border: 1px solid var(--line); background: var(--bg); transition: border-color .2s, background .2s; }
.choice-card input:checked + span { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 9%, var(--surface)); }
.choice-card b { font: 700 14px "Roboto"; }
.choice-card small { margin-top: 5px; color: var(--muted); font-size: 10px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.form-grid > label, .track-search form > label, .captcha-row > label {
    display: grid;
    align-content: start;
    gap: 7px;
    font-size: 11px;
    font-weight: 700;
}
.form-grid label > small { margin-left: 4px; color: var(--muted); font-weight: 400; }
input, select, textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 1px;
    outline: none;
    background: var(--bg);
    transition: border-color .2s, box-shadow .2s;
}
input, select { height: 50px; padding: 0 13px; }
textarea { padding: 13px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 14%, transparent); }
.inline-options { display: flex; min-height: 50px; padding: 0 14px; align-items: center; gap: 25px; border: 1px solid var(--line); background: var(--bg); }
.inline-options label { display: flex; align-items: center; gap: 8px; font-weight: 500; }
.inline-options input, .consent input { width: 17px; height: 17px; accent-color: var(--accent); }
.captcha-row { display: grid; grid-template-columns: 190px auto 1fr; align-items: end; gap: 12px; margin-top: 24px; }
.captcha-row img { width: 190px; height: 58px; border: 1px solid var(--line); }
.captcha-row button { height: 58px; padding: 0 14px; border: 1px solid var(--line); background: transparent; font-size: 10px; font-weight: 700; cursor: pointer; }
.captcha-row input { height: 58px; letter-spacing: .2em; text-transform: uppercase; }
.consent { display: flex; margin-top: 24px; align-items: flex-start; gap: 11px; color: var(--muted); font-size: 11px; cursor: pointer; }
.consent input { flex: 0 0 auto; margin-top: 3px; }
.submit-button { min-width: 230px; justify-self: start; }
.form-alert { padding: 17px 20px; border: 1px solid color-mix(in srgb, var(--danger) 45%, var(--line)); background: color-mix(in srgb, var(--danger) 8%, var(--surface)); color: var(--danger); font-size: 13px; }
.form-alert ul { margin: 8px 0 0; padding-left: 18px; }
.request-help { align-self: start; }
.request-help > div, .request-help ul { padding: 30px; border: 1px solid var(--line); background: var(--surface); }
.request-help h2 { margin: 0 0 18px; font: 700 25px/1.1 "Roboto"; }
.request-help a { font: 900 25px "Roboto"; }
.request-help p { margin: 8px 0 0; color: var(--muted); font-size: 11px; }
.request-help ul { margin: 12px 0 0; list-style: none; }
.request-help li { position: relative; padding: 13px 0 13px 20px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 11px; }
.request-help li:last-child { border-bottom: 0; }
.request-help li::before { position: absolute; top: 20px; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); content: ""; }

.track-hero { display: block; padding-top: 110px; }
.track-hero p { max-width: 700px; }
.success-banner { display: flex; width: min(calc(100% - 48px), var(--max)); margin: 35px auto 0; padding: 18px 22px; justify-content: space-between; gap: 20px; background: #e6f2e9; color: #28653f; font-size: 13px; }
.track-search { grid-template-columns: 1fr .65fr; }
.track-search form, .track-search aside { padding: 40px; border: 1px solid var(--line); background: var(--surface); }
.track-search form { display: grid; gap: 18px; }
.track-search h2, .track-result h2, .page-side h2 { margin: 0; font: 700 28px "Roboto"; letter-spacing: -.025em; }
.track-search form > p, .track-search aside p { margin: 0 0 15px; color: var(--muted); font-size: 13px; }
.captcha-row.compact { grid-template-columns: 190px auto 1fr; margin-top: 0; }
.track-search aside { align-self: start; }
.track-search aside span { display: block; margin-top: 35px; color: var(--muted); font-size: 9px; font-weight: 700; text-transform: uppercase; }
.track-search code { display: block; margin-top: 7px; font: 700 17px "Roboto"; }
.track-result { display: block; }
.result-head { display: flex; padding: 27px 32px; align-items: center; justify-content: space-between; border: 1px solid var(--line); background: var(--surface); }
.result-head > div:first-child { display: grid; gap: 5px; }
.result-head span { color: var(--muted); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.result-head strong { font: 700 20px "Roboto"; }
.status-pill { padding: 9px 12px; border: 1px solid var(--line); font-size: 10px; font-weight: 700; text-transform: uppercase; }
.status-completed { background: #e5f1e8; color: #28653f; }
.status-cancelled { background: #f8e8e4; color: #943b28; }
.result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 18px; }
.result-grid > article, .history-panel { padding: 35px; border: 1px solid var(--line); background: var(--surface); }
.result-grid dl { margin: 25px 0 0; }
.result-grid dl > div { display: grid; grid-template-columns: 150px 1fr; padding: 14px 0; border-top: 1px solid var(--line); }
.result-grid dt { color: var(--muted); font-size: 10px; }
.result-grid dd { margin: 0; font-size: 12px; font-weight: 600; }
.assigned-tech { display: flex; margin-top: 28px; align-items: center; gap: 15px; }
.assigned-tech > span { display: grid; width: 58px; height: 58px; place-items: center; border-radius: 50%; background: var(--primary); color: #fff; font: 900 20px "Roboto"; }
.assigned-tech > div { display: grid; gap: 3px; }
.assigned-tech strong { font: 700 17px "Roboto"; }
.assigned-tech small, .technician-box > p, .empty-tech p { color: var(--muted); font-size: 11px; }
.empty-tech { margin-top: 30px; padding: 25px; border: 1px dashed var(--line); }
.empty-tech i { display: block; width: 10px; height: 10px; margin-bottom: 17px; border: 2px solid var(--accent); border-radius: 50%; }
.empty-tech p { margin-bottom: 0; }
.history-panel { margin-top: 18px; }
.history-panel ol { margin: 30px 0 0; padding: 0; list-style: none; }
.history-panel li { display: grid; grid-template-columns: 20px 1fr auto; gap: 15px; min-height: 82px; }
.history-panel li > i { position: relative; width: 12px; height: 12px; margin-top: 5px; border-radius: 50%; background: var(--accent); }
.history-panel li > i::after { position: absolute; top: 15px; left: 5px; width: 2px; height: 60px; background: var(--line); content: ""; }
.history-panel li:last-child > i::after { display: none; }
.history-panel strong { font: 700 13px "Roboto"; }
.history-panel p { margin: 4px 0 0; color: var(--muted); font-size: 11px; }
.history-panel time { color: var(--muted); font-size: 10px; }

.page-hero { display: block; padding-top: 110px; }
.page-hero > span { display: block; margin-bottom: 18px; color: var(--accent); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.content-page { grid-template-columns: 1fr 360px; }
.page-content { font-size: 16px; }
.page-content h2 { margin: 0 0 25px; font: 900 40px/1.08 "Roboto"; letter-spacing: -.035em; }
.page-content h3 { margin: 45px 0 15px; font: 700 25px "Roboto"; }
.page-content p { color: var(--muted); line-height: 1.9; }
.page-content li { margin: 8px 0; color: var(--muted); }
.page-side { align-self: start; padding: 30px; border: 1px solid var(--line); background: var(--surface); }
.page-side > p { color: var(--muted); font-size: 12px; }
.page-side > a:not(.button) { display: block; margin: 12px 0; font: 700 16px "Roboto"; }
.page-side .whatsapp-link { display: flex !important; margin-top: 25px !important; padding: 13px; align-items: center; gap: 12px; border: 1px solid var(--line); }
.whatsapp-link img { width: 30px; height: 30px; }
.contact-map { min-height: 520px; border-top: 1px solid var(--line); }

html.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
html.js .reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes pulse { 50% { box-shadow: 0 0 0 9px rgba(76,154,103,0); } }

@media (max-width: 1150px) {
    .header-inner { grid-template-columns: 1fr auto; }
    .main-nav {
        position: fixed;
        z-index: 70;
        top: 84px;
        right: 0;
        bottom: 0;
        left: 0;
        visibility: hidden;
        padding: 45px max(24px, calc((100vw - var(--max)) / 2));
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        overflow-y: auto;
        background: var(--bg);
        opacity: 0;
        transform: translateY(-15px);
        transition: opacity .3s, transform .3s, visibility .3s;
    }
    .main-nav a { width: 100%; padding: 17px 0; border-bottom: 1px solid var(--line); font: 900 28px "Roboto"; }
    .main-nav a::after { display: none; }
    body.menu-open .main-nav { visibility: visible; opacity: 1; transform: translateY(0); }
    .menu-toggle { display: block; }
    body.menu-open .menu-toggle i:first-child { transform: translateY(3.5px) rotate(45deg); }
    body.menu-open .menu-toggle i:last-child { transform: translateY(-3.5px) rotate(-45deg); }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .service-card:nth-child(n) { grid-column: span 1; }
    .team-section { grid-template-columns: 1fr; gap: 50px; }
    .team-heading { position: static; }
}

@media (max-width: 780px) {
    body { padding-bottom: 62px; }
    .header-inner { width: calc(100% - 30px); min-height: 72px; }
    .site-header .brand-text small, .desktop-request { display: none; }
    .brand-mark { width: 38px; height: 38px; }
    .main-nav { top: 72px; padding: 30px 20px; }
    .main-nav a { font-size: 24px; }
    .hero { grid-template-columns: 1fr; width: calc(100% - 28px); }
    .hero-copy { min-height: 650px; padding: 80px 22px; }
    .hero h1 { font-size: clamp(49px, 14.5vw, 68px); }
    .hero-copy > p { font-size: 15px; }
    .hero-buttons { align-items: stretch; flex-direction: column; }
    .hero-buttons .button { width: 100%; }
    .hero-facts { gap: 12px; }
    .hero-facts dt { font-size: 14px; }
    .hero-facts dd { font-size: 8px; }
    .hero-visual { min-height: 520px; border-top: 1px solid var(--line); border-left: 0; }
    .hero-card-top { top: 18px; right: 18px; }
    .hero-card-bottom { right: 18px; bottom: 18px; left: 18px; }
    .trust-strip { grid-template-columns: 1fr 1fr; width: calc(100% - 28px); }
    .trust-strip > div { min-height: 74px; padding: 0 15px; }
    .trust-strip > div:nth-child(2) { border-right: 0; }
    .trust-strip > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .trust-strip strong { font-size: 11px; }
    .services-section, .process-section, .team-section { width: calc(100% - 28px); padding: 90px 0; }
    .section-title { grid-template-columns: 1fr; gap: 24px; margin-bottom: 42px; }
    .section-title h2, .assurance-copy h2, .team-heading h2, .location-copy h2 { font-size: clamp(41px, 12vw, 56px); }
    .section-title p { font-size: 14px; }
    .service-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 330px !important; padding: 24px; }
    .service-card h3 { margin-top: 52px; }
    .assurance-section { grid-template-columns: 1fr; }
    .assurance-copy { min-height: 520px; padding: 75px 26px; }
    .assurance-board { width: calc(100% - 34px); margin: 30px auto 75px; padding: 22px; transform: none; }
    .board-device { grid-template-columns: 45px 1fr; }
    .board-device em { display: none; }
    .board-timeline span { display: grid; gap: 3px; }
    .process-grid { grid-template-columns: 1fr; }
    .process-grid article { min-height: 250px; border-bottom: 1px solid var(--line); border-left: 1px solid var(--line); }
    .process-grid h3 { margin-top: 55px; }
    .team-member { grid-template-columns: 54px 1fr; }
    .team-member > span { grid-column: 2; }
    .location-section { grid-template-columns: 1fr; }
    .location-copy { min-height: 430px; padding: 70px 25px; }
    .map-frame { min-height: 420px; border-top: 1px solid var(--line); border-left: 0; }
    .home-cta { width: calc(100% - 28px); min-height: 470px; margin: 70px auto; padding: 55px 24px; align-items: flex-start; flex-direction: column; justify-content: center; }
    .home-cta h2 { font-size: 45px; }
    .footer-top { grid-template-columns: 1fr; width: calc(100% - 40px); }
    .footer-top > div { padding: 30px 0; border-right: 0; border-bottom: 1px solid #34474e; }
    .footer-top > div:last-child { border-bottom: 0; }
    .footer-bottom { width: calc(100% - 40px); padding: 22px 0; align-items: flex-start; flex-direction: column; gap: 8px; }
    .mobile-actions { position: fixed; z-index: 90; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr 1fr; height: 62px; }
    .mobile-actions a { display: grid; place-items: center; background: var(--primary); color: #fff; font-size: 12px; font-weight: 700; }
    .mobile-actions a:last-child { background: var(--accent); }
    .form-hero, .track-hero, .page-hero { display: block; width: calc(100% - 28px); min-height: 430px; padding: 75px 22px 50px; }
    .form-hero h1, .track-hero h1, .page-hero h1 { font-size: clamp(48px, 14vw, 64px); }
    .form-hero p, .track-hero p, .page-hero p { font-size: 14px; }
    .form-hero aside { margin-top: 38px; }
    .request-layout, .track-search, .track-result, .content-page { grid-template-columns: 1fr; width: calc(100% - 28px); margin: 40px auto 80px; gap: 25px; }
    .service-form fieldset { padding: 25px 18px; }
    .service-form legend { font-size: 17px; }
    .choice-grid, .form-grid { grid-template-columns: 1fr; }
    .form-grid .full { grid-column: auto; }
    .captcha-row, .captcha-row.compact { grid-template-columns: 1fr auto; }
    .captcha-row > label { grid-column: 1 / -1; }
    .captcha-row img { max-width: 100%; }
    .request-help { order: -1; }
    .success-banner { width: calc(100% - 28px); flex-direction: column; }
    .track-search form, .track-search aside, .result-grid > article, .history-panel { padding: 25px 20px; }
    .result-head { align-items: flex-start; flex-direction: column; gap: 16px; }
    .result-grid { grid-template-columns: 1fr; }
    .result-grid dl > div { grid-template-columns: 1fr; gap: 5px; }
    .history-panel li { grid-template-columns: 18px 1fr; }
    .history-panel time { grid-column: 2; }
    .content-page { grid-template-columns: 1fr; }
    .page-content h2 { font-size: 34px; }
    .contact-map { min-height: 400px; }
}

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