:root {
  --background: #0a0d14;
  --background-soft: #101624;
  --card: #151c2e;
  --card-strong: #182238;
  --accent: #00d2ff;
  --accent-secondary: #00ffcc;
  --text: #f4f7fb;
  --muted: #aab3c5;
  --border: rgba(0, 210, 255, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 15% 12%, rgba(0, 210, 255, 0.14), transparent 28rem),
    radial-gradient(circle at 85% 8%, rgba(0, 255, 204, 0.08), transparent 24rem),
    var(--background);
  color: var(--text);
  font-family: "Assistant", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.accessibility-large-text {
  font-size: 112.5%;
}

body.accessibility-high-contrast {
  --background: #000000;
  --background-soft: #050505;
  --card: #080808;
  --card-strong: #111111;
  --accent: #6fe7ff;
  --accent-secondary: #80ffdf;
  --text: #ffffff;
  --muted: #e6edf7;
  --border: rgba(255, 255, 255, 0.46);
}

body.accessibility-underline-links a:not(.button):not(.brand):not(.floating-whatsapp):not(.accessibility-toggle) {
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent-secondary);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--accent-secondary);
  color: #031018;
  font-weight: 900;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section {
  padding: 72px 0;
  scroll-margin-top: 88px;
}

.section-muted {
  background: linear-gradient(180deg, rgba(16, 22, 36, 0.72), rgba(10, 13, 20, 0.38));
  border-block: 1px solid rgba(255, 255, 255, 0.04);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 13, 20, 0.82);
  backdrop-filter: blur(18px);
}

.navbar {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(0, 210, 255, 0.24);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(0, 210, 255, 0.1), rgba(0, 255, 204, 0.045)),
    rgba(16, 22, 36, 0.94);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22), inset 0 0 16px rgba(0, 210, 255, 0.045);
}

.logo-symbol {
  width: 35px;
  height: 35px;
  overflow: visible;
}

.logo-screen {
  fill: rgba(10, 13, 20, 0.32);
  stroke: rgba(0, 210, 255, 0.9);
  stroke-width: 1.9;
}

.logo-chip {
  fill: rgba(0, 255, 204, 0.1);
  stroke: rgba(0, 255, 204, 0.92);
  stroke-width: 1.8;
}

.logo-base,
.logo-trace,
.logo-line {
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo-base {
  stroke: rgba(244, 247, 251, 0.86);
}

.logo-trace,
.logo-line {
  stroke: rgba(0, 255, 204, 0.78);
}

.brand-text {
  font-size: 1.1rem;
  direction: ltr;
}

.nav-panel {
  display: none;
}

.header-cta {
  display: none;
}

.menu-toggle {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-inline-start: auto;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

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

.nav-panel.is-open {
  position: fixed;
  inset: 76px 0 auto;
  display: grid;
  gap: 4px;
  padding: 18px 24px 28px;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 13, 20, 0.98);
  box-shadow: var(--shadow);
}

.nav-panel a {
  min-height: 46px;
  display: flex;
  align-items: center;
  border-radius: 14px;
  color: var(--muted);
  font-weight: 700;
}

.nav-link-button {
  min-height: 46px;
  display: flex;
  align-items: center;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 700;
  text-align: right;
}

.nav-panel a:hover,
.nav-link-button:hover {
  color: var(--text);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  padding-top: 52px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 86%, rgba(0, 86, 108, 0.5), transparent 58%),
    radial-gradient(circle at 22% 70%, rgba(0, 210, 255, 0.12), transparent 28rem),
    linear-gradient(180deg, rgba(10, 13, 20, 0.04) 0%, rgba(5, 28, 40, 0.54) 64%, rgba(4, 39, 51, 0.72) 100%);
}

.hero-grid,
.split-layout,
.area-layout,
.contact-grid {
  display: grid;
  gap: 36px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-secondary);
  font-weight: 800;
}

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

h1 {
  max-width: 800px;
  margin-bottom: 20px;
  font-size: clamp(2.15rem, 8vw, 4.7rem);
  line-height: 1.04;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1.12;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.25;
}

