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

:root {
  --brand-primary: #0e7f9e;
  --brand-mid: #1aa3c8;
  --brand-secondary: #88d3e1;
  --brand-accent: #e9d718;
  --brand-accent-hover: #d6c515;
  --text-dark: #0d2d38;
  --text-light: #f5fbff;
  --text-muted: #5b8898;
  --bg-soft: #eef9fc;
  --card-bg: #ffffff;
  --border-light: #d5eaf0;
  --shadow-sm: 0 4px 16px rgba(10, 79, 99, 0.1);
  --shadow-md: 0 12px 32px rgba(10, 79, 99, 0.14);
  --shadow-lg: 0 24px 56px rgba(10, 79, 99, 0.18);
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;
  --navbar-offset: 122px;
  --navbar-card-offset: 92px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-offset);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--text-dark);
  background: #f5fbff;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

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

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

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.24s;
}

.reveal-delay-3 {
  transition-delay: 0.36s;
}

.reveal-delay-4 {
  transition-delay: 0.48s;
}

.site-navbar {
  background-image: url("../assets/images/navbar-background.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: none;
  box-shadow: 0 4px 20px rgba(10, 50, 65, 0.2);
}

.site-navbar .navbar-brand,
.site-navbar .nav-link,
.site-navbar .navbar-toggler {
  color: var(--text-dark) !important;
}

.site-navbar .navbar-nav {
  gap: 0.55rem;
}

.site-navbar .nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.45rem 1.05rem !important;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 3px 12px rgba(7, 54, 72, 0.14);
  backdrop-filter: blur(6px);
  font-size: 0.96rem;
  font-weight: 700;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    transform 0.18s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.site-navbar .nav-link:hover {
  color: #123644 !important;
  background: rgba(233, 215, 24, 0.9);
  border-color: rgba(233, 215, 24, 0.95);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(7, 54, 72, 0.2);
}

.site-navbar .nav-link:focus-visible {
  outline: 3px solid rgba(14, 127, 158, 0.38);
  outline-offset: 2px;
}

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

.brand-logo {
  width: clamp(210px, 22vw, 300px);
  height: auto;
  display: block;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  padding: 3px 6px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 5rem;
  color: var(--text-light);
  background: linear-gradient(145deg, #083d52 0%, #0e7f9e 55%, #0f8fb0 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 85% 15%, rgba(233, 215, 24, 0.22), transparent 45%),
    radial-gradient(ellipse at 10% 80%, rgba(136, 211, 225, 0.28), transparent 40%),
    radial-gradient(ellipse at 50% 50%, rgba(234, 52, 117, 0.08), transparent 55%);
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  top: -130px;
  right: -80px;
  border: 2px solid rgba(136, 211, 225, 0.18);
  animation: spin-slow 40s linear infinite;
  pointer-events: none;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 60px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(233, 215, 24, 0.18);
  border: 1px solid rgba(233, 215, 24, 0.35);
  color: var(--brand-accent);
  border-radius: var(--radius-pill);
  padding: 0.3rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(6px);
}

.kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-accent);
  box-shadow: 0 0 0 4px rgba(233, 215, 24, 0.25);
}

.hero-section h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.18;
  margin-bottom: 1.1rem;
}

.hero-copy {
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-section .btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: var(--brand-accent);
  border-color: var(--brand-accent);
  color: #1a2600;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 20px rgba(233, 215, 24, 0.45);
}

.hero-section .btn-light:hover {
  background: var(--brand-accent-hover);
  border-color: var(--brand-accent-hover);
  color: #1a2600;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(233, 215, 24, 0.5);
}

.hero-section .btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-width: 2px;
  border-radius: var(--radius-pill);
  font-family: "Sora", sans-serif;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

.hero-section .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.hero-card {
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius-xl);
  padding: 1.8rem;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-lg);
  animation: float-card 3.2s ease-in-out infinite;
}

.hero-card h2 {
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
}

.hero-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.hero-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hero-card ul li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.93rem;
}

.hero-bullet-icon {
  width: 30px;
  height: 30px;
  background: rgba(233, 215, 24, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-bullet-icon i {
  font-size: 0.92rem;
}

.section-block {
  padding: 5rem 0;
}

#hero,
#servicio,
#beneficios,
#propuesta,
#contacto {
  scroll-margin-top: var(--navbar-offset);
}

#hero {
  scroll-margin-top: calc(var(--navbar-offset) + 10px);
}

