﻿:root {
  --bg: #f2f8ff;
  --surface: #ffffff;
  --surface-alt: #eaf5ff;
  --text: #0c2c4a;
  --text-muted: #4b6680;
  --primary: #0a5ca2;
  --primary-dark: #06396d;
  --accent: #16b8c6;
  --accent-dark: #0e8f9b;
  --border: #d7e6f4;
  --shadow: 0 14px 36px rgba(8, 56, 103, 0.14);
  --radius: 18px;
  --container: 1180px;
  --header-h: 98px;
  --transition: 260ms ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 86% 8%, #c7efff 0%, transparent 34%),
    radial-gradient(circle at 0 0, #dce8ff 0%, transparent 24%), var(--bg);
  line-height: 1.55;
}

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.45rem);
}

h3 {
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

p {
  color: var(--text-muted);
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.section {
  padding: 4.3rem 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 1.7rem;
}

.section-head h2 {
  margin-top: 0.45rem;
}

.kicker {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 0.76rem;
}

.bg-orb {
  position: fixed;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  filter: blur(88px);
  z-index: -1;
  pointer-events: none;
}

.orb-1 {
  top: -9rem;
  right: -6rem;
  background: rgba(16, 186, 197, 0.33);
}

.orb-2 {
  bottom: -10rem;
  left: -7rem;
  background: rgba(7, 95, 175, 0.25);
}

.contact-strip {
  background: linear-gradient(120deg, #07355f, #0a5ca2 54%, #0f7ea7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-strip-inner {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.contact-strip-inner p {
  color: #e8f6ff;
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-strip-inner p strong {
  color: #ffffff;
  font-weight: 800;
}

.contact-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.contact-chip {
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 0.38rem 0.72rem;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.contact-chip:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.46);
  transform: translateY(-1px);
}

.emergency-chip {
  background: rgba(255, 255, 255, 0.14);
}

.header {
  position: relative;
  z-index: 100;
  background: linear-gradient(
    180deg,
    rgba(217, 236, 251, 0.95) 0%,
    rgba(229, 245, 255, 0.95) 100%
  );
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(10, 92, 162, 0.2);
}

.nav-wrapper {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-image {
  width: clamp(172px, 17vw, 240px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(7, 64, 117, 0.18));
}

.nav-links {
  display: flex;
  gap: 0.7rem;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  color: #1d4d7c;
  padding: 0.5rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(10, 92, 162, 0.16);
  background: rgba(255, 255, 255, 0.34);
  opacity: 0.9;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}

.nav-links a:hover {
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(10, 92, 162, 0.28);
  opacity: 1;
}

.nav-links a.active {
  color: #ffffff;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  border-color: transparent;
  opacity: 1;
}

.btn {
  border: none;
  text-decoration: none;
  cursor: pointer;
  border-radius: 999px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  line-height: 1;
  transition: transform var(--transition), box-shadow var(--transition),
    background var(--transition), color var(--transition), border-color var(--transition);
}

.btn:focus-visible {
  outline: 3px solid rgba(22, 184, 198, 0.45);
  outline-offset: 2px;
}

.btn-sm {
  padding: 1rem 1.7rem;
  font-size: 1.04rem;
  color: #ffffff;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  box-shadow: 0 14px 28px rgba(10, 92, 162, 0.3);
}

.btn-primary {
  padding: 1rem 1.55rem;
  font-size: 1rem;
  color: #ffffff;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  box-shadow: 0 12px 28px rgba(10, 92, 162, 0.27);
}

.btn-outline {
  padding: 1rem 1.45rem;
  font-size: 1rem;
  color: var(--primary-dark);
  border: 1px solid rgba(10, 92, 162, 0.26);
  background: #ffffff;
}

.btn-large {
  padding: 1.1rem 2rem;
  font-size: 1.04rem;
}

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

.btn-primary:hover,
.btn-sm:hover {
  background: linear-gradient(120deg, var(--primary-dark), var(--accent-dark));
  box-shadow: 0 16px 30px rgba(7, 73, 127, 0.34);
}

.btn-outline:hover {
  border-color: rgba(22, 184, 198, 0.52);
  background: rgba(22, 184, 198, 0.08);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn-cta svg {
  width: 1.05rem;
  fill: currentColor;
}

.btn-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.32) 50%, transparent 80%);
  transform: translateX(-140%);
  z-index: -1;
  animation: shine 3.8s ease-in-out infinite;
}

.w-full {
  width: 100%;
}

.hero {
  padding-top: 3.5rem;
  padding-bottom: 2.3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 1.15rem;
  align-items: stretch;
}

.hero-content {
  background: rgba(255, 255, 255, 0.73);
  border: 1px solid rgba(215, 230, 244, 0.88);
  border-radius: var(--radius);
  padding: 1.9rem;
  box-shadow: var(--shadow);
}

.hero-content p {
  margin-top: 0.95rem;
  max-width: 57ch;
}

.hero .kicker {
  font-size: clamp(0.9rem, 1vw, 1.02rem);
}

.hero-content > p:not(.kicker):not(.hero-proof) {
  font-size: clamp(1.06rem, 1.04vw, 1.22rem);
  line-height: 1.58;
  color: #3f6080;
}

.hero-proof {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.62rem 0.95rem;
  font-size: clamp(0.98rem, 1vw, 1.12rem);
  font-weight: 700;
  color: var(--primary-dark);
  border-radius: 999px;
  border: 1px solid rgba(10, 92, 162, 0.2);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.95), rgba(227, 247, 255, 0.9));
}