.hero-subtitle,
.section-heading p,
.contact-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.trust-list,
.area-tags,
.visual-badges,
.benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-list span,
.area-tags span,
.visual-badges span,
.benefit-list span {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 700;
}

.trust-list span {
  padding: 8px 13px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  color: #031018;
  box-shadow: 0 16px 40px rgba(0, 210, 255, 0.22);
}

.button-secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.hero-visual {
  min-height: 340px;
}

.device-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(21, 28, 46, 0.92), rgba(16, 22, 36, 0.82)),
    radial-gradient(circle at 30% 30%, rgba(0, 210, 255, 0.2), transparent 16rem);
  box-shadow: var(--shadow), inset 0 0 80px rgba(0, 210, 255, 0.04);
}

.pc-case {
  position: absolute;
  inset: 58px auto auto 50%;
  width: min(230px, 58vw);
  height: 260px;
  transform: translateX(-50%);
  border: 1px solid rgba(0, 210, 255, 0.35);
  border-radius: 24px;
  background: linear-gradient(180deg, #101624, #0d1220);
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.03), 0 0 48px rgba(0, 210, 255, 0.16);
}

.case-light {
  position: absolute;
  inset: 22px 24px auto auto;
  width: 10px;
  height: 170px;
  border-radius: 999px;
  background: linear-gradient(var(--accent), var(--accent-secondary));
  box-shadow: 0 0 24px var(--accent);
}

.case-grid {
  position: absolute;
  inset: 28px 54px 28px 24px;
  border-radius: 18px;
  background-image:
    linear-gradient(rgba(0, 210, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 210, 255, 0.16) 1px, transparent 1px);
  background-size: 18px 18px;
}

.chip-card {
  position: absolute;
  right: 22px;
  bottom: 86px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(10, 13, 20, 0.78);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.25);
  font-weight: 800;
}

.chip-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: rgba(0, 210, 255, 0.12);
  color: var(--accent-secondary);
  direction: ltr;
}

.visual-badges {
  position: absolute;
  inset: auto 20px 22px 20px;
}

.visual-badges span,
.area-tags span,
.benefit-list span {
  padding: 10px 14px;
}

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

.align-start {
  text-align: start;
}

.align-start p {
  margin-inline: 0;
}

.card-grid {
  display: grid;
  gap: 16px;
}

.service-card,
.compact-card,
.price-card,
.contact-form,
details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(21, 28, 46, 0.82);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.2);
}

.service-card,
.compact-card,
.price-card {
  padding: 22px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card:hover,
.compact-card:hover,
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 204, 0.34);
  background: rgba(24, 34, 56, 0.9);
}

.service-card p,
.compact-card p,
.price-card li,
details p,
.note,
.form-note,
.approval-note,
.site-footer p {
  color: var(--muted);
}

.icon-box {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(0, 210, 255, 0.1);
  color: var(--accent-secondary);
  font-weight: 800;
  direction: ltr;
}

.highlight-text {
  padding: 20px;
  border: 1px solid rgba(0, 255, 204, 0.26);
  border-radius: var(--radius);
  background: rgba(0, 255, 204, 0.06);
  color: var(--text);
  font-weight: 700;
}

.accessibility-modal .accessibility-statement {
  display: grid;
  gap: 14px;
}

.accessibility-statement p {
  margin: 0;
  color: var(--muted);
}

.accessibility-statement h3 {
  margin: 18px 0 0;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
}

.accessibility-statement h3:first-of-type {
  margin-top: 4px;
}

.accessibility-statement ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.accessibility-statement ul:not(.accessibility-coordinator) li {
  position: relative;
  padding-inline-start: 18px;
  color: var(--muted);
}

.accessibility-statement ul:not(.accessibility-coordinator) li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-secondary);
}

.accessibility-coordinator {
  padding: 14px 16px;
  border: 1px solid rgba(0, 255, 204, 0.22);
  border-radius: 14px;
  background: rgba(0, 255, 204, 0.05);
}

.accessibility-coordinator li {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--text);
}

