:root {
  --ink: #0b1728;
  --ink-2: #17233a;
  --muted: #5c6d86;
  --line: #d9e3ee;
  --soft: #f4f8fc;
  --white: #ffffff;
  --teal: #00bfa6;
  --teal-2: #0d8f83;
  --blue: #226bff;
  --navy: #09214a;
  --coral: #ff7a59;
  --gold: #f6b33f;
  --shadow: 0 24px 60px rgba(9, 33, 74, 0.14);
  --radius: 8px;
  --header-h: 78px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  transition: top 0.2s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(217, 227, 238, 0.85);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(9, 33, 74, 0.14);
}

.brand-title {
  display: block;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
}

.brand-subtitle {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  align-items: center;
  justify-content: center;
  margin-left: auto;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 19px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.menu-open .nav-toggle span {
  transform: rotate(45deg);
}

.menu-open .nav-toggle span::before {
  transform: translateY(6px) rotate(90deg);
}

.menu-open .nav-toggle span::after {
  opacity: 0;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
}

.primary-nav a {
  padding: 10px 11px;
  border-radius: var(--radius);
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a.active {
  background: #eaf3ff;
  color: var(--blue);
  transform: translateY(-1px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  font-size: 14px;
  line-height: 1.15;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--coral), #ff9a5c);
  box-shadow: 0 18px 30px rgba(255, 122, 89, 0.28);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-light {
  background: var(--white);
  color: var(--blue);
  border-color: #cfe0ff;
  box-shadow: 0 12px 26px rgba(34, 107, 255, 0.1);
}

.btn-whatsapp {
  color: #022b22;
  background: linear-gradient(135deg, #21d07a, #00bfa6);
  box-shadow: 0 14px 28px rgba(0, 191, 166, 0.22);
}

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

.section {
  padding: 92px 0;
}

.section-tight {
  padding: 64px 0;
}

.section-soft {
  background: #edf4fb;
}

.section-dark {
  background: #071a37;
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 99px;
  background: var(--coral);
}

.section-title {
  margin: 0;
  max-width: 780px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.03;
  letter-spacing: 0;
}

.section-title span {
  color: var(--blue);
}

.section-copy {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.section-dark .section-copy,
.section-dark .muted {
  color: #bfd0e8;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h) - 24px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #061a39;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(5, 18, 38, 0.96) 0%, rgba(7, 24, 53, 0.82) 45%, rgba(7, 24, 53, 0.3) 100%), var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  background: linear-gradient(0deg, rgba(244, 248, 252, 1), rgba(244, 248, 252, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0 96px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: end;
  gap: 42px;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(46px, 7vw, 84px);
  line-height: 0.96;
  letter-spacing: 0;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.hero h1 span {
  color: #ff946f;
}

.hero p {
  max-width: 680px;
  color: #d9e7fb;
  font-size: 19px;
  margin: 24px 0 0;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #dcecff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 8px 13px;
  margin-bottom: 22px;
  font-weight: 900;
  font-size: 13px;
}

.trust-badge::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 7px rgba(0, 191, 166, 0.16);
}

.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(18px);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
}

.hero-panel h2 {
  margin: 0 0 16px;
  font-size: 22px;
}

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

.check-list li {
  position: relative;
  padding-left: 31px;
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 191, 166, 0.18);
  color: #5ff3c8;
  font-size: 13px;
  font-weight: 900;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.stat {
  min-height: 94px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.stat strong {
  display: block;
  font-size: 27px;
  line-height: 1;
}

.stat span {
  display: block;
  color: #c6d8ef;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 800;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: center;
}

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

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-top: 44px;
}

.service-card,
.price-card,
.feature-card,
.policy-card,
.contact-card,
.process-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(9, 33, 74, 0.08);
}

.service-card {
  padding: 28px;
  min-height: 310px;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(0, 191, 166, 0.08);
}

.icon-box {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--blue);
  background: #eaf2ff;
  font-weight: 1000;
  font-size: 22px;
  margin-bottom: 18px;
}

.service-card h3,
.price-card h3,
.feature-card h3,
.contact-card h3,
.process-step h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.service-card p,
.price-card p,
.feature-card p,
.contact-card p,
.process-step p,
.policy-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  color: #d94b28;
  background: #fff1ec;
  border: 1px solid #ffc8b6;
  margin: 16px 0 4px;
}

.mini-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.mini-list li {
  position: relative;
  padding-left: 26px;
}

.mini-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal-2);
  font-weight: 1000;
}

.card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.visual-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(217, 227, 238, 0.9);
  background: var(--white);
}

.visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.visual-frame.portrait img {
  aspect-ratio: 4 / 5;
}

.strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.strip-item {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.strip-item:last-child {
  border-right: 0;
}

.strip-item strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.strip-item span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 44px;
}