.section-copy {
  margin-top: 0.7rem;
  font-size: clamp(0.98rem, 0.98vw, 1.1rem);
  line-height: 1.58;
  color: #44617d;
}

.hero-actions {
  margin-top: 1.45rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.hero-badges {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.hero-badges span {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.52rem 0.9rem;
  color: var(--primary-dark);
  font-size: 0.94rem;
  font-weight: 700;
}

.hero-visual {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 0.85rem;
}

.hero-image-wrap {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(215, 230, 244, 0.88);
  min-height: 350px;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-hero {
  object-position: center 32%;
}

.hero-card {
  background: linear-gradient(160deg, #0a4a87 0%, #0e6c8a 100%);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.hero-card h2,
.hero-card p {
  color: #eaf8ff;
}

.hero-card h2 {
  font-size: clamp(1.96rem, 2.3vw, 2.62rem);
}

.hero-card p {
  margin: 0.5rem 0 0.9rem;
  font-size: clamp(1.02rem, 1.01vw, 1.14rem);
  line-height: 1.56;
}

.stats-grid {
  margin-top: 1.28rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
  align-items: stretch;
}

.stat-card {
  background: #ffffff;
  border: 1px solid #d7e5f2;
  border-radius: 16px;
  padding: 1rem 1.06rem;
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0 8px 22px rgba(10, 56, 101, 0.08);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.stat-card:hover {
  transform: translateY(-3px);
  border-color: #bfd5e8;
  box-shadow: 0 12px 24px rgba(10, 56, 101, 0.11);
}

.stats-grid .stat-card.will-reveal-item:nth-child(2) {
  transition-delay: 60ms;
}

.stats-grid .stat-card.will-reveal-item:nth-child(3) {
  transition-delay: 110ms;
}

.stats-grid .stat-card.will-reveal-item:nth-child(4) {
  transition-delay: 160ms;
}

.stat-head {
  display: flex;
  align-items: center;
  gap: 0.64rem;
}

.stat-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  background: #eff5fb;
  border: 1px solid #d8e6f2;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 0.98rem;
  fill: #5f7f9f;
}

.stat-card strong {
  display: block;
  color: #0f365c;
  font-size: clamp(1.54rem, 1.72vw, 1.9rem);
  letter-spacing: -0.01em;
  line-height: 1;
  font-weight: 800;
}

.stat-card span {
  display: block;
  margin-top: 0.52rem;
  color: #5c7893;
  font-size: clamp(0.88rem, 0.84vw, 0.98rem);
  font-weight: 600;
  line-height: 1.32;
}

.complete-care {
  background: linear-gradient(180deg, rgba(245, 252, 255, 0.9), rgba(232, 245, 255, 0.82));
}

.complete-care-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.care-step {
  padding: 1.24rem;
  position: relative;
  border-color: rgba(182, 210, 232, 0.72);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 251, 255, 0.95));
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.5rem;
  border-radius: 999px;
  margin-bottom: 0.62rem;
  color: #0c4776;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border: 1px solid rgba(10, 92, 162, 0.26);
  background: rgba(230, 244, 255, 0.92);
}

.care-step h3 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.08rem, 1.3vw, 1.34rem);
}

.care-step p {
  font-size: clamp(0.92rem, 0.94vw, 1rem);
}

.card-grid,
.services-grid {
  display: grid;
  gap: 0.85rem;
}

.card,
.service-card,
.final-cta-box,
.why-content,
.why-media {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(12, 64, 112, 0.09);
}

.card {
  padding: 1.2rem;
}

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

.benefits-grid .card {
  grid-column: span 2;
}

.benefits {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(236, 248, 255, 0.82));
}