.accessibility-coordinator strong {
  min-width: 70px;
  color: var(--muted);
  font-weight: 700;
}

.accessibility-coordinator a {
  color: var(--accent-secondary);
  font-weight: 700;
  text-decoration: underline;
}

.accessibility-statement a {
  color: var(--accent-secondary);
}

.accessibility-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.accessibility-contact a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 800;
}

.price-card {
  position: relative;
}

.price-card.featured {
  border-color: rgba(0, 255, 204, 0.46);
  box-shadow: 0 24px 70px rgba(0, 210, 255, 0.16);
}

.popular-badge {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 255, 204, 0.12);
  color: var(--accent-secondary);
  font-weight: 800;
}

.price {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 1.7rem;
  font-weight: 800;
}

.price-card ul {
  margin: 0;
  padding: 0 20px 0 0;
}

.service-table {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.service-table div {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.service-table strong {
  color: var(--accent-secondary);
}

.area-tags {
  align-content: start;
}

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

.process-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(21, 28, 46, 0.72);
  font-weight: 700;
}

.process-list span {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 12px;
  background: rgba(0, 210, 255, 0.12);
  color: var(--accent-secondary);
  direction: ltr;
}

.approval-note {
  margin: 18px 0 0;
  font-weight: 800;
  text-align: center;
}

.narrow-container {
  max-width: 860px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  padding: 0 18px;
}

summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-weight: 800;
}

summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.4rem;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin-bottom: 18px;
}

.contact-section {
  padding-bottom: 90px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.contact-form .form-field {
  display: grid;
  gap: 7px;
}

.contact-form label {
  color: var(--text);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(10, 13, 20, 0.78);
  color: var(--text);
  padding: 13px 14px;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 210, 255, 0.12);
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
}

