:root {
  --navy-950: #030914;
  --navy-900: #071220;
  --navy-800: #0b1d31;
  --blue: #148cff;
  --blue-light: #68b9ff;
  --orange: #ff7a18;
  --white: #f7fbff;
  --muted: #a8b9ca;
  --line: rgba(113, 174, 224, 0.18);
}

* { box-sizing: border-box; }
html, body { padding: 0; }
img { max-width: 100%; }
button, input, textarea, select { font: inherit; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  background: var(--navy-950);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(131, 184, 228, 0.13);
  background: rgba(3, 9, 20, 0.82);
  backdrop-filter: blur(18px);
}
.header-inner { height: 82px; display: flex; align-items: center; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: max-content; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 39px;
  height: 43px;
  color: var(--blue);
  filter: drop-shadow(0 0 12px rgba(20, 140, 255, .28));
}
.brand-mark svg, .badge-icon svg { width: 100%; height: 100%; fill: rgba(20, 140, 255, .12); stroke: currentColor; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.brand strong { display: block; font-size: 18px; letter-spacing: .13em; line-height: 1; }
.brand small { display: block; margin-top: 5px; color: var(--blue-light); font-size: 9px; letter-spacing: .21em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 25px; margin-left: auto; }
.desktop-nav a { color: #c5d2df; font-size: 13px; font-weight: 600; transition: color .2s ease; }
.desktop-nav a:hover { color: #fff; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid transparent;
  border-radius: 9px;
  padding: 0 23px;
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, #0d8cf9, #0468c6); color: #fff; box-shadow: 0 15px 38px rgba(0, 116, 225, .25); }
.button-primary:hover { box-shadow: 0 18px 48px rgba(0, 139, 255, .35); }
.button-secondary { border-color: rgba(155, 197, 230, .25); background: rgba(8, 26, 44, .55); color: #e9f5ff; }
.button-secondary:hover { border-color: rgba(104, 185, 255, .5); background: rgba(12, 42, 68, .7); }
.button-small { min-height: 40px; padding: 0 17px; font-size: 12px; }
.header-cta { margin-left: 2px; }
.mobile-menu { display: none; position: relative; margin-left: auto; }
.mobile-menu summary { list-style: none; cursor: pointer; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 8px; display: grid; place-content: center; gap: 4px; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary span { display: block; width: 19px; height: 2px; background: #dcebfa; }
.mobile-menu nav { position: absolute; top: 51px; right: 0; width: 225px; padding: 11px; border: 1px solid var(--line); border-radius: 12px; background: #07131f; box-shadow: 0 18px 50px #000a; }
.mobile-menu nav a { display: block; padding: 12px 14px; border-radius: 7px; color: #d9e8f6; font-weight: 700; }
.mobile-menu nav a:hover { background: rgba(20, 140, 255, .1); }

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  padding: 150px 0 80px;
  background:
    radial-gradient(circle at 82% 37%, rgba(15, 121, 216, .18), transparent 35%),
    radial-gradient(circle at 15% 75%, rgba(5, 100, 190, .10), transparent 30%),
    linear-gradient(115deg, #030914 0%, #071422 58%, #04101d 100%);
}
.hero::before { content: ""; position: absolute; width: 470px; height: 470px; border: 1px solid rgba(30, 150, 255, .12); border-radius: 50%; top: 142px; right: -180px; box-shadow: 0 0 0 80px rgba(30, 150, 255, .025), 0 0 0 160px rgba(30, 150, 255, .018); }
.hero-grid { position: absolute; inset: 0; opacity: .11; background-image: linear-gradient(rgba(60, 149, 220, .15) 1px, transparent 1px), linear-gradient(90deg, rgba(60, 149, 220, .15) 1px, transparent 1px); background-size: 58px 58px; mask-image: linear-gradient(to right, black, transparent 70%); }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 48% 52%; align-items: center; gap: 48px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 22px; color: var(--blue-light); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 34px; height: 2px; background: var(--orange); box-shadow: 0 0 12px var(--orange); }
.hero h1 { margin: 0; max-width: 680px; font-size: clamp(50px, 5.15vw, 76px); line-height: .99; letter-spacing: -.045em; }
.hero h1 em { display: block; color: var(--blue-light); font-style: normal; }
.hero-lead { max-width: 630px; margin: 28px 0 0; color: #bdcad7; font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-assurances { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 28px; color: #a9bacb; font-size: 12px; font-weight: 700; }
.hero-assurances span { display: inline-flex; align-items: center; gap: 7px; }
.hero-assurances b { display: inline-grid; place-items: center; width: 19px; height: 19px; border: 1px solid rgba(90, 183, 255, .5); border-radius: 50%; color: var(--blue-light); font-size: 10px; }
.hero-visual { position: relative; min-width: 0; }
.hero-image-frame { position: relative; overflow: hidden; min-height: 490px; border: 1px solid rgba(103, 178, 236, .24); border-radius: 22px 22px 22px 80px; box-shadow: 0 30px 80px rgba(0, 0, 0, .45); }
.hero-image-frame::before { content: ""; position: absolute; z-index: 3; inset: 14px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 14px 14px 14px 64px; pointer-events: none; }
.hero-image-frame img { width: 100%; height: 100%; min-height: 490px; object-fit: cover; object-position: center; }
.hero-image-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3, 10, 19, .33), transparent 38%), linear-gradient(0deg, rgba(3, 10, 19, .55), transparent 42%); }
.hero-badge { position: absolute; left: -34px; bottom: -35px; display: flex; align-items: center; gap: 14px; width: min(410px, calc(100% - 20px)); padding: 18px 20px; border: 1px solid rgba(43, 155, 244, .42); border-radius: 14px; background: rgba(4, 16, 29, .94); box-shadow: 0 16px 45px rgba(0, 0, 0, .45); backdrop-filter: blur(12px); }
.badge-icon { display: grid; place-items: center; flex: 0 0 48px; width: 48px; height: 52px; color: var(--orange); }
.badge-icon svg { fill: rgba(255, 122, 24, .08); }
.hero-badge small { display: block; color: var(--orange); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.hero-badge strong { display: block; margin-top: 6px; font-size: 15px; line-height: 1.35; }

.impact-bar { position: relative; z-index: 3; border-block: 1px solid var(--line); background: #071321; }
.impact-items { display: grid; grid-template-columns: repeat(5, 1fr); }
.impact-item { display: flex; align-items: center; justify-content: center; gap: 11px; min-height: 92px; border-right: 1px solid var(--line); }
.impact-item:first-child { border-left: 1px solid var(--line); }
.impact-item span { color: var(--orange); font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.impact-item strong { color: #d7e5f2; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }

.section { position: relative; padding: 118px 0; }
.section-heading { max-width: 760px; margin-bottom: 54px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-kicker { margin: 0 0 17px; color: var(--orange); font-size: 11px; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.section-heading h2, .about-copy h2, .support-copy h2, .contact-copy h2 {
  margin: 0;
  color: #f4f9fd;
  font-size: clamp(38px, 4.2vw, 56px);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.section-heading h2 em, .about-copy h2 em, .support-copy h2 em, .contact-copy h2 em { color: var(--blue-light); font-style: normal; }
.section-heading > p:last-child { max-width: 660px; margin: 22px auto 0; color: var(--muted); font-size: 17px; line-height: 1.7; }

.solutions { overflow: hidden; background: linear-gradient(180deg, #050c16, #07111e); }
.solutions::before { content: ""; position: absolute; width: 650px; height: 650px; left: -420px; top: 220px; border: 1px solid rgba(20, 140, 255, .12); border-radius: 50%; box-shadow: 0 0 0 80px rgba(20, 140, 255, .018), 0 0 0 160px rgba(20, 140, 255, .012); }
.service-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.service-card { min-height: 350px; padding: 30px 29px 27px; border: 1px solid var(--line); border-radius: 15px; background: linear-gradient(145deg, rgba(15, 38, 60, .7), rgba(5, 16, 29, .72)); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(62, 160, 237, .45); box-shadow: 0 22px 55px rgba(0, 0, 0, .26); }
.service-top { display: flex; align-items: flex-start; justify-content: space-between; }
.service-top small { color: rgba(139, 180, 213, .38); font-size: 11px; font-weight: 900; letter-spacing: .13em; }
.service-icon { display: grid; place-items: center; width: 58px; height: 58px; border: 1px solid rgba(20, 140, 255, .35); border-radius: 13px; color: var(--blue-light); background: rgba(20, 140, 255, .08); box-shadow: inset 0 0 22px rgba(15, 126, 221, .06); }
.service-icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.service-icon > strong { font-size: 13px; letter-spacing: .08em; }
.service-card h3 { margin: 26px 0 13px; font-size: 21px; letter-spacing: -.015em; }
.service-card p { margin: 0; min-height: 98px; color: #9fb0c1; font-size: 14px; line-height: 1.72; }
.service-card a { display: inline-flex; align-items: center; gap: 8px; margin-top: 21px; color: var(--blue-light); font-size: 12px; font-weight: 800; }
.service-card a span { color: var(--orange); transition: transform .2s ease; }
.service-card:hover a span { transform: translateX(4px); }

.principle { border-block: 1px solid var(--line); background: linear-gradient(90deg, #0a1a2b, #081522); }
.principle-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 30px; min-height: 190px; }
.principle-icon { width: 70px; height: 76px; color: var(--orange); }
.principle-icon svg { width: 100%; height: 100%; fill: rgba(255, 122, 24, .05); stroke: currentColor; stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 20px rgba(255, 122, 24, .2)); }
.principle p { margin: 0 0 8px; color: var(--orange); font-size: 11px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.principle h2 { max-width: 800px; margin: 0; font-size: clamp(21px, 2.2vw, 29px); line-height: 1.35; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: #dfeefa; font-size: 13px; font-weight: 800; white-space: nowrap; }
.text-link span { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid rgba(104, 185, 255, .3); border-radius: 50%; color: var(--blue-light); }

.about { background: #f3f7fa; color: #102132; }
.about-layout { display: grid; grid-template-columns: 43% 57%; align-items: center; gap: 80px; }
.about-visual { position: relative; padding: 0 0 48px 34px; }
.about-visual::before { content: ""; position: absolute; left: 0; bottom: 15px; width: 70%; height: 72%; border: 1px solid rgba(14, 119, 210, .2); border-radius: 22px; background: linear-gradient(145deg, rgba(20, 140, 255, .08), transparent); }
.about-image-wrap { position: relative; overflow: hidden; border-radius: 20px 20px 80px 20px; box-shadow: 0 28px 60px rgba(16, 42, 64, .2); }
.about-image-wrap img { display: block; width: 100%; height: auto; }
.about-signature { position: absolute; right: -20px; bottom: 0; padding: 18px 22px; border-left: 4px solid var(--orange); border-radius: 6px 12px 12px 6px; background: #071523; color: #fff; box-shadow: 0 18px 40px rgba(5, 20, 35, .28); }
.about-signature strong { display: block; font-size: 20px; }
.about-signature span { display: block; margin-top: 5px; color: var(--blue-light); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.about-copy h2 { color: #071624; }
.about-copy h2 em { color: #087bd5; }
.about-copy > p:not(.section-kicker) { margin: 22px 0 0; color: #526778; font-size: 16px; line-height: 1.75; }
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 20px; margin: 28px 0 31px; }
.about-points span { display: flex; gap: 10px; align-items: center; color: #263d51; font-size: 13px; font-weight: 700; }
.about-points b { display: grid; place-items: center; flex: 0 0 23px; width: 23px; height: 23px; border-radius: 50%; background: rgba(10, 129, 219, .1); color: #087bd5; }

.remote-support { overflow: hidden; background: linear-gradient(135deg, #06101d, #0a1a2b); }
.remote-support::after { content: ""; position: absolute; width: 500px; height: 500px; right: -240px; bottom: -190px; border: 1px solid rgba(20, 140, 255, .13); border-radius: 50%; box-shadow: 0 0 0 80px rgba(20, 140, 255, .018), 0 0 0 160px rgba(20, 140, 255, .012); }
.support-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 52% 48%; gap: 80px; align-items: center; }
.support-copy > p:not(.section-kicker) { max-width: 640px; margin: 22px 0 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.support-steps { margin: 32px 0 0; padding: 0; list-style: none; }
.support-steps li { display: flex; gap: 17px; padding: 18px 0; border-top: 1px solid var(--line); }
.support-steps li:last-child { border-bottom: 1px solid var(--line); }
.support-steps li > span { display: grid; place-items: center; flex: 0 0 38px; width: 38px; height: 38px; border: 1px solid rgba(255, 122, 24, .45); border-radius: 50%; color: var(--orange); font-size: 12px; font-weight: 900; }
.support-steps strong { display: block; font-size: 15px; }
.support-steps p { margin: 5px 0 0; color: #91a5b8; font-size: 13px; line-height: 1.55; }
.support-tools { display: grid; gap: 14px; }
.tool-card { display: grid; grid-template-columns: 64px 1fr auto; align-items: center; gap: 18px; padding: 23px; border: 1px solid var(--line); border-radius: 15px; background: rgba(10, 28, 47, .75); transition: transform .2s ease, border-color .2s ease; }
.tool-card:hover { transform: translateX(5px); border-color: rgba(67, 167, 244, .45); }
.tool-logo { display: grid; place-items: center; width: 62px; height: 62px; border-radius: 14px; color: #fff; font-size: 30px; font-weight: 900; }
.tool-logo.teamviewer { background: #0877ce; }
.tool-logo.anydesk { background: #e84040; }
.tool-card small { display: block; color: #849cb1; font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.tool-card strong { display: block; margin-top: 4px; font-size: 22px; }
.tool-card p { margin: 5px 0 0; color: var(--blue-light); font-size: 11px; font-weight: 700; }
.tool-card > b { color: var(--orange); }
.security-note { display: flex; align-items: flex-start; gap: 15px; margin-top: 4px; padding: 18px 20px; border: 1px solid rgba(255, 122, 24, .22); border-radius: 12px; background: rgba(255, 122, 24, .045); }
.security-note > span { display: grid; place-items: center; flex: 0 0 29px; width: 29px; height: 29px; border: 1px solid rgba(255, 122, 24, .5); border-radius: 50%; color: var(--orange); font-weight: 900; }
.security-note p { margin: 0; color: #9eafbf; font-size: 12px; line-height: 1.6; }
.security-note strong { color: #f2f7fb; }

.articles { background: #eef3f7; color: #102132; }
.split-heading { display: grid; grid-template-columns: 62% 38%; align-items: end; gap: 40px; max-width: none; }
.split-heading h2 { color: #071624; }
.split-heading h2 em { color: #087bd5; }
.split-heading > p:last-child { margin: 0; color: #637789; font-size: 15px; line-height: 1.7; }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.article-card { overflow: hidden; border: 1px solid #d9e2e9; border-radius: 16px; background: #fff; box-shadow: 0 18px 45px rgba(21, 55, 82, .07); transition: transform .25s ease, box-shadow .25s ease; }
.article-card:hover { transform: translateY(-7px); box-shadow: 0 24px 60px rgba(21, 55, 82, .14); }
.article-image { overflow: hidden; aspect-ratio: 16 / 9.7; background: #071421; }
.article-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.article-card:hover img { transform: scale(1.035); }
.article-body { padding: 24px 24px 27px; }
.article-body small { color: #e45f08; font-size: 9px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.article-body h3 { margin: 11px 0 10px; color: #0b2033; font-size: 21px; line-height: 1.25; }
.article-body p { margin: 0; min-height: 69px; color: #65798b; font-size: 13px; line-height: 1.65; }
.article-body a { display: inline-flex; gap: 8px; margin-top: 20px; color: #087bd5; font-size: 12px; font-weight: 800; }
.article-body a span { color: var(--orange); }

.contact { position: relative; overflow: hidden; padding: 110px 0; background: #06111e; }
.contact-glow { position: absolute; width: 700px; height: 700px; left: -260px; top: -400px; border-radius: 50%; background: radial-gradient(circle, rgba(16, 129, 226, .22), transparent 66%); }
.contact-layout { position: relative; display: grid; grid-template-columns: 60% 40%; align-items: center; gap: 80px; }
.contact-copy > p:not(.section-kicker) { max-width: 650px; margin: 23px 0 0; color: #9fb1c2; font-size: 16px; line-height: 1.7; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.button-whatsapp { background: #20a95b; color: #fff; box-shadow: 0 15px 36px rgba(20, 154, 78, .2); }
.contact-card { padding: 30px; border: 1px solid rgba(89, 166, 227, .25); border-radius: 18px; background: rgba(9, 28, 47, .78); box-shadow: 0 26px 60px rgba(0, 0, 0, .25); }
.contact-card > div:not(.socials) { padding: 15px 0; border-bottom: 1px solid var(--line); }
.contact-card small { display: block; margin-bottom: 6px; color: var(--orange); font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.contact-card a, .contact-card p { margin: 0; color: #e3eef7; font-size: 14px; font-weight: 700; overflow-wrap: anywhere; }
.socials { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 21px; }
.socials a { padding: 9px 12px; border: 1px solid var(--line); border-radius: 7px; color: #bcd1e3; font-size: 11px; }
.socials a:hover { border-color: rgba(104, 185, 255, .5); color: #fff; }

footer { border-top: 1px solid var(--line); background: #030a13; }
.footer-inner { min-height: 125px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-inner p { color: #708599; font-size: 11px; }
.footer-inner > div { display: flex; gap: 17px; color: #96aabd; font-size: 11px; font-weight: 700; }
.floating-whatsapp { position: fixed; z-index: 45; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 9px; min-height: 48px; padding: 0 17px; border: 1px solid rgba(255, 255, 255, .16); border-radius: 999px; background: #20a95b; color: #fff; box-shadow: 0 18px 45px rgba(0, 0, 0, .35); font-size: 12px; }
.floating-whatsapp span { color: #fff; font-size: 15px; }
.system-message-container { position: fixed; z-index: 100; top: 90px; right: 20px; width: min(430px, calc(100% - 40px)); }
.joomla-content-wrap { min-height: 70vh; padding: 145px 0 90px; background: #f3f7fa; color: #102132; }
.joomla-content { width: min(1000px, calc(100% - 40px)); margin: 0 auto; }
.joomla-content h1, .joomla-content h2, .joomla-content h3 { color: #081827; }
.joomla-content a { color: #087bd5; }
.joomla-content img { height: auto; border-radius: 12px; }
.joomla-content .page-header h1, .joomla-content .page-header h2 { font-size: clamp(35px, 4vw, 52px); letter-spacing: -.03em; }
.joomla-content .item-page, .joomla-content .blog { padding: 34px; border: 1px solid #dce5eb; border-radius: 15px; background: #fff; box-shadow: 0 18px 45px rgba(21, 55, 82, .08); }

@media (max-width: 1040px) {
  .desktop-nav { gap: 16px; }
  .header-cta { display: none; }
  .hero-layout { grid-template-columns: 50% 50%; gap: 28px; }
  .hero h1 { font-size: clamp(46px, 5.9vw, 66px); }
  .about-layout, .support-layout, .contact-layout { gap: 48px; }
  .service-card { padding: 25px 23px; }
}
@media (max-width: 820px) {
  .desktop-nav { display: none; }
  .mobile-menu { display: block; }
  .hero { padding-top: 128px; }
  .hero-layout { grid-template-columns: 1fr; gap: 55px; }
  .hero-copy { text-align: center; }
  .eyebrow, .hero-actions, .hero-assurances { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-visual { width: min(650px, 100%); margin-inline: auto; }
  .hero-badge { left: 20px; }
  .impact-items { grid-template-columns: repeat(5, minmax(150px, 1fr)); overflow-x: auto; }
  .section { padding: 88px 0; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .principle-inner { grid-template-columns: auto 1fr; padding-block: 28px; }
  .principle .text-link { grid-column: 2; }
  .about-layout, .support-layout, .contact-layout { grid-template-columns: 1fr; }
  .about-visual { width: min(580px, 100%); margin-inline: auto; }
  .about-signature { right: 0; }
  .about-copy { text-align: center; }
  .about-points { text-align: left; }
  .split-heading { grid-template-columns: 1fr; gap: 20px; }
  .article-grid { grid-template-columns: 1fr 1fr; }
  .article-card:last-child { grid-column: 1 / -1; width: calc(50% - 10px); }
  .contact-copy { text-align: center; }
  .contact-copy > p:not(.section-kicker) { margin-inline: auto; }
  .contact-actions { justify-content: center; }
  .footer-inner { flex-direction: column; justify-content: center; padding-block: 30px; text-align: center; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1180px); }
  .header-inner { height: 72px; }
  .brand strong { font-size: 16px; }
  .brand small { font-size: 8px; }
  .brand-mark { width: 35px; height: 38px; }
  .hero { padding-top: 116px; min-height: auto; }
  .hero h1 { font-size: clamp(41px, 12.5vw, 57px); }
  .hero-lead { font-size: 16px; }
  .hero-actions .button { width: 100%; }
  .hero-assurances { gap: 12px; }
  .hero-image-frame, .hero-image-frame img { min-height: 370px; }
  .hero-badge { position: relative; left: auto; bottom: auto; margin: -38px auto 0; }
  .section { padding: 72px 0; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .about-copy h2, .support-copy h2, .contact-copy h2 { font-size: 37px; }
  .service-grid, .article-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-card p, .article-body p { min-height: auto; }
  .principle-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .principle .text-link { grid-column: auto; }
  .about-layout { gap: 46px; }
  .about-visual { padding-left: 0; }
  .about-signature { position: relative; margin: -22px 10px 0 28px; }
  .about-points { grid-template-columns: 1fr; }
  .about-copy .button { width: 100%; }
  .support-layout { gap: 40px; }
  .tool-card { grid-template-columns: 52px 1fr auto; gap: 13px; padding: 18px; }
  .tool-logo { width: 52px; height: 52px; }
  .tool-card strong { font-size: 19px; }
  .article-card:last-child { grid-column: auto; width: 100%; }
  .contact { padding: 80px 0; }
  .contact-actions .button { width: 100%; }
  .contact-card { padding: 22px; }
  .footer-inner .brand { transform: scale(.9); }
  .floating-whatsapp b { display: none; }
  .floating-whatsapp { width: 50px; padding: 0; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