.price-card {
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  color: var(--white);
  background: linear-gradient(145deg, #071a37, #123c74);
  border-color: rgba(255, 255, 255, 0.12);
}

.price-card.featured p,
.price-card.featured .mini-list,
.price-card.featured .price-note {
  color: #c9d9ef;
}

.price {
  margin-top: 18px;
  font-size: 42px;
  line-height: 1;
  font-weight: 1000;
}

.price small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.price-card.featured .price small {
  color: #c9d9ef;
}

.price-note {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr 0.8fr;
  gap: 22px;
  align-items: stretch;
  margin-top: 42px;
}

.gallery-grid .visual-frame img {
  aspect-ratio: 3 / 4;
}

.gallery-grid .visual-frame.wide img {
  aspect-ratio: 4 / 3;
}

.process-grid {
  counter-reset: process;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.process-step {
  padding: 24px;
}

.process-step::before {
  counter-increment: process;
  content: counter(process, decimal-leading-zero);
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: #fff1ec;
  color: var(--coral);
  font-weight: 1000;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  align-items: start;
}

.contact-card {
  padding: 28px;
}

.contact-lines {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.contact-line {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
}

.contact-line strong {
  display: block;
  color: var(--ink);
}

.contact-dot {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
  font-weight: 1000;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

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

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-weight: 900;
  font-size: 13px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: #fbfdff;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(34, 107, 255, 0.12);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.policy-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 32px;
  align-items: start;
}

.policy-card {
  padding: 28px;
  margin-bottom: 18px;
}

.policy-card h2 {
  margin: 0;
  font-size: 26px;
}

.policy-card ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 56px;
  border-radius: var(--radius);
  color: var(--white);
  background-image: linear-gradient(100deg, rgba(7, 26, 55, 0.95), rgba(7, 26, 55, 0.72)), url("../images/services-collage.jpg");
  background-size: cover;
  background-position: center;
}

.cta-band h2 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.04;
}

.cta-band p {
  max-width: 680px;
  color: #d5e2f4;
  margin: 18px 0 0;
  font-size: 18px;
}

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

.footer {
  color: #d6e5f7;
  background: #071a37;
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 36px;
}

.footer h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 18px;
}

.footer p {
  margin: 0;
  color: #aac0da;
}

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

.footer-links a {
  color: #cfe0f7;
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--teal);
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #99afc9;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #03251f;
  background: linear-gradient(135deg, #25d366, #00bfa6);
  box-shadow: 0 20px 34px rgba(0, 120, 96, 0.26);
  font-weight: 1000;
  border: 3px solid var(--white);
}

.welcome-screen {
  position: fixed;
  z-index: 999;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #061a39;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.welcome-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(5, 18, 38, 0.94), rgba(8, 35, 72, 0.68)), url("../images/hero-digital-growth.jpg");
  background-size: cover;
  background-position: center;
  animation: welcomeZoom 2.2s ease both;
}

.welcome-inner {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100% - 44px));
  text-align: center;
}

.welcome-mark {
  width: 88px;
  height: 88px;
  margin: 0 auto 22px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
  animation: floatMark 1.8s ease-in-out infinite;
}

.welcome-inner strong {
  display: block;
  font-size: clamp(32px, 7vw, 56px);
  line-height: 1;
}

.welcome-inner span {
  display: block;
  margin-top: 12px;
  color: #c9d9ef;
  font-weight: 800;
}

.welcome-bar {
  height: 4px;
  width: min(330px, 70vw);
  margin: 28px auto 0;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.welcome-bar::before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  transform-origin: left;
  background: linear-gradient(90deg, var(--teal), var(--coral), var(--gold));
  animation: loadBar 1.4s ease both;
}

.welcome-screen.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@keyframes welcomeZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

@keyframes floatMark {
  50% {
    transform: translateY(-8px);
  }
}

@keyframes loadBar {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #071a37;
  padding: 82px 0 88px;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(95deg, rgba(7, 26, 55, 0.94), rgba(7, 26, 55, 0.52)), var(--page-image);
  background-size: cover;
  background-position: center;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 7vw, 74px);
  line-height: 1;
}

.page-hero p {
  max-width: 720px;
  margin: 20px 0 0;
  color: #d7e5f5;
  font-size: 19px;
}

.audio-hint {
  display: none;
}

@media (max-width: 980px) {
  :root {
    --header-h: 72px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav,
  .nav-actions {
    position: fixed;
    left: 16px;
    right: 16px;
    display: none;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .primary-nav {
    top: 84px;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .nav-actions {
    top: 440px;
    padding: 12px;
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .menu-open .primary-nav,
  .menu-open .nav-actions {
    display: flex;
  }

  .primary-nav a {
    width: 100%;
  }

  .nav-actions .btn {
    width: 100%;
  }

  .hero-grid,
  .grid-2,
  .contact-layout,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 560px;
  }

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

  .grid-3,
  .grid-4,
  .strip,
  .footer-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .strip-item:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .nav-shell,
  .container,
  .hero-content {
    width: min(100% - 24px, 1180px);
  }

  .brand {
    min-width: 0;
  }

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

  .brand-subtitle {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 64px 0 82px;
  }

  .hero p,
  .section-copy,
  .page-hero p,
  .cta-band p {
    font-size: 16px;
  }

  .hero-actions,
  .card-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .card-actions .btn,
  .lead-form .btn {
    width: 100%;
  }

  .stat-row,
  .service-grid,
  .price-grid,
  .process-grid,
  .grid-3,
  .grid-4,
  .strip,
  .footer-grid,
  .gallery-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .strip-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .strip-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 68px 0;
  }

  .service-card,
  .price-card,
  .lead-form,
  .contact-card,
  .policy-card {
    padding: 22px;
  }

  .cta-band {
    padding: 34px 22px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
}

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