:root {
    --ink: #111827;
    --ink-2: #1f2937;
    --muted: #64748b;
    --line: #e5e7eb;
    --surface: #ffffff;
    --surface-soft: #f5f7fb;
    --yellow: #ffd500;
    --yellow-2: #ffea70;
    --cyan: #2dd4bf;
    --blue: #3b82f6;
    --green: #22c55e;
    --radius-sm: 14px;
    --radius: 22px;
    --radius-lg: 34px;
    --shadow: 0 24px 70px rgba(15, 23, 42, .12);
    --shadow-soft: 0 14px 40px rgba(15, 23, 42, .08);
    --container: min(1180px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
button, input, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { width: 1.2em; height: 1.2em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 112px 0; }

.skip-link {
    position: fixed;
    left: 16px;
    top: -80px;
    z-index: 9999;
    background: var(--yellow);
    color: var(--ink);
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 800;
    transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.site-header {
    position: fixed;
    z-index: 1000;
    inset: 0 0 auto;
    height: 86px;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,.9);
    border-bottom: 1px solid rgba(229,231,235,.75);
    backdrop-filter: blur(18px);
    transition: box-shadow .25s ease, height .25s ease, background .25s ease;
}
.site-header.is-scrolled { height: 74px; box-shadow: 0 10px 35px rgba(15,23,42,.08); background: rgba(255,255,255,.97); }
.header-inner { display: grid; grid-template-columns: 195px 1fr auto; align-items: center; gap: 30px; }
.brand { width: 174px; }
.brand img { width: 100%; height: auto; }
.main-nav { display: flex; justify-content: center; align-items: center; gap: clamp(18px, 2.3vw, 34px); }
.main-nav a { position: relative; color: #334155; font-size: .93rem; font-weight: 700; white-space: nowrap; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 3px; border-radius: 8px; background: var(--yellow); transition: right .25s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }
.header-actions { display: flex; gap: 10px; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 11px; border: 0; border-radius: 12px; background: var(--surface-soft); cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--ink); border-radius: 3px; transition: transform .25s ease, opacity .25s ease; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { transition: transform .2s ease; }
.button:hover svg { transform: translateX(3px); }
.button-small { min-height: 42px; padding-inline: 16px; font-size: .88rem; border-radius: 12px; }
.button-large { min-height: 56px; padding-inline: 26px; }
.button-primary { color: var(--ink); background: var(--yellow); box-shadow: 0 14px 30px rgba(255,213,0,.24); }
.button-primary:hover { background: #ffe033; box-shadow: 0 18px 35px rgba(255,213,0,.32); }
.button-ghost { background: #f8fafc; border-color: var(--line); color: #334155; }
.button-light { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: #fff; backdrop-filter: blur(10px); }
.button-light:hover { background: rgba(255,255,255,.17); }
.button-outline-light { color: #fff; border-color: rgba(255,255,255,.32); background: transparent; }
.button-outline-light:hover { background: rgba(255,255,255,.08); }
.button-ghost-dark { color: var(--ink); border-color: var(--line); background: #fff; }

.hero {
    position: relative;
    min-height: 850px;
    display: flex;
    align-items: center;
    padding: 150px 0 105px;
    color: #fff;
    background: var(--ink);
    overflow: hidden;
}
.hero-image { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,24,39,.99) 0%, rgba(17,24,39,.91) 47%, rgba(17,24,39,.64) 100%), url('../img/desenvolvimento.jpg') center/cover; opacity: .86; }
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.032) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.032) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(to right, black, transparent 75%); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .75; }
.hero-glow-one { width: 520px; height: 520px; right: -180px; top: 120px; background: radial-gradient(circle, rgba(45,212,191,.22), transparent 68%); }
.hero-glow-two { width: 420px; height: 420px; left: 34%; bottom: -250px; background: radial-gradient(circle, rgba(255,213,0,.17), transparent 68%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: clamp(50px, 7vw, 92px); }
.hero-copy { max-width: 680px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; color: rgba(255,255,255,.73); font-size: .78rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow > span { width: 30px; height: 3px; border-radius: 5px; background: var(--yellow); }
.eyebrow-dark { color: #64748b; }
.hero h1 { margin: 0; max-width: 750px; font-size: clamp(3.35rem, 5.7vw, 6.1rem); line-height: .98; letter-spacing: -.065em; font-weight: 900; }
.hero h1 em { color: var(--yellow); font-style: normal; position: relative; }
.hero h1 em::after { content: ""; position: absolute; z-index: -1; left: 2px; right: -4px; bottom: 5px; height: 12px; background: rgba(255,213,0,.14); transform: rotate(-1.5deg); }
.hero-copy > p { max-width: 650px; margin: 28px 0 0; color: rgba(255,255,255,.72); font-size: clamp(1rem, 1.4vw, 1.18rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-trust { display: flex; align-items: center; gap: 16px; margin-top: 42px; }
.trust-stack { display: flex; }
.trust-stack span { display: grid; place-items: center; width: 40px; height: 40px; margin-left: -8px; border: 3px solid var(--ink); border-radius: 50%; background: #fff; color: var(--ink); font-size: .68rem; font-weight: 900; }
.trust-stack span:first-child { margin-left: 0; background: var(--yellow); }
.trust-stack span:nth-child(2) { background: var(--cyan); }
.hero-trust p { margin: 0; color: rgba(255,255,255,.65); font-size: .83rem; line-height: 1.45; }
.hero-trust strong { color: #fff; }

.hero-visual { position: relative; min-height: 545px; display: grid; place-items: center; }
.visual-orbit { position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.orbit-one { width: 520px; height: 520px; }
.orbit-two { width: 410px; height: 410px; border-style: dashed; animation: orbit 30s linear infinite; }
@keyframes orbit { to { transform: rotate(360deg); } }
.dashboard-card { position: relative; z-index: 3; width: min(465px, 90%); padding: 28px; border: 1px solid rgba(255,255,255,.15); border-radius: 28px; background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.055)); box-shadow: 0 45px 90px rgba(0,0,0,.34); backdrop-filter: blur(22px); transform: rotate(2deg); }
.dashboard-top, .dashboard-score, .dashboard-footer { display: flex; align-items: center; justify-content: space-between; }
.dashboard-kicker, .dashboard-score span, .dashboard-footer span, .floating-card span { display: block; color: rgba(255,255,255,.58); font-size: .72rem; }
.dashboard-top strong { font-size: 1.1rem; }
.live-status { display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; border-radius: 999px; background: rgba(34,197,94,.11); color: #86efac; font-size: .72rem; font-weight: 800; }
.live-status i { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 5px rgba(74,222,128,.12); }
.dashboard-score { justify-content: flex-start; gap: 24px; margin: 34px 0; }
.score-ring { display: grid; place-items: center; width: 118px; height: 118px; flex: 0 0 auto; border-radius: 50%; background: conic-gradient(var(--yellow) 0 92%, rgba(255,255,255,.1) 92% 100%); position: relative; }
.score-ring::before { content: ""; position: absolute; inset: 10px; border-radius: 50%; background: #242d3c; }
.score-ring span { position: relative; color: #fff; font-size: 2rem; font-weight: 900; }
.score-ring small { font-size: .8rem; color: var(--yellow); }
.dashboard-score > div:last-child strong { display: block; margin-top: 8px; font-size: 1.12rem; line-height: 1.25; }
.mini-chart { height: 112px; display: flex; align-items: flex-end; gap: 9px; padding: 10px 0 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.mini-chart span { flex: 1; height: var(--h); border-radius: 6px 6px 2px 2px; background: linear-gradient(to top, rgba(45,212,191,.2), var(--cyan)); }
.mini-chart span:nth-child(4), .mini-chart span:nth-child(7) { background: linear-gradient(to top, rgba(255,213,0,.16), var(--yellow)); }
.dashboard-footer { margin-top: 22px; gap: 10px; }
.dashboard-footer > div { flex: 1; padding: 11px; border-radius: 13px; background: rgba(255,255,255,.055); }
.dashboard-footer strong { font-size: .78rem; }
.floating-card { position: absolute; z-index: 4; display: flex; align-items: center; gap: 12px; padding: 13px 16px; border: 1px solid rgba(255,255,255,.18); border-radius: 16px; background: rgba(17,24,39,.88); box-shadow: 0 20px 50px rgba(0,0,0,.35); backdrop-filter: blur(15px); }
.floating-card strong { display: block; font-size: .85rem; }
.floating-system { left: -15px; bottom: 82px; animation: float 5s ease-in-out infinite; }
.floating-system img { width: 46px; height: 46px; object-fit: contain; border-radius: 50%; }
.floating-support { right: -12px; top: 72px; animation: float 6s ease-in-out .6s infinite; }
.support-icon { display: grid !important; place-items: center; width: 43px; height: 43px; border-radius: 12px; background: var(--yellow); color: var(--ink) !important; }
.support-icon svg { width: 23px; height: 23px; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero-bottom { position: absolute; left: -2%; right: -2%; bottom: -62px; height: 112px; border-radius: 50% 50% 0 0 / 100% 100% 0 0; background: #fff; }

.quick-strip { position: relative; z-index: 3; padding: 25px 0 22px; background: #fff; }
.quick-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.quick-grid > div { display: flex; align-items: center; justify-content: center; gap: 10px; min-width: 0; padding: 10px 14px; color: #64748b; font-size: .85rem; border-right: 1px solid var(--line); }
.quick-grid > div:last-child { border-right: 0; }
.quick-grid svg { flex: 0 0 auto; color: #0f766e; font-size: 1.4rem; }
.quick-grid strong { color: var(--ink); }

.section-heading { display: grid; grid-template-columns: 1.08fr .72fr; align-items: end; gap: 60px; margin-bottom: 52px; }
.section-heading h2, .about h2, .contact-copy h2, .process-heading h2, .partners-copy h2 { margin: 0; font-size: clamp(2.35rem, 4.1vw, 4.1rem); line-height: 1.04; letter-spacing: -.055em; }
.section-heading p { margin: 0 0 7px; color: var(--muted); font-size: 1.03rem; }
.solutions { background: #fff; }
.solutions-grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 20px; }
.solution-card { position: relative; min-height: 335px; display: flex; flex-direction: column; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.solution-card:hover { transform: translateY(-7px); border-color: #cbd5e1; box-shadow: var(--shadow-soft); }
.solution-featured { color: #fff; border-color: var(--ink); background: var(--ink); }
.solution-featured::before { content: ""; position: absolute; right: -80px; bottom: -100px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(255,213,0,.22), transparent 68%); }
.solution-number { position: absolute; top: 24px; right: 26px; color: #cbd5e1; font-size: .78rem; font-weight: 900; letter-spacing: .12em; }
.solution-featured .solution-number { color: rgba(255,255,255,.35); }
.solution-icon { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: auto; border-radius: 17px; color: var(--ink); background: var(--yellow); }
.solution-icon svg { width: 27px; height: 27px; }
.solution-card h3 { margin: 35px 0 9px; font-size: 1.45rem; letter-spacing: -.02em; }
.solution-card p { margin: 0; color: var(--muted); }
.solution-featured p { color: rgba(255,255,255,.63); }
.solution-card a { z-index: 2; display: inline-flex; align-items: center; gap: 8px; margin-top: 25px; color: var(--yellow); font-weight: 800; font-size: .9rem; }

.systems-section { position: relative; color: #fff; background: #0c1320; overflow: hidden; }
.systems-backdrop { position: absolute; inset: 0; background: radial-gradient(circle at 85% 12%, rgba(45,212,191,.12), transparent 30%), radial-gradient(circle at 5% 88%, rgba(255,213,0,.11), transparent 28%), linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: auto, auto, 65px 65px, 65px 65px; }
.systems-section > .container { position: relative; }
.section-heading-light p { color: rgba(255,255,255,.62); }
.filter-row { display: flex; flex-wrap: wrap; gap: 9px; margin: -15px 0 30px; }
.filter-button { min-height: 40px; padding: 0 17px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; color: rgba(255,255,255,.7); background: rgba(255,255,255,.04); font-weight: 800; cursor: pointer; transition: .2s ease; }
.filter-button:hover, .filter-button.is-active { color: var(--ink); border-color: var(--yellow); background: var(--yellow); }
.systems-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.system-card { min-width: 0; }
.system-card.is-hidden { display: none; }
.system-open { width: 100%; min-height: 370px; display: flex; flex-direction: column; align-items: flex-start; padding: 27px; text-align: left; color: #fff; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025)); cursor: pointer; overflow: hidden; transition: transform .3s ease, border-color .3s ease, background .3s ease; }
.system-open:hover { transform: translateY(-7px); border-color: rgba(255,213,0,.55); background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.04)); }
.system-image-wrap { display: grid; place-items: center; width: 88px; height: 88px; margin-bottom: 28px; border-radius: 24px; background: rgba(255,255,255,.95); box-shadow: 0 12px 25px rgba(0,0,0,.2); }
.system-image-wrap img { width: 68px; height: 68px; object-fit: contain; }
.system-meta { color: var(--yellow); font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .09em; }
.system-open > strong { margin-top: 7px; font-size: 1.35rem; }
.system-description { margin-top: 10px; color: rgba(255,255,255,.6); font-size: .92rem; line-height: 1.6; }
.system-link { display: inline-flex; align-items: center; gap: 7px; margin-top: auto; padding-top: 23px; color: #fff; font-size: .84rem; font-weight: 800; }
.system-open:hover .system-link { color: var(--yellow); }

.about { background: var(--surface-soft); }
.about-grid { display: grid; grid-template-columns: .94fr 1.06fr; align-items: center; gap: clamp(55px, 8vw, 100px); }
.about-visual { position: relative; min-height: 610px; }
.about-image { position: absolute; inset: 0 48px 35px 0; border-radius: var(--radius-lg); background: linear-gradient(180deg, rgba(17,24,39,.03), rgba(17,24,39,.2)), url('../img/produtos.jpg') center/cover; box-shadow: var(--shadow); }
.about-image::after { content: ""; position: absolute; inset: 24px; border: 1px solid rgba(255,255,255,.35); border-radius: 23px; }
.about-badge { position: absolute; right: 0; bottom: 0; width: 245px; padding: 25px; border-radius: 22px; color: #fff; background: var(--ink); box-shadow: 0 20px 50px rgba(15,23,42,.2); }
.about-badge strong { display: block; color: var(--yellow); font-size: 2.7rem; line-height: 1; }
.about-badge span { display: block; margin-top: 8px; color: rgba(255,255,255,.67); font-size: .84rem; }
.about-lines { position: absolute; z-index: -1; left: -45px; bottom: 5px; width: 165px; height: 165px; background-image: radial-gradient(#94a3b8 1.5px, transparent 1.5px); background-size: 12px 12px; opacity: .42; }
.about-copy h2 { margin-bottom: 26px; }
.about-copy > p { color: var(--muted); }
.about-lead { color: #334155 !important; font-size: 1.17rem; font-weight: 650; }
.about-points { display: grid; gap: 13px; margin: 30px 0; }
.about-points > div { display: flex; align-items: center; gap: 13px; }
.about-points span { display: grid; place-items: center; width: 32px; height: 32px; flex: 0 0 auto; border-radius: 10px; color: var(--ink); background: var(--yellow); }
.about-points p { margin: 0; color: #475569; font-size: .92rem; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 900; border-bottom: 3px solid var(--yellow); }

.process-section { padding-top: 100px; background: #fff; }
.process-heading { max-width: 760px; margin-bottom: 52px; }
.process-track { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.process-track::before { content: ""; position: absolute; top: 31px; left: 8%; right: 8%; height: 2px; background: linear-gradient(to right, var(--yellow), var(--cyan)); }
.process-step { position: relative; z-index: 2; padding: 0 16px; }
.process-step > span { display: grid; place-items: center; width: 62px; height: 62px; margin-bottom: 24px; border: 7px solid #fff; border-radius: 50%; color: var(--ink); background: var(--yellow); box-shadow: 0 5px 18px rgba(15,23,42,.1); font-size: .8rem; font-weight: 900; }
.process-step:nth-child(3) > span, .process-step:nth-child(4) > span { background: var(--cyan); }
.process-step h3 { margin: 0 0 7px; font-size: 1.14rem; }
.process-step p { margin: 0; color: var(--muted); font-size: .9rem; }

.partners { padding-top: 40px; background: #fff; }
.partners-panel { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 60px; padding: 55px; border-radius: var(--radius-lg); background: var(--surface-soft); }
.partners-copy h2 { font-size: clamp(2rem, 3.3vw, 3.3rem); }
.partners-copy p { color: var(--muted); }
.partners-logos { display: grid; grid-template-columns: repeat(2,1fr); gap: 13px; }
.partners-logos a { min-height: 126px; display: grid; place-items: center; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: #fff; transition: transform .25s ease, box-shadow .25s ease; }
.partners-logos a:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.partners-logos img { width: 100%; height: 82px; object-fit: contain; filter: saturate(.8); }

.contact-section { position: relative; padding: 110px 0; color: #fff; background: var(--ink); overflow: hidden; }
.contact-bg { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,24,39,.98), rgba(17,24,39,.76)), url('../img/contato.jpg') center/cover; opacity: .82; }
.contact-bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(45,212,191,.16), transparent 32%), radial-gradient(circle at 20% 90%, rgba(255,213,0,.13), transparent 32%); }
.contact-grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 80px; }
.contact-copy h2 { max-width: 720px; }
.contact-copy > p { max-width: 610px; color: rgba(255,255,255,.68); font-size: 1.06rem; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.contact-card { padding: 28px; border: 1px solid rgba(255,255,255,.15); border-radius: 25px; background: rgba(255,255,255,.08); backdrop-filter: blur(18px); box-shadow: 0 30px 70px rgba(0,0,0,.28); }
.contact-item { display: flex; align-items: flex-start; gap: 15px; padding: 18px 7px; border-bottom: 1px solid rgba(255,255,255,.1); }
.contact-item:last-child { border-bottom: 0; }
.contact-item > span { display: grid; place-items: center; width: 42px; height: 42px; flex: 0 0 auto; border-radius: 13px; color: var(--ink); background: var(--yellow); }
.contact-item small { display: block; color: rgba(255,255,255,.52); font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.contact-item a, .contact-item p { margin: 2px 0 0; color: #fff; font-weight: 700; line-height: 1.5; }
.contact-item p { font-size: .88rem; }

.site-footer { padding: 65px 0 25px; color: rgba(255,255,255,.68); background: #080d16; }
.footer-main { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; padding-bottom: 48px; }
.footer-brand img { width: 205px; height: auto; }
.footer-brand p { max-width: 320px; margin-top: 18px; }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 35px; }
.footer-links > div { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-links strong { margin-bottom: 5px; color: #fff; font-size: .9rem; }
.footer-links a { font-size: .86rem; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.09); font-size: .77rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 800; }

.whatsapp-float { position: fixed; z-index: 800; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 9px; min-height: 52px; padding: 0 17px; color: #fff; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; background: #16a34a; box-shadow: 0 15px 35px rgba(22,163,74,.3); font-size: .85rem; font-weight: 900; transition: transform .2s ease; }
.whatsapp-float:hover { transform: translateY(-3px); }
.whatsapp-float svg { width: 23px; height: 23px; }

.modal[hidden] { display: none; }
.modal { position: fixed; z-index: 2000; inset: 0; display: grid; place-items: center; padding: 22px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(8,13,22,.76); backdrop-filter: blur(8px); }
.modal-dialog { position: relative; width: min(590px, 100%); max-height: min(760px, calc(100vh - 44px)); overflow-y: auto; overflow-x: hidden; padding: 34px; border-radius: 28px; background: #fff; box-shadow: 0 35px 90px rgba(0,0,0,.35); animation: modalIn .25s ease both; }
@keyframes modalIn { from { opacity: 0; transform: translateY(15px) scale(.97); } }
.modal-close { position: absolute; top: 18px; right: 18px; display: grid; place-items: center; width: 40px; height: 40px; border: 0; border-radius: 12px; background: var(--surface-soft); cursor: pointer; }
.modal-header { display: flex; align-items: center; gap: 18px; padding-right: 40px; }
.modal-image { display: grid; place-items: center; width: 84px; height: 84px; flex: 0 0 auto; border-radius: 22px; background: #f1f5f9; }
.modal-image img { width: 65px; height: 65px; object-fit: contain; }
.modal-header span { color: var(--muted); font-size: .75rem; font-weight: 900; text-transform: uppercase; letter-spacing: .09em; }
.modal-header h2 { margin: 2px 0 0; font-size: 2rem; letter-spacing: -.04em; }
.modal-description { margin: 26px 0 20px; color: #475569; }
.modal-features { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.modal-features li { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: 12px; background: var(--surface-soft); font-weight: 750; font-size: .9rem; }
.modal-features svg { color: #0f766e; }
.modal-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }


.contact-item-link { color: inherit; transition: background .2s ease, transform .2s ease; }
.contact-item-link:hover { background: rgba(255,255,255,.06); transform: translateX(3px); }
.contact-item-link em { display: block; margin-top: 4px; color: var(--yellow); font-size: .75rem; font-style: normal; font-weight: 800; }
.contact-link-button,
.footer-link-button {
    margin: 2px 0 0;
    padding: 0;
    border: 0;
    color: inherit;
    background: transparent;
    font: inherit;
    text-align: left;
    cursor: pointer;
}
.contact-link-button { color: #fff; font-weight: 700; line-height: 1.5; }
.contact-link-button:hover,
.footer-link-button:hover { color: var(--yellow); }
.footer-link-button { color: rgba(255,255,255,.68); font-size: .86rem; }

.contact-modal-dialog { width: min(720px, 100%); }
.contact-modal-heading { display: flex; align-items: flex-start; gap: 17px; padding-right: 44px; }
.contact-modal-icon { display: grid; place-items: center; width: 58px; height: 58px; flex: 0 0 auto; border-radius: 18px; color: var(--ink); background: var(--yellow); }
.contact-modal-icon svg { width: 27px; height: 27px; }
.contact-modal-heading > div > span { color: #0f766e; font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .11em; }
.contact-modal-heading h2 { margin: 3px 0 4px; font-size: clamp(1.65rem, 3vw, 2.15rem); line-height: 1.08; letter-spacing: -.045em; }
.contact-modal-heading p { margin: 0; color: var(--muted); font-size: .92rem; }
.contact-form { margin-top: 25px; }
.contact-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
.contact-form-field { display: grid; gap: 7px; color: #334155; font-size: .82rem; font-weight: 800; }
.contact-form-field b { color: #dc2626; }
.contact-form-field-full { grid-column: 1 / -1; }
.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #dbe3ec;
    border-radius: 13px;
    color: var(--ink);
    background: #f8fafc;
    outline: 0;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-form input { min-height: 46px; padding: 0 13px; }
.contact-form textarea { min-height: 135px; padding: 12px 13px; line-height: 1.5; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus { border-color: #14b8a6; background: #fff; box-shadow: 0 0 0 4px rgba(20,184,166,.11); }
.contact-form-trap { position: absolute !important; inset: 0 auto auto 0 !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; border: 0 !important; overflow: hidden !important; white-space: nowrap !important; clip: rect(0 0 0 0) !important; clip-path: inset(50%) !important; }
.contact-form-note { margin: 10px 0 0; color: #94a3b8; font-size: .75rem; }
.contact-form-status { min-height: 0; margin-top: 10px; padding: 0; border-radius: 12px; font-size: .84rem; font-weight: 750; }
.contact-form-status.is-error { padding: 10px 12px; color: #991b1b; background: #fef2f2; border: 1px solid #fecaca; }
.contact-form-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 18px; }
.contact-form-actions .button:disabled { opacity: .65; cursor: wait; transform: none; }
.contact-form-success { padding: 18px 5px 2px; text-align: center; }
.contact-form-success > span { display: grid; place-items: center; width: 72px; height: 72px; margin: 0 auto 17px; border-radius: 22px; color: #047857; background: #d1fae5; }
.contact-form-success > span svg { width: 36px; height: 36px; stroke-width: 2.3; }
.contact-form-success h3 { margin: 0; font-size: 1.7rem; letter-spacing: -.035em; }
.contact-form-success p { max-width: 490px; margin: 8px auto 20px; color: var(--muted); }
.contact-form-success .button { min-width: 130px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .13s; }

:focus-visible { outline: 3px solid rgba(59,130,246,.55); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1120px) {
    .header-inner { grid-template-columns: 170px 1fr auto; gap: 18px; }
    .brand { width: 158px; }
    .main-nav { gap: 18px; }
    .header-actions .button-ghost { display: none; }
    .hero-grid { grid-template-columns: 1fr .85fr; gap: 35px; }
    .floating-system { left: 0; }
    .floating-support { right: 0; }
}

@media (max-width: 900px) {
    :root { --container: min(100% - 32px, 760px); }
    .section { padding: 88px 0; }
    .site-header, .site-header.is-scrolled { height: 74px; }
    .header-inner { grid-template-columns: 1fr auto auto; }
    .brand { width: 150px; }
    .menu-toggle { display: block; order: 3; }
    .header-actions { order: 2; }
    .header-actions .button-primary { min-height: 42px; padding-inline: 14px; font-size: .82rem; }
    .main-nav { position: fixed; inset: 74px 0 auto; display: grid; justify-content: stretch; gap: 0; padding: 14px 20px 24px; background: rgba(255,255,255,.98); border-bottom: 1px solid var(--line); box-shadow: 0 20px 35px rgba(15,23,42,.1); transform: translateY(-125%); opacity: 0; visibility: hidden; transition: transform .28s ease, opacity .28s ease, visibility .28s ease; }
    .main-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
    .main-nav a { padding: 13px 10px; border-bottom: 1px solid #eef2f7; }
    .main-nav a:last-child { border-bottom: 0; }
    .main-nav a::after { display: none; }
    .hero { min-height: auto; padding: 130px 0 95px; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy { max-width: none; text-align: center; }
    .hero h1 { max-width: 780px; margin-inline: auto; font-size: clamp(3.2rem, 9vw, 5rem); }
    .hero-copy > p { margin-inline: auto; }
    .hero-actions, .hero-trust { justify-content: center; }
    .hero-visual { min-height: 520px; width: min(600px,100%); margin-inline: auto; }
    .quick-grid { grid-template-columns: repeat(2,1fr); }
    .quick-grid > div:nth-child(2) { border-right: 0; }
    .section-heading, .partners-panel, .contact-grid { grid-template-columns: 1fr; gap: 30px; }
    .solutions-grid, .systems-grid { grid-template-columns: repeat(2,1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { min-height: 540px; }
    .process-track { grid-template-columns: repeat(2,1fr); gap: 40px 18px; }
    .process-track::before { display: none; }
    .partners-panel { padding: 40px; }
    .contact-grid { gap: 45px; }
    .footer-main { grid-template-columns: 1fr; gap: 45px; }
}

@media (max-width: 620px) {
    :root { --container: calc(100% - 28px); --radius-lg: 26px; }
    html { scroll-padding-top: 72px; }
    body { font-size: 15px; }
    .section { padding: 72px 0; }
    .brand { width: 138px; }
    .header-inner { grid-template-columns: 1fr auto; }
    .header-actions { display: none; }
    .hero { padding: 112px 0 75px; }
    .hero::before { background-size: 40px 40px; }
    .hero h1 { font-size: clamp(2.75rem, 14.3vw, 4rem); line-height: 1; }
    .hero-copy > p { font-size: 1rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .button { width: 100%; }
    .hero-trust { margin-top: 30px; text-align: left; }
    .hero-visual { min-height: 430px; margin-top: 18px; }
    .orbit-one { width: 390px; height: 390px; }
    .orbit-two { width: 315px; height: 315px; }
    .dashboard-card { width: 94%; padding: 21px; border-radius: 22px; transform: none; }
    .dashboard-score { gap: 16px; margin: 25px 0; }
    .score-ring { width: 96px; height: 96px; }
    .score-ring span { font-size: 1.65rem; }
    .dashboard-score > div:last-child strong { font-size: .96rem; }
    .mini-chart { height: 85px; gap: 6px; }
    .dashboard-footer > div { padding: 9px 6px; }
    .dashboard-footer span { font-size: .6rem; }
    .dashboard-footer strong { font-size: .66rem; }
    .floating-card { padding: 10px 12px; }
    .floating-system { left: 0; bottom: 22px; }
    .floating-support { right: 0; top: 8px; }
    .floating-card span { font-size: .62rem; }
    .floating-card strong { font-size: .72rem; }
    .quick-strip { padding: 16px 0; }
    .quick-grid { grid-template-columns: 1fr; gap: 0; }
    .quick-grid > div { justify-content: flex-start; border-right: 0; border-bottom: 1px solid var(--line); }
    .quick-grid > div:last-child { border-bottom: 0; }
    .section-heading { margin-bottom: 35px; }
    .section-heading h2, .about h2, .contact-copy h2, .process-heading h2, .partners-copy h2 { font-size: clamp(2.15rem, 11vw, 3rem); }
    .solutions-grid, .systems-grid { grid-template-columns: 1fr; }
    .solution-card { min-height: 290px; padding: 27px; }
    .systems-grid { gap: 14px; }
    .system-open { min-height: 330px; padding: 24px; }
    .about-visual { min-height: 445px; }
    .about-image { inset: 0 20px 25px 0; }
    .about-badge { width: 210px; padding: 20px; }
    .about-badge strong { font-size: 2.2rem; }
    .process-track { grid-template-columns: 1fr; gap: 26px; }
    .process-step { display: grid; grid-template-columns: 54px 1fr; gap: 15px; padding: 0; }
    .process-step > span { width: 54px; height: 54px; margin: 0; }
    .partners-panel { padding: 28px 20px; }
    .partners-logos { grid-template-columns: 1fr 1fr; gap: 9px; }
    .partners-logos a { min-height: 98px; padding: 12px; }
    .partners-logos img { height: 63px; }
    .contact-section { padding: 78px 0; }
    .contact-actions { flex-direction: column; }
    .contact-actions .button { width: 100%; }
    .contact-card { padding: 18px; }
    .contact-item { padding: 15px 3px; }
    .footer-main { gap: 35px; }
    .footer-links { grid-template-columns: 1fr 1fr; gap: 30px; }
    .footer-links > div:last-child { grid-column: 1 / -1; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
    .whatsapp-float { width: 54px; height: 54px; right: 15px; bottom: 15px; padding: 0; justify-content: center; }
    .whatsapp-float span { display: none; }
    .modal { padding: 12px; }
    .modal-dialog { padding: 26px 21px; border-radius: 23px; }
    .modal-header { align-items: flex-start; }
    .modal-image { width: 68px; height: 68px; border-radius: 18px; }
    .modal-image img { width: 53px; height: 53px; }
    .modal-header h2 { font-size: 1.55rem; }
    .modal-actions { flex-direction: column; }
    .modal-actions .button { width: 100%; }
    .contact-modal-heading { gap: 12px; padding-right: 35px; }
    .contact-modal-icon { width: 48px; height: 48px; border-radius: 15px; }
    .contact-modal-icon svg { width: 23px; height: 23px; }
    .contact-form-grid { grid-template-columns: 1fr; gap: 12px; }
    .contact-form-field-full { grid-column: auto; }
    .contact-form textarea { min-height: 120px; }
    .contact-form-actions { flex-direction: column-reverse; }
    .contact-form-actions .button { width: 100%; }
}

@media print {
    .reveal { opacity: 1 !important; transform: none !important; }
    .site-header { position: absolute; }
    .whatsapp-float { position: absolute; }
}

/* v23 — opção de cópia no formulário de contato */
.contact-copy-option {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-top: 13px;
    padding: 12px 13px;
    border: 1px solid #d9e3ec;
    border-radius: 14px;
    background: #f8fafc;
    cursor: pointer;
    transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.contact-copy-option:hover {
    border-color: #9fded8;
    background: #f2fbfa;
}
.contact-copy-option:focus-within {
    border-color: #14b8a6;
    box-shadow: 0 0 0 4px rgba(20,184,166,.11);
}
.contact-copy-option > input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.contact-copy-control {
    display: grid;
    place-items: center;
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    border: 1.5px solid #9fb2c1;
    border-radius: 7px;
    background: #fff;
    color: #fff;
    transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.contact-copy-control svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0;
    transform: scale(.7);
    transition: opacity .15s ease, transform .15s ease;
}
.contact-copy-option > input:checked + .contact-copy-control {
    border-color: #0fada0;
    background: #14b8a6;
}
.contact-copy-option > input:checked + .contact-copy-control svg {
    opacity: 1;
    transform: scale(1);
}
.contact-copy-text {
    display: grid;
    gap: 2px;
    min-width: 0;
}
.contact-copy-text strong {
    color: #1f2937;
    font-size: .84rem;
    line-height: 1.25;
}
.contact-copy-text small {
    color: #718096;
    font-size: .73rem;
    line-height: 1.35;
}


/* v24 - estabilidade do formulário de e-mail em celulares */
@media (max-width: 760px), (pointer: coarse) {
    #modal-contact .contact-modal-dialog {
        max-height: calc(100dvh - 24px);
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        scroll-padding-top: 76px;
        scroll-padding-bottom: 42vh;
    }

    #modal-contact .contact-form input,
    #modal-contact .contact-form textarea {
        /* Evita o zoom automático do Safari quando o campo recebe foco. */
        font-size: 16px;
        line-height: 1.4;
        touch-action: manipulation;
    }

    #modal-contact .contact-form-field {
        scroll-margin-top: 76px;
        scroll-margin-bottom: 42vh;
    }
}

/* v30 — botão flutuante de retorno ao topo ao lado do WhatsApp */
.footer-bottom {
    justify-content: flex-start;
}

.floating-actions {
    position: fixed;
    z-index: 800;
    right: 22px;
    bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    pointer-events: none;
}

.floating-actions .whatsapp-float,
.floating-actions .back-to-top-float {
    position: static;
    right: auto;
    bottom: auto;
    pointer-events: auto;
}

.back-to-top-float {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    color: #fff;
    background: #16232d;
    box-shadow: 0 15px 35px rgba(8,13,22,.28);
    font: inherit;
    font-size: .82rem;
    font-weight: 900;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease, background .2s ease;
}

.back-to-top-float.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-float:hover {
    background: #243744;
    transform: translateY(-3px);
}

.back-to-top-float svg {
    width: 21px;
    height: 21px;
}

@media (max-width: 760px) {
    .floating-actions {
        right: 15px;
        bottom: 15px;
        gap: 8px;
    }

    .floating-actions .whatsapp-float,
    .floating-actions .back-to-top-float {
        width: 54px;
        height: 54px;
        min-height: 54px;
        padding: 0;
    }

    .floating-actions .back-to-top-float span,
    .floating-actions .whatsapp-float span {
        display: none;
    }
}

@media print {
    .floating-actions {
        display: none !important;
    }
}

/* v31 — página de suporte remoto */
.main-nav a[aria-current="page"]::after {
    right: 0;
}

.site-header.site-header-solid,
.site-header.site-header-solid.is-scrolled {
    background: rgba(255,255,255,.97);
}

.support-page-main {
    background:
        radial-gradient(circle at top right, rgba(23,215,243,.06), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #f3f7fb 100%);
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 138px 0 80px;
}

.page-hero-support {
    color: #fff;
    background:
        radial-gradient(circle at 14% 22%, rgba(245,204,0,.16), transparent 28%),
        radial-gradient(circle at 85% 12%, rgba(0,245,255,.15), transparent 24%),
        linear-gradient(135deg, #031021 0%, #0a2138 48%, #0c1830 100%);
}

.page-hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(16px);
    opacity: .65;
    pointer-events: none;
}

.page-hero-glow-one {
    left: -80px;
    bottom: 18px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(245,204,0,.26), rgba(245,204,0,0));
}

.page-hero-glow-two {
    right: -85px;
    top: 42px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(0,240,255,.22), rgba(0,240,255,0));
}

.page-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, .96fr);
    gap: 32px;
    align-items: center;
}

.page-hero-copy h1 {
    margin: 16px 0 18px;
    max-width: 720px;
    font-size: clamp(2.9rem, 5.7vw, 4.9rem);
    line-height: .98;
    letter-spacing: -.05em;
}

.page-hero-copy > p {
    max-width: 700px;
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: 1.08rem;
}

.support-hero-actions {
    margin-top: 28px;
}

.support-link-box {
    margin-top: 24px;
    padding: 17px 18px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: rgba(255,255,255,.07);
    box-shadow: 0 16px 40px rgba(3,12,24,.24);
}

.support-link-box strong {
    display: block;
    margin-bottom: 6px;
    font-size: .9rem;
}

.support-link-box a {
    color: #7af2ff;
    font-weight: 700;
    word-break: break-all;
}

.support-hero-card {
    padding: 28px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255,255,255,.09) 0%, rgba(255,255,255,.06) 100%);
    box-shadow: 0 26px 70px rgba(2,9,18,.34);
    backdrop-filter: blur(8px);
}

.support-hero-logo {
    display: block;
    width: min(350px, 100%);
    height: auto;
    margin-bottom: 26px;
}

.support-hero-badges {
    display: grid;
    gap: 14px;
}

.support-badge {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 14px;
    align-items: center;
    padding: 15px;
    border-radius: 20px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.08);
}

.support-badge span {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    color: #06111f;
    background: var(--yellow);
}

.support-badge svg,
.support-benefit-icon svg {
    width: 24px;
    height: 24px;
}

.support-badge strong,
.support-benefit-card h3,
.support-step-card h3,
.support-trust-panel h3 {
    display: block;
    margin-bottom: 4px;
    font-size: 1.03rem;
}

.support-badge small {
    display: block;
    color: rgba(255,255,255,.76);
    font-size: .88rem;
    line-height: 1.45;
}

.support-benefits-section,
.support-steps-section,
.support-trust-section {
    position: relative;
}

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

.support-benefit-card,
.support-trust-panel {
    padding: 26px;
    border: 1px solid rgba(208,220,233,.92);
    border-radius: 28px;
    background: rgba(255,255,255,.84);
    box-shadow: 0 26px 60px rgba(15,23,42,.08);
}

.support-benefit-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    border-radius: 18px;
    color: #081423;
    background: linear-gradient(180deg, #ffd82d 0%, #f5cc00 100%);
    box-shadow: 0 14px 28px rgba(245,204,0,.28);
}

.support-benefit-card p,
.support-step-content p,
.support-trust-copy p,
.support-trust-panel p {
    margin: 0;
    color: #4b5563;
}

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

.support-step-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 24px;
    border: 1px solid rgba(208,220,233,.96);
    border-radius: 30px;
    background: rgba(255,255,255,.88);
    box-shadow: 0 28px 60px rgba(15,23,42,.08);
}

.support-step-number {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    color: #081423;
    background: linear-gradient(180deg, #ffe558 0%, #f5cc00 100%);
    box-shadow: 0 15px 30px rgba(245,204,0,.28);
    font-size: 1.12rem;
    font-weight: 900;
}

.support-step-kicker {
    display: inline-block;
    margin-bottom: 7px;
    color: #0f766e;
    font-size: .74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.support-screen {
    margin: 0;
    padding: 12px;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 22px;
    background: linear-gradient(180deg, #f8fafc 0%, #eef4f9 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
}

.support-screen img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.support-screen-shortcut {
    display: grid;
    place-items: center;
    min-height: 310px;
}

.support-screen-shortcut img {
    width: min(100%, 290px);
}

.support-trust-section {
    padding-top: 0;
}

.support-trust-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr);
    gap: 22px;
    align-items: start;
}

.support-trust-copy {
    padding: 34px;
    border-radius: 30px;
    color: #fff;
    background: linear-gradient(140deg, #071425 0%, #0d223a 60%, #142742 100%);
    box-shadow: 0 28px 70px rgba(4,11,22,.28);
}

.support-trust-copy h2 {
    margin: 12px 0 16px;
    font-size: clamp(2.2rem, 4vw, 3.25rem);
    line-height: 1.02;
    letter-spacing: -.045em;
}

.support-trust-copy p,
.support-check-list li {
    color: rgba(255,255,255,.82);
}

.support-check-list {
    display: grid;
    gap: 12px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.support-check-list li {
    position: relative;
    padding-left: 28px;
}

.support-check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffe250 0%, #f5cc00 100%);
    box-shadow: 0 0 0 6px rgba(245,204,0,.13);
}

.support-panel-button {
    width: 100%;
    margin-top: 18px;
}

.support-panel-meta {
    display: grid;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #dbe4ee;
    color: #334155;
}

.support-panel-meta strong {
    color: #0f172a;
}

.contact-link-inline {
    color: #0f172a;
    font-weight: 800;
}

@media (max-width: 1100px) {
    .page-hero-grid,
    .support-trust-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 900px) {
    .page-hero {
        padding: 118px 0 72px;
    }

    .page-hero-copy,
    .support-hero-card {
        text-align: center;
    }

    .page-hero-copy > p,
    .page-hero-copy h1,
    .support-link-box {
        margin-left: auto;
        margin-right: auto;
    }

    .support-hero-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .support-badge {
        text-align: left;
    }
}

@media (max-width: 620px) {
    .page-hero {
        padding: 108px 0 62px;
    }

    .page-hero-copy h1 {
        font-size: clamp(2.45rem, 13vw, 3.6rem);
    }

    .support-hero-actions,
    .support-hero-actions .button {
        width: 100%;
    }

    .support-benefit-grid,
    .support-steps-grid {
        grid-template-columns: 1fr;
    }

    .support-benefit-card,
    .support-step-card,
    .support-trust-copy,
    .support-trust-panel,
    .support-hero-card {
        padding: 22px;
        border-radius: 24px;
    }

    .support-trust-copy {
        padding-top: 26px;
    }

    .support-screen {
        padding: 10px;
        border-radius: 18px;
    }

    .support-screen img {
        border-radius: 12px;
    }

    .support-screen-shortcut {
        min-height: auto;
    }
}
