@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@600;700&display=swap');

:root {
  --primary: #0ea5e9;
  --primary-dark: #0284c7;
  --accent: #22c55e;
  --accent-dark: #16a34a;
  --ink: #0f172a;
  --muted: #64748b;
  --bg: #f8fafc;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
  font-family: Poppins, Inter, sans-serif;
}

.top-strip {
  background: #e0f2fe;
  color: #075985;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: 48px;
  max-width: min(56vw, 244px);
}

.navbar .nav-link {
  position: relative;
  font-weight: 600;
  color: #1e293b;
  transition: color 0.22s ease, transform 0.22s ease;
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0.65rem;
  right: 0.65rem;
  bottom: 0.3rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0ea5e9, #22c55e);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

.navbar .nav-link.active::after,
.navbar .nav-link:hover::after {
  transform: scaleX(1);
}

.top-strip a {
  transition: color 0.22s ease, text-shadow 0.22s ease;
}

.top-strip a:hover {
  color: #0369a1;
  text-shadow: 0 6px 18px rgba(3, 105, 161, 0.2);
}

.hero-section {
  background:
    radial-gradient(circle at 90% 10%, rgba(34, 197, 94, 0.15), transparent 30%),
    radial-gradient(circle at 10% 20%, rgba(14, 165, 233, 0.2), transparent 35%),
    linear-gradient(130deg, #f0f9ff 0, #e0f2fe 50%, #f8fafc 100%);
}

.hero-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 24px 56px rgba(2, 132, 199, 0.18);
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 64px rgba(2, 132, 199, 0.22);
}

.hero-visual {
  position: relative;
  min-height: 360px;
  border-radius: 18px;
  background: linear-gradient(145deg, #0891d1, #22c55e);
  overflow: hidden;
  padding: 1rem;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  filter: blur(1px);
}

.hero-glow-1 {
  width: 130px;
  height: 130px;
  left: 16px;
  top: 18px;
}

.hero-glow-2 {
  width: 170px;
  height: 170px;
  right: 10px;
  bottom: 16px;
}

.hero-panel {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 94px;
  background: rgba(255, 255, 255, 0.93);
  border-radius: 16px;
  border: 1px solid rgba(186, 230, 253, 0.8);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.15);
  padding: 1rem;
}

.hero-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}

.hero-panel-head h3 {
  font-size: 1.08rem;
  margin: 0;
  color: #075985;
}

.online-dot {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #166534;
  background: #dcfce7;
  border: 1px solid #86efac;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
}

.online-dot::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16a34a;
}

.hero-panel p {
  margin: 0 0 0.8rem;
  color: #334155;
  font-size: 0.92rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.hero-stat-box {
  background: #f0f9ff;
  border: 1px solid #dbeafe;
  border-radius: 10px;
  padding: 0.45rem 0.35rem;
  text-align: center;
}

.hero-stat-box strong {
  display: block;
  color: #0369a1;
  font-size: 0.92rem;
  line-height: 1.1;
}

.hero-stat-box span {
  font-size: 0.68rem;
  color: #475569;
  font-weight: 600;
}

.hero-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.95);
  color: #0f172a;
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  border: 1px solid rgba(186, 230, 253, 0.8);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
}

.hero-chip i {
  color: #0284c7;
}

.hero-chip-top {
  top: 12px;
  left: 12px;
}

.hero-chip-bottom {
  right: 12px;
  bottom: 12px;
}

