:root {
  --bg: #f5f8ff;
  --surface: #ffffff;
  --ink: #102033;
  --muted: #5f7288;
  --line: #dce7f5;
  --blue: #0b63f6;
  --blue-2: #00b8d9;
  --blue-3: #e8f3ff;
  --navy: #071b3a;
  --green: #087a3e;
  --green-dark: #056232;
  --orange: #ff8a00;
  --red: #ef233c;
  --shadow: 0 18px 44px rgba(7, 27, 58, 0.08);
  --shadow-soft: 0 10px 28px rgba(7, 27, 58, 0.06);
  --radius: 24px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(11, 99, 246, 0.1), transparent 32rem),
    radial-gradient(circle at top right, rgba(0, 184, 217, 0.12), transparent 30rem),
    linear-gradient(180deg, #f8fbff 0%, #f4f8ff 38%, #ffffff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.62;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
.button {
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 300;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(220, 231, 245, 0.72);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 10px 22px rgba(11, 99, 246, 0.2);
  font-weight: 900;
}

.brand-mark svg,
.service-icon svg,
.mini-icon svg,
.authority-badges svg,
.mobile-wa .icon svg,
.bottom-nav svg,
.proof-toast-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark svg {
  width: 24px;
  height: 24px;
}

.brand-title {
  display: block;
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.brand-subtitle {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 15px;
  color: var(--navy);
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 10px 22px rgba(11, 99, 246, 0.14);
  font-weight: 900;
  line-height: 1.1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(11, 99, 246, 0.22);
}

.button.whatsapp {
  background: var(--green);
  box-shadow: 0 12px 24px rgba(8, 163, 93, 0.18);
}

.button.whatsapp:hover {
  background: var(--green-dark);
}

.button.secondary {
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 6vw, 72px) 0 44px;
  border-bottom: 1px solid rgba(220, 231, 245, 0.74);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(232, 243, 255, 0.52)),
    radial-gradient(circle at 12% 18%, rgba(11, 99, 246, 0.1), transparent 24rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: 1px solid rgba(11, 99, 246, 0.14);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(8, 163, 93, 0.12);
}

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.lead {
  max-width: 680px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 22px;
}

.micro-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.micro-trust li {
  position: relative;
  max-width: 360px;
  padding: 9px 12px 9px 34px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: #40566d;
  background: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
  box-shadow: 0 8px 20px rgba(7, 27, 58, 0.04);
}

.micro-trust li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 12px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.82);
  transform: translateY(-50%);
}

.hero-form-card {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(11, 99, 246, 0.12);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px rgba(7, 27, 58, 0.1);
}

.hero-form-card::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 5px;
  border-radius: 32px 32px 0 0;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
}

.hero-form-card h2 {
  margin-bottom: 8px;
  font-size: clamp(28px, 3vw, 36px);
  letter-spacing: -0.045em;
}