.site-footer {
  padding: 34px 0 92px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #080b11;
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer-brand {
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.footer-links a {
  color: var(--muted);
  font-weight: 800;
}

.footer-link-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.footer-link-button:hover {
  color: var(--text);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(0, 255, 204, 0.42);
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #00d2ff);
  color: #ffffff;
  box-shadow: 0 16px 44px rgba(0, 230, 118, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.accessibility-widget {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 70;
}

.accessibility-toggle {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(0, 210, 255, 0.42);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.98), rgba(0, 255, 204, 0.9));
  color: #031018;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 44px rgba(0, 210, 255, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.accessibility-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(0, 210, 255, 0.32);
}

.accessibility-toggle .a11y-icon {
  width: 60%;
  height: 60%;
  color: #031018;
}

.accessibility-panel {
  position: absolute;
  left: 0;
  bottom: 70px;
  display: grid;
  width: min(250px, calc(100vw - 36px));
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(10, 13, 20, 0.96);
  box-shadow: var(--shadow);
}

.accessibility-panel[hidden] {
  display: none;
}

.accessibility-panel p {
  margin: 0 0 4px;
  color: var(--accent-secondary);
  font-weight: 900;
}

.accessibility-panel button {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
  font-weight: 800;
  text-align: right;
}

.accessibility-panel button:hover {
  border-color: var(--accent);
  background: rgba(0, 210, 255, 0.1);
}

.accessibility-panel button[aria-pressed="true"] {
  border-color: rgba(0, 255, 204, 0.55);
  background: rgba(0, 255, 204, 0.12);
  color: var(--accent-secondary);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.modal-overlay[hidden] {
  display: none;
}

.accessibility-modal {
  position: relative;
  width: min(760px, 100%);
  max-height: min(82dvh, 760px);
  overflow-y: auto;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(16, 22, 36, 0.98);
  box-shadow: var(--shadow);
}

.accessibility-modal h2 {
  margin-bottom: 18px;
}

.modal-close {
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 52px rgba(37, 211, 102, 0.32);
}

.floating-whatsapp svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

@media (max-width: 639px) {
  body {
    overflow-x: hidden;
  }

  body.accessibility-large-text {
    font-size: 106.25%;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 58px 0;
    scroll-margin-top: 76px;
  }

  .navbar {
    min-height: 68px;
    gap: 12px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .logo-symbol {
    width: 32px;
    height: 32px;
  }

  .brand-text {
    font-size: 1rem;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .nav-panel.is-open {
    inset: 68px 0 auto;
    max-height: calc(100dvh - 68px);
    overflow-y: auto;
    padding: 14px 22px 22px;
  }

  .nav-panel a {
    min-height: 50px;
    padding-inline: 6px;
  }

  .nav-link-button {
    min-height: 50px;
    padding-inline: 6px;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
    padding-bottom: 64px;
  }

  .hero-grid,
  .split-layout,
  .area-layout,
  .contact-grid {
    gap: 28px;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
    text-wrap: balance;
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.45rem);
  }

  .hero-subtitle,
  .section-heading p,
  .contact-copy p {
    font-size: 1rem;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    min-height: 54px;
    padding-inline: 16px;
  }

  .hero-visual {
    min-height: 300px;
  }

  .device-card {
    min-height: 310px;
    border-radius: 24px;
  }

  .pc-case {
    top: 42px;
    width: min(205px, 66vw);
    height: 226px;
  }

  .chip-card {
    right: 14px;
    bottom: 74px;
    padding: 10px 12px;
    font-size: 0.92rem;
  }

  .chip-icon {
    width: 36px;
    height: 36px;
  }

  .visual-badges {
    inset: auto 14px 16px 14px;
  }

  .visual-badges span,
  .area-tags span,
  .benefit-list span,
  .trust-list span {
    padding: 8px 11px;
    font-size: 0.94rem;
  }

  .service-card,
  .compact-card,
  .price-card,
  .contact-form {
    padding: 18px;
    border-radius: 18px;
  }

  .service-table div {
    padding: 14px;
  }

  .process-list li {
    align-items: flex-start;
    padding: 14px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 50px;
    font-size: 1rem;
  }

  .accessibility-contact {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-bottom: calc(104px + env(safe-area-inset-bottom));
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .footer-links a {
    min-height: 42px;
    display: flex;
    align-items: center;
  }

  .floating-whatsapp,
  .accessibility-toggle {
    width: 54px;
    height: 54px;
  }

  .floating-whatsapp {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
  }

  .accessibility-widget {
    left: max(14px, env(safe-area-inset-left));
    bottom: max(14px, env(safe-area-inset-bottom));
  }

  .floating-whatsapp svg {
    width: 31px;
    height: 31px;
  }

  .accessibility-panel {
    left: 0;
    bottom: 64px;
    width: min(280px, calc(100vw - 28px));
    max-height: calc(100dvh - 110px);
    overflow-y: auto;
    padding: 12px;
  }

  .accessibility-panel button {
    min-height: 48px;
    padding: 10px 12px;
  }

  .modal-overlay {
    align-items: end;
    padding: 14px;
  }

  .accessibility-modal {
    width: 100%;
    max-height: calc(100dvh - 28px);
    padding: 22px 18px;
    border-radius: 20px;
  }

  .modal-close {
    top: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 380px) {
  .brand-text {
    font-size: 0.95rem;
  }

  .floating-whatsapp,
  .accessibility-toggle {
    width: 50px;
    height: 50px;
  }

  .accessibility-panel {
    bottom: 60px;
  }

  .accessibility-modal {
    padding-inline: 16px;
  }
}

@media (min-width: 640px) {
  .container {
    width: min(100% - 48px, var(--container));
  }

  .two-columns,
  .service-table {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 820px) {
  .section {
    padding: 96px 0;
  }

  .hero-grid,
  .split-layout,
  .area-layout,
  .contact-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }

  .three-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 1080px) {
  .menu-toggle {
    display: none;
  }

  .nav-panel {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-inline-start: auto;
  }

  .nav-panel a {
    min-height: auto;
    color: var(--muted);
    font-size: 0.96rem;
  }

  .nav-link-button {
    min-height: auto;
    color: var(--muted);
    font-size: 0.96rem;
  }

  .header-cta {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    color: #031018;
    font-weight: 800;
  }

  .four-columns {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}