.hero-cta-group {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.hero-cta-group .btn {
  min-height: 56px;
  padding: 0.82rem 1.35rem;
  border-radius: 16px;
}

.trust-points span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 48px;
  padding: 0.55rem 0.78rem;
  border: 1px solid #bae6fd;
  background: #fff;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
  box-shadow:
    0 8px 16px rgba(2, 132, 199, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.trust-points {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  border: 1px solid #cfe8ff;
  border-radius: 16px;
  padding: 0.78rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow:
    0 18px 34px rgba(2, 132, 199, 0.14),
    0 6px 14px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.trust-points::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -11px;
  height: 20px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.17);
  filter: blur(11px);
  z-index: -1;
}

.trust-points span:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 20px rgba(2, 132, 199, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

@media (max-width: 991.98px) {
  .trust-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.service-card-head {
  display: flex;
  align-items: center;
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(145deg, #f0f9ff, #e0f2fe);
  border: 1px solid #bae6fd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(14, 165, 233, 0.16);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-icon-wrap-sm {
  width: 50px;
  height: 50px;
}

.service-icon-wrap-lg {
  width: 68px;
  height: 68px;
  border-radius: 18px;
}

.service-icon-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.service-icon-wrap-sm .service-icon-img {
  width: 30px;
  height: 30px;
}

.service-icon-wrap-lg .service-icon-img {
  width: 40px;
  height: 40px;
}

.service-side-img {
  width: 84px;
  height: 84px;
  object-fit: contain;
}

.service-card,
.service-detail-card,
.form-wrap,
.value-card,
.process-card,
.review-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card:hover,
.service-detail-card:hover,
.process-card:hover,
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(2, 132, 199, 0.12);
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(2, 132, 199, 0.11);
  border-color: #bfdbfe;
}

.service-card:hover .service-icon-wrap,
.service-detail-card:hover .service-icon-wrap,
.service-detail-card:hover .service-icon-wrap-sm {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 26px rgba(14, 165, 233, 0.25);
}

.service-card-actions {
  margin-top: 0.35rem;
}

.service-card-actions .btn-service {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.2rem;
  font-size: 1rem;
  line-height: 1.1;
  border-width: 1.5px;
}

.service-card .btn-service {
  margin-top: auto;
}

.badge-box {
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  font-size: 0.92rem;
  color: #334155;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.badge-box:hover {
  transform: translateY(-3px);
  border-color: #7dd3fc;
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
  box-shadow: 0 14px 28px rgba(2, 132, 199, 0.12);
}

.trust-module {
  border: 1px solid #dbeafe;
  border-radius: 20px;
  background:
    radial-gradient(circle at 12% 8%, rgba(14, 165, 233, 0.1), transparent 38%),
    radial-gradient(circle at 92% 22%, rgba(34, 197, 94, 0.08), transparent 38%),
    linear-gradient(130deg, #f8fbff 0%, #f0f9ff 48%, #f8fafc 100%);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.06);
}

.badge-box-metric {
  border-style: solid;
  border-color: #cfe5ff;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  justify-content: center;
  min-height: 110px;
}

.badge-box-metric strong {
  font-size: 1.05rem;
  color: #0f172a;
  line-height: 1.1;
}

.badge-box-metric span {
  color: #334155;
  font-size: 0.88rem;
}

.metric-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #e0f2fe, #dcfce7);
  border: 1px solid #bae6fd;
  color: #0284c7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.icon-list {
  list-style: none;
  padding-left: 0;
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}

.icon-list i {
  color: var(--primary);
  margin-top: 0.12rem;
}

.process-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #e0f2fe;
  border: 1px solid #bae6fd;
  color: #0284c7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.process-card:hover .process-icon {
  transform: translateY(-2px) rotate(-2deg);
  background: #dff4ff;
  box-shadow: 0 10px 20px rgba(14, 165, 233, 0.2);
}

.review-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.cta-banner {
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 48px rgba(3, 105, 161, 0.26);
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.cta-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 58px rgba(3, 105, 161, 0.3);
}

.form-wrap {
  position: relative;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.form-wrap:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(2, 132, 199, 0.12);
  border-color: #bfdbfe;
}

.lead-form .form-control:focus,
.lead-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.22rem rgba(14, 165, 233, 0.2);
}

.form-feedback {
  min-height: 0;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.form-feedback:not(:empty) {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-top: 0.75rem !important;
  padding: 0.72rem 0.85rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  opacity: 1;
  transform: translateY(0);
}

.form-feedback.success {
  color: #166534;
  border-color: #86efac;
  background: linear-gradient(180deg, #f0fdf4 0%, #dcfce7 100%);
  box-shadow: 0 10px 22px rgba(34, 197, 94, 0.18);
}

.form-feedback.error {
  color: #991b1b;
  border-color: #fca5a5;
  background: linear-gradient(180deg, #fef2f2 0%, #fee2e2 100%);
  box-shadow: 0 10px 22px rgba(220, 38, 38, 0.14);
}

.form-feedback.success::before,
.form-feedback.error::before {
  flex: 0 0 auto;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.05rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.form-feedback.success::before {
  content: "✓";
  color: #166534;
  background: #bbf7d0;
}

.form-feedback.error::before {
  content: "!";
  color: #991b1b;
  background: #fecaca;
}

.sub-hero {
  position: relative;
  padding: 2.4rem 0 1.8rem;
  border-bottom: 1px solid #dbeafe;
}

.sub-hero-services {
  background: linear-gradient(125deg, #eff6ff 0%, #ecfeff 60%, #f0fdf4 100%);
}

.sub-hero-service {
  background: linear-gradient(125deg, #f0f9ff 0%, #e0f2fe 55%, #ecfeff 100%);
}

.sub-hero-about {
  background: linear-gradient(125deg, #f8fafc 0%, #e0f2fe 45%, #f0fdf4 100%);
}

.sub-hero-contact {
  background: linear-gradient(125deg, #eff6ff 0%, #e0f2fe 50%, #dcfce7 100%);
}

.sub-hero-legal {
  background: linear-gradient(125deg, #f8fafc 0%, #eff6ff 60%, #ecfeff 100%);
}

.sub-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0.78rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #bfdbfe;
  color: #0c4a6e;
  font-weight: 700;
  font-size: 0.78rem;
  margin-bottom: 0.9rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.sub-hero-badge:hover {
  transform: translateY(-2px);
  border-color: #93c5fd;
  box-shadow: 0 12px 22px rgba(2, 132, 199, 0.14);
}

.sub-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

.sub-hero-grid h1 {
  margin-bottom: 0.55rem;
}

.sub-hero-grid p {
  margin-bottom: 0;
  color: #334155;
}

.sub-hero-icon {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  border: 1px solid #bfdbfe;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(2, 132, 199, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0284c7;
  font-size: 1.6rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.sub-hero-icon:hover {
  transform: translateY(-3px) rotate(-3deg);
  border-color: #93c5fd;
  box-shadow: 0 18px 34px rgba(2, 132, 199, 0.2);
}

.context-strip {
  position: relative;
  z-index: 4;
  margin-top: -1.35rem;
  margin-bottom: 1.8rem;
}

.context-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #cfe8ff;
  border-radius: 16px;
  box-shadow:
    0 18px 34px rgba(2, 132, 199, 0.14),
    0 6px 14px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  padding: 1rem 1.05rem;
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.context-card::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 8px;
  height: 36%;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.context-card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: -12px;
  height: 22px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.18);
  filter: blur(12px);
  z-index: -1;
  pointer-events: none;
}

.context-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 24px 42px rgba(2, 132, 199, 0.17),
    0 8px 18px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.context-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.context-list li {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.35rem;
  width: 100%;
  min-height: 48px;
  padding: 0.5rem 0.72rem;
  border-radius: 14px;
  border: 1px solid #c9e4ff;
  background: linear-gradient(180deg, #ffffff 0%, #eff7ff 100%);
  box-shadow:
    0 7px 15px rgba(2, 132, 199, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  color: #0f172a;
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.context-list li:hover {
  transform: translateY(-2px);
  border-color: #93c5fd;
  box-shadow:
    0 12px 21px rgba(2, 132, 199, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.context-list li i {
  color: #0284c7;
}

@media (max-width: 1199.98px) {
  .context-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

main > section:last-of-type {
  margin-bottom: 0 !important;
}

.site-footer {
  position: relative;
  margin-top: 0 !important;
  border-top: 1px solid rgba(125, 211, 252, 0.2);
  background: linear-gradient(180deg, #0d1b3d 0%, #0b1736 42%, #09142f 100%);
  color: #cbd5e1;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 26px;
  background: linear-gradient(180deg, rgba(125, 211, 252, 0.13), rgba(125, 211, 252, 0));
  pointer-events: none;
}

.site-footer > .container {
  position: relative;
  z-index: 1;
}

.footer-title {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-title i {
  color: #7dd3fc;
  font-size: 0.92em;
}

.footer-links li + li {
  margin-top: 0.35rem;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.footer-link i {
  color: #7dd3fc;
  font-size: 0.8rem;
}

.footer-meta-links a i {
  font-size: 0.78rem;
}

.site-footer a {
  display: inline-block;
  color: #e2e8f0;
  text-decoration: none;
  transition: color 0.22s ease, transform 0.22s ease;
}

.site-footer a.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.site-footer a:hover {
  color: #7dd3fc;
  transform: translateX(2px);
}

.content-narrow {
  max-width: 840px;
}

#lead-form-widget {
  scroll-margin-top: 140px;
}

.btn {
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary,
.btn-success,
.btn-light {
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: var(--primary-dark);
  box-shadow: 0 12px 24px rgba(14, 165, 233, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0891d1, #0369a1);
  border-color: #0369a1;
  box-shadow: 0 16px 30px rgba(14, 165, 233, 0.42);
}

.btn-success {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-color: var(--accent-dark);
  box-shadow: 0 12px 24px rgba(34, 197, 94, 0.34);
}

.btn-success:hover {
  background: linear-gradient(135deg, #16a34a, #15803d);
  border-color: #15803d;
  box-shadow: 0 16px 30px rgba(34, 197, 94, 0.42);
}

.btn-light {
  background: #ffffff;
  color: #0f172a;
  border-color: #ffffff;
  box-shadow: 0 10px 22px rgba(255, 255, 255, 0.3);
}

.btn-light:hover {
  filter: brightness(0.98);
}

.btn-pop {
  animation: pulseGlow 2.3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.28);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(14, 165, 233, 0);
  }
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(34, 197, 94, 0.35);
  z-index: 1050;
  animation: waBob 1.8s ease-in-out infinite;
}

.floating-whatsapp i {
  font-size: 1.6rem;
  line-height: 1;
}

@keyframes waBob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

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

@media (max-width: 767.98px) {
  .btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    white-space: normal;
    padding: 0.78rem 0.95rem;
    border-radius: 14px;
    font-size: 0.95rem;
  }

  .btn.btn-sm {
    min-height: 44px;
    padding: 0.68rem 0.85rem;
    font-size: 0.9rem;
  }

  .hero-cta-group,
  .urgent-cta-group,
  .contact-cta-group {
    width: 100%;
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 0.7rem !important;
  }

  .hero-cta-group .btn,
  .urgent-cta-group .btn,
  .contact-cta-group .btn {
    width: 100%;
  }

  .service-card-actions {
    width: 100%;
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 0.7rem !important;
  }

  .service-card .btn-service,
  .service-card-actions .btn-service {
    width: 100%;
    padding: 0.86rem 1rem;
    font-size: 0.96rem;
    border-radius: 14px;
    box-shadow: 0 10px 22px rgba(14, 165, 233, 0.18);
  }

  .service-card .btn-outline-primary.btn-service {
    border-width: 1.6px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
  }

  .trust-module {
    border-radius: 16px;
  }

  .badge-box-metric {
    min-height: auto;
  }

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

  .hero-panel {
    top: 86px;
  }

  .hero-panel-head h3 {
    font-size: 1rem;
  }

  .hero-chip {
    font-size: 0.72rem;
  }

  .brand-logo {
    height: 40px;
    max-width: min(68vw, 224px);
  }

  .trust-points {
    grid-template-columns: 1fr;
    padding: 0.62rem;
  }

  .trust-points span {
    min-height: 44px;
    font-size: 0.84rem;
    padding: 0.42rem 0.62rem;
  }

  .trust-points::after {
    left: 14px;
    right: 14px;
    bottom: -9px;
  }

  .sub-hero {
    padding: 1.9rem 0 1.35rem;
  }

  .sub-hero-grid {
    grid-template-columns: 1fr;
  }

  .sub-hero-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    font-size: 1.25rem;
  }

  .context-strip {
    margin-top: -0.75rem;
    margin-bottom: 1.1rem;
  }

  .context-card {
    padding: 0.8rem 0.85rem;
  }

  .context-card::after {
    left: 16px;
    right: 16px;
    bottom: -10px;
  }

  .context-list {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .top-strip .container {
    gap: 0.5rem;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    padding-bottom: calc(1rem + env(safe-area-inset-bottom)) !important;
  }
}