.hero-form-card p {
  margin-bottom: 18px;
  color: var(--muted);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.proof-pill {
  display: grid;
  gap: 3px;
  padding: 16px 18px;
  border: 1px solid rgba(11, 99, 246, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
}

.proof-pill strong {
  color: var(--blue);
  font-size: 24px;
  line-height: 1;
}

.proof-pill span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.proof-pill em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.authority-badges {
  margin-top: 14px;
}

.authority-badges ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  list-style: none;
}

.authority-badges li {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(11, 99, 246, 0.12);
  border-radius: 18px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 22px rgba(6, 27, 62, 0.05);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.authority-badges span {
  width: 28px;
  height: 28px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  color: var(--blue);
  background: var(--blue-3);
}

.authority-badges svg {
  width: 16px;
  height: 16px;
}

.phone-card {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(11, 99, 246, 0.16);
  border-radius: 38px;
  background: linear-gradient(180deg, #ffffff, #e9f4ff);
  box-shadow: var(--shadow-soft);
}

.app-preview {
  padding-top: 22px;
}

.app-preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: center;
}

.app-preview .phone-card {
  max-width: 390px;
  margin-left: auto;
}

.phone-screen {
  overflow: hidden;
  min-height: 560px;
  border: 9px solid var(--navy);
  border-radius: 32px;
  background: #f9fbff;
}

.app-top {
  padding: 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
}

.app-status {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 900;
}

.app-top h2 {
  margin-bottom: 8px;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.app-top p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.app-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.step-card,
.stat-card,
.service-mini {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(7, 27, 58, 0.05);
}

.step-card {
  padding: 16px;
}

.step-card strong,
.service-mini strong {
  display: block;
  color: var(--navy);
  line-height: 1.25;
}

.step-card span,
.service-mini span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.service-mini .mini-icon {
  color: var(--navy);
}

.progress-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.progress-row i {
  flex: 1;
  height: 7px;
  border-radius: 999px;
  background: var(--blue-3);
}

.progress-row i:first-child,
.progress-row i:nth-child(2) {
  background: var(--blue);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.stat-card {
  padding: 12px;
  text-align: center;
}

.stat-card b {
  display: block;
  color: var(--blue);
  font-size: 19px;
  line-height: 1;
}

.stat-card span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.service-mini {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 13px;
}

.mini-icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(11, 99, 246, 0.12);
  border-radius: 13px;
  color: var(--blue);
  background: linear-gradient(180deg, #ffffff, var(--blue-3));
}

.mini-icon svg {
  width: 18px;
  height: 18px;
}

.section {
  padding: clamp(46px, 6vw, 72px) 0;
}

.section.tight {
  padding-top: 24px;
}

.section-head {
  max-width: 730px;
  margin-bottom: 28px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.service-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 14px;
  padding: 26px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(11, 99, 246, 0.2);
  box-shadow: 0 22px 45px rgba(6, 27, 62, 0.12);
}

.service-card-head {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  align-items: center;
  padding-top: 8px;
}

.service-icon {
  width: 50px;
  height: 50px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(11, 99, 246, 0.12);
  border-radius: 18px;
  color: var(--blue);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(232, 243, 255, 0.96));
  box-shadow: 0 10px 22px rgba(11, 99, 246, 0.1);
}

.service-card .service-icon svg {
  width: 24px;
  height: 24px;
}

.card h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.service-card h3 {
  margin-bottom: 0;
  font-size: 21px;
}

.service-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border: 1px solid rgba(11, 99, 246, 0.12);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(232, 243, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-card p {
  flex: 1;
}

.card-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 900;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.trust-item {
  padding: 20px;
  border: 1px solid rgba(11, 99, 246, 0.12);
  border-radius: 22px;
  background: #fff;
}

.trust-item b {
  display: block;
  color: var(--navy);
  font-size: 21px;
  line-height: 1;
}

.trust-item span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.proof-section {
  padding-top: 20px;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.review-badge,
.maps-card,
.testimonial-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.review-badge,
.maps-card {
  padding: 26px;
}

.badge-label {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-badge strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.review-badge p,
.maps-card p,
.testimonial-card p {
  color: var(--muted);
}

.review-badge .button {
  margin-top: 10px;
}

.maps-card {
  min-height: 250px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
    linear-gradient(135deg, var(--blue-3), #ffffff);
}

.maps-card h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.maps-card::after {
  content: "";
  display: block;
  height: 84px;
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(11, 99, 246, 0.22) 48%, rgba(11, 99, 246, 0.22) 52%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(0, 184, 217, 0.18) 48%, rgba(0, 184, 217, 0.18) 52%, transparent 52%),
    radial-gradient(circle at 60% 45%, var(--red) 0 7px, transparent 8px),
    #f4f9ff;
}

.office-mini {
  display: grid;
  gap: 4px;
  margin: 14px 0 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.75);
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
}

.office-mini strong {
  color: var(--navy);
}

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

.testimonial-card {
  padding: 22px;
}

.stars {
  margin-bottom: 10px;
  color: #d97706;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  color: var(--navy);
}

.testimonial-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  counter-reset: step;
}

.workflow .card {
  padding-top: 52px;
}

.workflow .card::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 20px;
  left: 22px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.keyword-cloud span {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--blue-3);
  font-size: 13px;
  font-weight: 900;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 5vw, 44px);
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(0, 184, 217, 0.5), transparent 24rem),
    linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: var(--shadow);
}

.cta-panel h2,
.cta-panel p {
  color: #fff;
}

.cta-panel-simple {
  grid-template-columns: minmax(0, 1fr) 320px;
}

.cta-note {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
}

.cta-note strong {
  color: #fff;
  font-size: 22px;
  line-height: 1.1;
}

.cta-note span {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.quote-form {
  padding: 20px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.quote-form-light {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.quote-form-light .field label {
  color: var(--navy);
}

.quote-form-light .field input,
.quote-form-light .field select,
.quote-form-light .field textarea {
  border: 1px solid var(--line);
  background: #fbfdff;
}

.quote-form-light .button {
  width: 100%;
}

.review-benefits {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(11, 99, 246, 0.14);
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue-3), #ffffff);
}

.review-benefits span,
.review-benefits strong {
  display: block;
}

.review-benefits span {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.review-benefits span::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
}

.review-benefits strong {
  color: var(--navy);
  line-height: 1.2;
}

.field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.field label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 16px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
}

.field textarea {
  min-height: 96px;
  resize: vertical;
}

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

.faq details {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(7, 27, 58, 0.045);
}

.faq summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 900;
}

.faq details p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}