.benefit-featured {
  border: 1px solid rgba(22, 184, 198, 0.35);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(233, 248, 255, 0.95));
  box-shadow: 0 16px 32px rgba(8, 88, 145, 0.16);
}

.benefit-featured .icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.95rem;
}

.icon {
  width: 2.65rem;
  height: 2.65rem;
  display: grid;
  place-items: center;
  border-radius: 0.82rem;
  background: linear-gradient(145deg, rgba(10, 92, 162, 0.18), rgba(22, 184, 198, 0.16));
  margin-bottom: 0.7rem;
}

.icon svg {
  width: 1.38rem;
  fill: var(--primary-dark);
}

.card h3,
.service-card h3 {
  margin-bottom: 0.32rem;
}

.services {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(225, 243, 255, 0.6) 100%);
}

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

.service-card {
  overflow: hidden;
  padding: 0;
  position: relative;
}

.service-tag {
  position: absolute;
  top: 0.72rem;
  left: 0.72rem;
  z-index: 3;
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.03em;
  background: linear-gradient(120deg, rgba(6, 80, 143, 0.92), rgba(22, 184, 198, 0.92));
  box-shadow: 0 8px 18px rgba(6, 80, 143, 0.34);
}

.service-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center 40%;
}

.service-photo-avaliacao {
  object-position: center 38%;
}

.service-photo-limpeza {
  object-position: center 32%;
}

.service-photo-clareamento {
  object-position: center 34%;
}

.service-photo-aparelho {
  object-position: center 26%;
}

.service-photo-implante {
  object-position: center 36%;
}

.service-photo-facetas {
  object-position: center 32%;
}

.service-card h3,
.service-card p {
  padding-inline: 1rem;
}

.service-card h3 {
  margin-top: 0.8rem;
}

.service-card p {
  padding-bottom: 1rem;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 0.95rem;
  align-items: start;
}

.why {
  background: linear-gradient(180deg, rgba(246, 252, 255, 0.9), rgba(240, 249, 255, 0.75));
}

.why-media {
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.why-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-why {
  object-position: center 52%;
}

.why-content {
  padding: 1.45rem;
  align-self: start;
}

.why-content p {
  margin-top: 0.82rem;
}

.why-content ul {
  margin: 0.8rem 0 1rem;
  display: grid;
  gap: 0.45rem;
}

.why-content li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.why-content li::before {
  content: "";
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  position: absolute;
  left: 0;
  top: 0.5rem;
  background: linear-gradient(145deg, var(--primary), var(--accent));
}

.testimonials {
  padding-top: 4.1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(239, 249, 255, 0.9));
}

.testimonials-intro {
  margin-top: 0.72rem;
  max-width: 62ch;
  font-size: clamp(1rem, 1.02vw, 1.14rem);
  line-height: 1.6;
  color: #44617d;
}

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

.testimonial-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(242, 250, 255, 0.95));
  border: 1px solid rgba(198, 222, 241, 0.9);
  border-radius: 20px;
  padding: 1.24rem 1.16rem 1.18rem;
  box-shadow: 0 14px 30px rgba(10, 72, 126, 0.11);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 184, 198, 0.38);
  box-shadow: 0 20px 34px rgba(10, 72, 126, 0.15);
}

.testimonial-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  margin-bottom: 0.92rem;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 0.68rem;
}

.testimonials .avatar {
  width: 2.55rem;
  height: 2.55rem;
  min-width: 2.55rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  font-size: 0.84rem;
  letter-spacing: 0.03em;
  font-weight: 800;
  color: #f8fbff;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: linear-gradient(140deg, #0a5ca2, #18b4c7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 8px 18px rgba(8, 78, 137, 0.28);
}