#servicio-cards,
#beneficios-cards,
#propuesta-content,
#contacto-form {
  scroll-margin-top: var(--navbar-card-offset);
}

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.85rem, 2.8vw, 2.5rem);
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 2.8rem;
}

.service-overview {
  background: linear-gradient(180deg, #eaf7fb 0%, #f5fbff 100%);
}

.service-pill-list {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-pill {
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  background: var(--card-bg);
  border: 1px solid rgba(14, 127, 158, 0.14);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-pill:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-pill::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.service-pill .step-number {
  font-family: "Sora", sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--bg-soft);
  line-height: 1;
  position: absolute;
  top: 0.8rem;
  right: 1.2rem;
  pointer-events: none;
}

.service-pill-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(14, 127, 158, 0.12), rgba(136, 211, 225, 0.18));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 1.1rem;
  color: var(--brand-primary);
}

.service-pill h3 {
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.service-pill p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.bg-soft {
  background: var(--card-bg);
}

.feature-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card {
  padding: 1.8rem 1.6rem;
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
  border: 1px solid #cce9f2;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: var(--card-bg);
}

.feature-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.12rem;
  margin-bottom: 1rem;
  color: #fff;
}

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.proposal-section {
  background: linear-gradient(160deg, #f0fafd 0%, #fafffe 100%);
}

.proposal-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.proposal-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  background: var(--card-bg);
  border: 1px solid #d6eef5;
  box-shadow: var(--shadow-sm);
  font-size: 0.93rem;
  line-height: 1.55;
  transition: box-shadow 0.2s, transform 0.2s;
}

.proposal-list li:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.proposal-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.96rem;
  color: #fff;
  flex-shrink: 0;
}

.coverage-card {
  border-radius: var(--radius-xl);
  padding: 2.2rem;
  background: linear-gradient(145deg, #083d52, #0e7f9e);
  color: var(--text-light);
  border: 1px solid rgba(136, 211, 225, 0.25);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.coverage-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 215, 24, 0.22), transparent 70%);
  pointer-events: none;
}

.coverage-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}

.coverage-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.93rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
}

.contact-detail:last-of-type {
  border-bottom: none;
}

.contact-detail-icon {
  width: 24px;
  font-size: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.96);
}

.coverage-btn {
  border-radius: 999px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  background: var(--brand-accent);
  border-color: var(--brand-accent);
  color: #1a2600;
}

.coverage-btn:hover {
  background: var(--brand-accent-hover);
  border-color: var(--brand-accent-hover);
  color: #1a2600;
}

.contact-section {
  background:
    radial-gradient(ellipse at 10% 20%, rgba(234, 52, 117, 0.07), transparent 40%),
    linear-gradient(180deg, #f5fbff, #fff);
}

.contact-form-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.contact-form-card .form-control,
.contact-form-card .form-select {
  border: 2px solid #daeef5;
  border-radius: 12px;
  background: #fafeff;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 4px rgba(14, 127, 158, 0.1);
  background: #fff;
}

.contact-form-card .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-mid));
  border: none;
  border-radius: var(--radius-pill);
  font-family: "Sora", sans-serif;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(14, 127, 158, 0.35);
}