.site-footer {
  padding: 52px 0 70px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, 1fr);
  gap: 24px;
}

.site-footer h3,
.site-footer strong {
  color: #fff;
}

.site-footer address {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  font-size: 13px;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a:hover {
  color: #fff;
}

.mobile-wa {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 120;
  display: none;
  align-items: center;
  gap: 10px;
  max-width: 310px;
  padding: 10px 12px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  box-shadow: 0 12px 30px rgba(8, 163, 93, 0.26);
}

.mobile-wa .icon {
  position: relative;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.mobile-wa .icon svg {
  width: 23px;
  height: 23px;
}

.mobile-wa .icon::after {
  content: "1";
  position: absolute;
  top: -3px;
  right: -2px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-size: 11px;
  font-weight: 900;
}

.mobile-wa strong,
.mobile-wa span {
  display: block;
  line-height: 1.18;
}

.mobile-wa strong {
  color: #ffffff;
  font-size: 13px;
}

.mobile-wa span {
  margin-top: 2px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
}

.bottom-nav {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 125;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(220, 231, 245, 0.92);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 38px rgba(7, 27, 58, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.bottom-nav.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.bottom-nav a {
  display: grid;
  place-items: center;
  gap: 3px;
  min-height: 54px;
  border-radius: 18px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
}

.bottom-nav a:last-child {
  position: relative;
  color: #fff;
  background: var(--green);
}

.bottom-nav a:last-child::after {
  content: "1";
  position: absolute;
  top: 5px;
  right: 16px;
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-size: 10px;
  line-height: 1;
}

.bottom-nav span {
  display: grid;
  place-items: center;
}

.bottom-nav svg {
  width: 20px;
  height: 20px;
}

.proof-toast {
  position: fixed;
  left: 18px;
  bottom: 102px;
  z-index: 124;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 310px;
  padding: 12px 14px;
  border: 1px solid rgba(220, 231, 245, 0.95);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 40px rgba(7, 27, 58, 0.15);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.proof-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.proof-toast-icon {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--green);
  background: rgba(8, 122, 62, 0.1);
}

.proof-toast strong,
.proof-toast small {
  display: block;
}

.proof-toast strong {
  color: var(--navy);
  line-height: 1.1;
}

.proof-toast small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.mobile-menu {
  position: fixed;
  inset: 72px 12px auto;
  z-index: 99;
  display: none;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.mobile-menu a {
  display: block;
  padding: 13px 14px;
  border-radius: 16px;
  color: var(--navy);
  background: var(--blue-3);
  font-weight: 900;
}

body.menu-open .mobile-menu {
  display: grid;
}

@media (max-width: 980px) {
  .desktop-nav,
  .nav-actions .button.secondary {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .app-preview-grid,
  .cta-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 26px;
  }

  .app-preview .section-head {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .app-preview .phone-card {
    margin-right: auto;
    margin-left: auto;
  }

  .phone-card {
    max-width: 380px;
    margin: 10px auto 0;
  }

  .grid.three,
  .grid.two,
  .trust-strip,
  .hero-proof,
  .proof-grid,
  .testimonial-grid,
  .workflow {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .site-header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: none;
  }

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

  body {
    padding-bottom: 96px;
  }

  .header-inner {
    min-height: 66px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 14px;
  }

  .brand-title {
    font-size: 20px;
  }

  .brand-subtitle {
    font-size: 10px;
  }

  .nav-actions .button.whatsapp {
    display: none;
  }

  .hero {
    padding: 22px 0 28px;
  }

  .hero-grid > div:first-child {
    max-width: none;
  }

  .eyebrow {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    border-radius: 18px;
    padding-left: 34px;
    padding-right: 10px;
    font-size: 11px;
    letter-spacing: 0.055em;
    line-height: 1.35;
    white-space: normal;
  }

  .eyebrow .pulse {
    position: absolute;
    top: 13px;
    left: 14px;
  }

  .hero-form-card {
    padding: 20px 16px;
    border-radius: 24px;
    box-shadow: 0 12px 32px rgba(7, 27, 58, 0.07);
  }

  .hero-form-card h2 {
    font-size: 26px;
    line-height: 1.08;
  }

  .hero-form-card p {
    font-size: 14px;
  }

  h1 {
    max-width: 360px;
    font-size: 31px;
    line-height: 1.1;
    letter-spacing: -0.04em;
  }

  .lead {
    max-width: 360px;
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.55;
  }

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

  .micro-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .micro-trust li {
    width: auto;
    max-width: none;
    min-height: 46px;
    padding: 8px 9px 8px 28px;
    border-radius: 14px;
    font-size: 11px;
    line-height: 1.2;
  }

  .micro-trust li::before {
    left: 10px;
    width: 9px;
    height: 9px;
  }

  .hero-proof {
    display: none;
  }

  .authority-badges {
    margin-top: 14px;
    overflow: visible;
  }

  .authority-badges ul {
    width: 100%;
    min-width: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding-bottom: 0;
  }

  .authority-badges li {
    min-height: 54px;
    padding: 9px 10px;
    border-radius: 16px;
    font-size: 11px;
    line-height: 1.22;
  }

  .authority-badges span {
    width: 26px;
    height: 26px;
  }

  .phone-screen {
    min-height: 430px;
    border-width: 7px;
  }

  .app-panel {
    padding: 14px;
  }

  .step-card,
  .stat-card,
  .service-mini,
  .card,
  .faq details,
  .review-badge,
  .maps-card,
  .testimonial-card,
  .phone-card,
  .mobile-wa {
    box-shadow: none;
  }

  .stat-grid,
  .grid.three,
  .grid.two,
  .trust-strip,
  .hero-proof,
  .proof-grid,
  .testimonial-grid,
  .workflow {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 20px;
    gap: 12px;
  }

  .service-card-head {
    grid-template-columns: 46px 1fr;
    gap: 12px;
  }

  .service-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }

  .service-card h3 {
    font-size: 20px;
    line-height: 1.16;
  }

  .section {
    padding: 38px 0;
  }

  .section.tight {
    padding-top: 12px;
  }

  h2 {
    font-size: 27px;
    letter-spacing: -0.04em;
  }

  .card,
  .keyword-cloud,
  .review-badge,
  .maps-card,
  .testimonial-card {
    border-radius: 22px;
    padding: 20px;
  }

  .review-benefits {
    padding: 10px;
  }

  .bottom-nav {
    display: grid;
    right: 10px;
    bottom: 10px;
    left: 10px;
    gap: 5px;
    padding: 7px;
    border-radius: 22px;
  }

  .mobile-wa {
    display: none;
  }

  .proof-toast {
    display: none;
  }

  .site-footer {
    padding-bottom: 118px;
  }
}