.stars {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 5.2rem;
  margin-top: 0.2rem;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #e3b44a;
  background: linear-gradient(180deg, #fff1b3 0%, #f7cf5f 42%, #d89b1f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 0 rgba(132, 82, 6, 0.18), 0 3px 10px rgba(231, 182, 56, 0.24);
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.testimonial-name {
  color: #0d3357;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.testimonial-role {
  color: #587491;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.25;
}

.testimonial-text {
  color: #234769;
  font-size: clamp(0.98rem, 0.95vw, 1.08rem);
  line-height: 1.66;
  font-weight: 500;
  margin: 0;
}

.final-cta {
  padding-top: 3.4rem;
  padding-bottom: 5.2rem;
}

.final-cta-box {
  text-align: center;
  border: none;
  padding: 2rem;
  background: linear-gradient(135deg, #0a447f 0%, #0d6e8f 100%);
}

.final-cta-box h2,
.final-cta-box p,
.final-cta-box .kicker {
  color: #eaf8ff;
}

.final-cta-box p {
  margin: 0.8rem auto 1.2rem;
  max-width: 64ch;
}

.urgency-pill {
  display: inline-flex;
  margin-top: 0.82rem;
  padding: 0.46rem 0.8rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.footer {
  background: #062643;
  padding: 2.3rem 0;
}

.footer-content {
  display: grid;
  gap: 0.7rem;
}

.footer h3 {
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.footer p {
  color: #c6e6ff;
}

.footer strong {
  color: #ffffff;
}

.copyright {
  margin-top: 0.7rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(198, 230, 255, 0.24);
  font-size: 0.88rem;
}

.floating-wpp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  max-width: calc(100vw - 2rem);
  z-index: 130;
  border: none;
  border-radius: 999px;
  padding: 1.05rem 1.45rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  cursor: pointer;
  background: linear-gradient(120deg, #0a5ca2, #16b8c6);
  box-shadow: 0 16px 34px rgba(7, 80, 144, 0.45);
  transform: translateY(14px);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition), opacity var(--transition), box-shadow var(--transition);
}

.floating-wpp svg {
  width: 1.28rem;
  fill: #ffffff;
  flex-shrink: 0;
}

.floating-wpp:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(7, 80, 144, 0.48);
}

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

.floating-wpp.nudge {
  animation: pulse 1.2s ease-in-out;
}

.social-strip {
  background: #f3f6fa;
  border-top: 1px solid #d7e3ee;
  border-bottom: 1px solid #d7e3ee;
}

.social-strip-inner {
  padding: 2.55rem 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.35rem;
  align-items: center;
}

.social-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.social-logo {
  width: clamp(198px, 24vw, 295px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(8, 70, 121, 0.12));
}

.social-brand-copy {
  color: #0a9a8f;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.15rem, 1.46vw, 1.7rem);
  line-height: 1.12;
  letter-spacing: 0.01em;
  text-transform: lowercase;
}

.social-title {
  color: #0c8d86;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 800;
  font-size: clamp(1.32rem, 1.8vw, 1.86rem);
}

.social-divider {
  display: inline-block;
  width: 9.6rem;
  height: 2px;
  background: linear-gradient(90deg, #eca54f, rgba(236, 165, 79, 0.2));
  margin-top: 0.65rem;
}

.social-links {
  margin-top: 1.45rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.88rem;
}

.social-link {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.86rem;
  border: 1px solid #c8dae8;
  background: #ffffff;
  display: grid;
  place-items: center;
  color: #0c978d;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(9, 70, 121, 0.12);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.social-link svg {
  width: 1.5rem;
  fill: currentColor;
}

.social-link-stroke svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.social-link:hover {
  transform: translateY(-3px);
  border-color: #99c6dd;
  box-shadow: 0 14px 22px rgba(9, 70, 121, 0.16);
}

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

.reveal-item {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.will-reveal {
  opacity: 0;
  transform: translateY(-22px) scale(0.985);
  transition: opacity 560ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.will-reveal-item {
  opacity: 0;
  transform: translateY(-22px) scale(0.985);
  transition: opacity 560ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.will-reveal.reveal-card,
.will-reveal-item.reveal-card {
  transform: translateY(16px) scale(0.97);
}

.will-reveal.reveal-media,
.will-reveal-item.reveal-media {
  transform: translateY(-8px) scale(1.04);
  filter: blur(2px);
}

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

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

.reveal-visible.reveal-media,
.reveal-item.reveal-visible.reveal-media {
  filter: blur(0);
}

.lift {
  transition: transform var(--transition), box-shadow var(--transition);
}

.lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(12, 64, 112, 0.16);
}

@keyframes shine {
  0% {
    transform: translateX(-140%);
  }
  60%,
  100% {
    transform: translateX(130%);
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 14px 28px rgba(7, 80, 144, 0.42);
  }
  50% {
    box-shadow: 0 20px 34px rgba(7, 80, 144, 0.54);
  }
}

@media (max-width: 1080px) {
  .social-strip-inner {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .social-brand {
    justify-content: flex-start;
  }

  .contact-strip-inner {
    min-height: auto;
    padding: 0.62rem 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .complete-care-grid {
    grid-template-columns: 1fr;
  }

  .nav-wrapper {
    flex-wrap: wrap;
    row-gap: 0.7rem;
    padding: 0.65rem 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    white-space: nowrap;
    font-size: 0.96rem;
    padding: 0.44rem 0.75rem;
  }

  .btn-sm {
    padding: 0.9rem 1.2rem;
    font-size: 0.95rem;
  }

  .hero-grid,
  .why-grid,
  .services-grid,
  .testimonials-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .benefits-grid .card {
    grid-column: span 1;
  }

  .hero {
    padding-top: 2.9rem;
  }

  .hero-image-wrap {
    min-height: 280px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 82px;
  }

  .logo-image {
    width: 152px;
  }

  .section {
    padding: 3.7rem 0;
  }

  .contact-strip-inner p {
    font-size: 0.82rem;
  }

  .contact-chip {
    font-size: 0.74rem;
    padding: 0.34rem 0.62rem;
  }

  .social-strip-inner {
    padding: 1.95rem 0;
    gap: 1rem;
  }

  .social-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
  }

  .social-logo {
    width: 178px;
  }

  .social-brand-copy {
    font-size: 1.04rem;
    line-height: 1.15;
  }

  .social-title {
    font-size: 1.2rem;
    letter-spacing: 0.19em;
  }

  .social-links {
    margin-top: 1.05rem;
    gap: 0.72rem;
  }

  .social-link {
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 0.74rem;
  }

  .social-link svg {
    width: 1.32rem;
  }

  .hero-content,
  .why-content,
  .final-cta-box,
  .card {
    padding: 1.1rem;
  }

  .section-copy {
    font-size: 0.94rem;
  }

  .hero .kicker {
    font-size: 0.84rem;
  }

  .hero-content > p:not(.kicker):not(.hero-proof) {
    font-size: 1rem;
  }

  .hero-proof {
    font-size: 0.94rem;
    padding: 0.54rem 0.78rem;
  }

  .hero-badges span {
    font-size: 0.86rem;
    padding: 0.48rem 0.78rem;
  }

  .hero-card h2 {
    font-size: 1.78rem;
  }

  .hero-card p {
    font-size: 0.98rem;
  }

  .stat-card strong {
    font-size: 1.34rem;
  }

  .stat-card span {
    font-size: 0.86rem;
    margin-top: 0.44rem;
  }

  .stat-icon {
    width: 1.62rem;
    height: 1.62rem;
    border-radius: 0.58rem;
  }

  .stat-icon svg {
    width: 0.86rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 0.74rem;
  }

  .hero-actions .btn,
  .btn-large {
    width: 100%;
  }

  .nav-wrapper .btn-sm {
    width: auto;
  }

  .benefits-grid,
  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-intro {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .testimonial-card {
    padding: 1.05rem 1rem;
    border-radius: 16px;
  }

  .testimonial-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
    margin-bottom: 0.74rem;
  }

  .testimonials .avatar {
    width: 2.35rem;
    height: 2.35rem;
    min-width: 2.35rem;
    font-size: 0.8rem;
  }

  .testimonial-name {
    font-size: 0.95rem;
  }

  .testimonial-role {
    font-size: 0.8rem;
  }

  .stars {
    min-width: 0;
    justify-content: flex-start;
    margin-top: 0;
    font-size: 1rem;
  }

  .testimonial-text {
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .service-card img {
    height: 220px;
  }

  .final-cta-box {
    text-align: left;
  }

  .floating-wpp {
    right: 0.75rem;
    left: 0.75rem;
    justify-content: center;
  }
}

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

  .will-reveal,
  .will-reveal-item,
  .reveal-visible,
  .reveal-item.reveal-visible,
  .floating-wpp,
  .floating-wpp.is-visible {
    opacity: 1 !important;
    transform: none !important;
  }

  .btn-cta::before,
  .floating-wpp {
    animation: none !important;
  }
}