.contact-form-card .btn-primary:hover {
  background: linear-gradient(135deg, #0b6882, var(--brand-primary));
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(14, 127, 158, 0.4);
}

.contact-helper {
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background:
    radial-gradient(circle at top, rgba(234, 52, 117, 0.22), transparent 30%),
    linear-gradient(180deg, #0b6780 0%, #084e64 100%);
}

.thanks-card {
  max-width: 760px;
  border-radius: var(--radius-xl);
  padding: 2.75rem;
  text-align: center;
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
}

.thanks-card .section-label {
  color: var(--brand-accent);
}

.thanks-card .btn-light {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
  color: #1a2600;
  border-radius: var(--radius-pill);
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.thanks-card .btn-light:hover {
  background: var(--brand-accent-hover);
  border-color: var(--brand-accent-hover);
  color: #1a2600;
}

.thanks-card .btn-outline-light {
  border-radius: var(--radius-pill);
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.thanks-copy {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  line-height: 1.7;
}

.site-footer {
  padding: 1.1rem 0 0.7rem;
  background: linear-gradient(135deg, #083d52, #0a4f63);
  color: rgba(255, 255, 255, 0.88);
  border-top: 1px solid rgba(136, 211, 225, 0.22);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  align-items: center;
  gap: 0.9rem;
}

.social-hub {
  display: grid;
  justify-items: start;
  gap: 0.5rem;
  text-align: left;
}

.social-hub-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #d8dcff;
  font-size: 1.55rem;
  background: radial-gradient(circle at 30% 30%, rgba(167, 156, 255, 0.42), rgba(102, 89, 202, 0.24));
}

.social-hub-title {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.2rem, 1.55vw, 1.42rem);
  font-weight: 800;
  line-height: 1.22;
  color: #c9b8ff;
}

.social-hub-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: flex-start;
  gap: 0.8rem;
}

.social-hub-link {
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #ffffff;
  font-size: 1.55rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.social-hub-link:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
  filter: brightness(1.05);
}

.social-hub-link-instagram {
  background: linear-gradient(165deg, #f6c155 0%, #e1306c 55%, #8b2be2 100%);
}

.social-hub-link-email {
  background: linear-gradient(150deg, #0e7f9e 0%, #88d3e1 100%);
}

.social-hub-link-static {
  width: auto;
  min-width: 92px;
  border-radius: 999px;
  padding: 0 1rem;
  font-size: 0.86rem;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-weight: 700;
  cursor: default;
}

.footer-brand-wrap {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding-right: clamp(95px, 11vw, 180px);
}

.footer-brand-circle {
  width: clamp(145px, 17vw, 220px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid rgba(136, 211, 225, 0.55);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.footer-brand-image {
  width: 90%;
  max-width: 100%;
  height: auto;
  display: block;
  background: transparent;
  object-fit: contain;
}

.footer-meta {
  margin-top: 0.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.74rem;
}

.floating-actions {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.floating-actions.is-compact {
  right: max(12px, env(safe-area-inset-right));
  bottom: max(12px, env(safe-area-inset-bottom));
  gap: 8px;
}

.floating-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, filter 0.25s;
}

.floating-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
  filter: brightness(1.04);
}

.wa-action {
  background: #25d366;
  color: #031e08;
  border-radius: var(--radius-pill);
  padding: 14px 20px;
  gap: 10px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  position: relative;
}

.wa-action::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-pill);
  background: rgba(37, 211, 102, 0.35);
  animation: pulse-ring 2s ease-out infinite;
  pointer-events: none;
}

.wa-action svg {
  width: 22px;
  height: 22px;
}

.scroll-top-action {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brand-secondary);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.scroll-top-action svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 991px) {
  :root {
    --navbar-offset: 98px;
    --navbar-card-offset: 82px;
  }

  .site-navbar .navbar-toggler {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(13, 91, 113, 0.3);
    border-radius: 10px;
    padding: 0.35rem 0.55rem;
    box-shadow: 0 4px 10px rgba(10, 50, 65, 0.16);
  }

  .site-navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 0.22rem rgba(14, 127, 158, 0.28);
  }

  .site-navbar .navbar-collapse {
    margin-top: 0.55rem;
    padding: 0.65rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(136, 211, 225, 0.7);
    box-shadow: 0 8px 24px rgba(7, 54, 72, 0.16);
    backdrop-filter: blur(8px);
  }

  .site-navbar .navbar-nav .nav-link {
    width: 100%;
    min-height: 40px;
    justify-content: flex-start;
    padding: 0.5rem 0.9rem !important;
    font-size: 0.95rem;
    border-color: rgba(14, 127, 158, 0.16);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 2px 8px rgba(7, 54, 72, 0.08);
  }

  .section-block {
    padding: 4rem 0;
  }

  .section-subtitle {
    margin-bottom: 2rem;
  }

  .hero-section {
    padding-top: 4.4rem;
  }

  .hero-card {
    animation: none;
  }
}

@media (max-width: 767px) {
  .footer-main {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1rem;
  }

  .social-hub {
    justify-items: center;
    text-align: center;
  }

  .social-hub-links {
    justify-content: center;
  }

  .footer-brand-wrap {
    justify-content: center;
    padding-right: 0;
  }

  .footer-brand-circle {
    width: min(72vw, 220px);
  }
}

@media (max-width: 576px) {
  .section-block {
    padding: 3.4rem 0;
  }

  .brand-logo {
    width: clamp(160px, 45vw, 220px);
  }

  .site-navbar .navbar-nav .nav-link {
    min-height: 38px;
    font-size: 0.92rem;
  }

  .hero-section h1 {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .wa-action {
    padding: 12px 14px;
    font-size: 0.88rem;
  }

  .wa-action svg {
    width: 20px;
    height: 20px;
  }

  .scroll-top-action {
    width: 46px;
    height: 46px;
  }

  .scroll-top-action svg {
    width: 20px;
    height: 20px;
  }

  .thanks-card {
    padding: 2rem 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
