:root {
  --blue: #458bc9;
  --blue-2: #55a6ee;
  --navy: #2f4770;
  --navy-dark: #17305a;
  --white: #ffffff;
  --soft: #f4f9ff;
  --soft-2: #eaf5ff;
  --text: #17305a;
  --muted: #64748b;
  --shadow: 0 24px 70px rgba(47, 71, 112, 0.17);
  --radius: 28px;
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fcff 0%, #ffffff 42%, #eef7ff 100%);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

.container {
  width: min(1160px, 100%);
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.bubble {
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.96), rgba(69,139,201,.2));
  border: 1px solid rgba(69,139,201,.18);
  animation: floatBubble 16s linear infinite;
  opacity: .7;
}

.bubble-1 { width: 92px; height: 92px; left: 7%; top: 20%; animation-duration: 18s; }
.bubble-2 { width: 42px; height: 42px; left: 88%; top: 18%; animation-duration: 14s; }
.bubble-3 { width: 70px; height: 70px; left: 78%; top: 68%; animation-duration: 20s; }
.bubble-4 { width: 34px; height: 34px; left: 13%; top: 76%; animation-duration: 13s; }

.bubble-6 { width: 55px; height: 55px; left: 36%; top: 9%; animation-duration: 17s; }

@keyframes floatBubble {
  0% { transform: translateY(30px) scale(.9); }
  50% { transform: translateY(-34px) scale(1.08); }
  100% { transform: translateY(30px) scale(.9); }
}

.floating-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1160px, calc(100% - 32px));
  min-height: 76px;
  padding: 12px 14px 12px 18px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(69,139,201,.18);
  box-shadow: 0 18px 40px rgba(47,71,112,.12);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  z-index: 99;
  transition: .25s ease;
}

.floating-header.scrolled {
  min-height: 66px;
  box-shadow: 0 20px 55px rgba(47,71,112,.18);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 190px;
}

.brand img {
  width: 206px;
  max-height: 56px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  font-weight: 700;
  font-size: 14px;
  padding: 12px 15px;
  border-radius: 999px;
  color: var(--navy);
  transition: .2s ease;
  white-space: nowrap;
}

.main-nav a:hover {
  background: var(--soft-2);
  color: var(--blue);
}

.main-nav .nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: var(--white);
  box-shadow: 0 12px 24px rgba(69,139,201,.24);
}

.main-nav .nav-cta:hover {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--soft-2);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  background: var(--navy);
  border-radius: 999px;
  transition: .2s ease;
}

.hero {
  padding: 164px 0 88px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  width: 740px;
  height: 740px;
  right: -240px;
  top: -160px;
  background: radial-gradient(circle, rgba(69,139,201,.20), transparent 68%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  align-items: center;
  gap: 46px;
}

.hero-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-size: 13px;
}

.badge-dot {
  width: 11px;
  height: 11px;
  background: var(--blue);
  border-radius: 999px;
  box-shadow: 0 0 0 7px rgba(69,139,201,.15);
}

.hero h1,
.section-heading h2,
.video-copy h2,
.about-copy h2,
.location-card h2,
.faq-copy h2 {
  font-family: "Montserrat", sans-serif;
  color: var(--navy);
  letter-spacing: -0.045em;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: .96;
  margin: 18px 0 20px;
}

.hero-copy > p {
  max-width: 620px;
  font-size: 18px;
  color: var(--muted);
  line-height: 1.75;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: .2s ease;
  border: 1px solid transparent;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--navy));
  box-shadow: 0 18px 32px rgba(69,139,201,.25);
}

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

.btn-outline {
  color: var(--navy);
  border-color: rgba(47,71,112,.18);
  background: rgba(255,255,255,.7);
}

.quick-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-values span {
  background: var(--white);
  border: 1px solid rgba(69,139,201,.16);
  box-shadow: 0 10px 26px rgba(47,71,112,.08);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--muted);
  font-size: 13px;
}

.quick-values strong {
  color: var(--blue);
  margin-right: 4px;
}

.hero-visual {
  min-height: 500px;
  position: relative;
  display: grid;
  place-items: center;
}

.washing-card {
  position: relative;
  width: min(425px, 86vw);
  aspect-ratio: 1 / 1.14;
  border-radius: 42px;
  background: linear-gradient(180deg, var(--white), #e7f4ff);
  box-shadow: var(--shadow);
  border: 1px solid rgba(69,139,201,.18);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.washing-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 2px dashed rgba(69,139,201,.18);
  border-radius: 34px;
}

.machine-top {
  position: relative;
  z-index: 2;
  width: 240px;
  height: 52px;
  border-radius: 18px 18px 10px 10px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 0 18px;
}

.machine-top span {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--blue-2);
}

.machine-top span:first-child {
  width: 58px;
  border-radius: 999px;
  background: rgba(255,255,255,.28);
  margin-right: auto;
}

.machine-door {
  position: relative;
  z-index: 2;
  width: 250px;
  height: 250px;
  border-radius: 999px;
  border: 20px solid var(--navy);
  background: #d7efff;
  overflow: hidden;
  box-shadow: inset 0 0 0 10px rgba(255,255,255,.65);
  animation: machinePulse 3.4s ease-in-out infinite;
}

@keyframes machinePulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.025); }
}

.water-wave {
  position: absolute;
  left: -26px;
  bottom: 36px;
  width: 320px;
  height: 118px;
  background: var(--blue);
  border-radius: 45% 45% 0 0;
  animation: waveMove 3.4s ease-in-out infinite;
}

.wave-two {
  background: rgba(255,255,255,.38);
  bottom: 86px;
  height: 56px;
  animation-delay: .7s;
}

@keyframes waveMove {
  0%,100% { transform: translateX(-12px) rotate(-2deg); }
  50% { transform: translateX(18px) rotate(3deg); }
}

.machine-base {
  position: relative;
  z-index: 2;
  margin-top: 14px;
  width: 220px;
  height: 25px;
  border-radius: 999px;
  background: rgba(47,71,112,.14);
}

.foam {
  position: absolute;
  border-radius: 999px;
  background: rgba(69,139,201,.25);
  border: 1px solid rgba(69,139,201,.2);
  animation: foamFloat 5.6s ease-in-out infinite;
}

.foam-a { width: 76px; height: 76px; top: 92px; right: 46px; }
.foam-b { width: 42px; height: 42px; bottom: 84px; left: 54px; animation-delay: 1.1s; }
.foam-c { width: 26px; height: 26px; top: 64px; left: 110px; animation-delay: 1.8s; }

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

.floating-price {
  position: absolute;
  z-index: 3;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(69,139,201,.18);
  box-shadow: 0 20px 42px rgba(47,71,112,.14);
  border-radius: 22px;
  padding: 18px 20px;
  min-width: 142px;
  font-weight: 800;
  color: var(--navy);
  animation: floatTag 4s ease-in-out infinite;
}

.floating-price strong {
  color: var(--blue);
  font-size: 24px;
}

.price-a { left: 0; top: 80px; }
.price-b { right: 0; bottom: 84px; animation-delay: 1.1s; }

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

section {
  position: relative;
  max-width: 100%;
  overflow-x: clip;
}

main,
.site-footer {
  max-width: 100%;
  overflow-x: clip;
}

.video-section {
  padding-top: 12px;
  overflow: hidden;
}

.video-section::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  left: -180px;
  top: -160px;
  background: radial-gradient(circle, rgba(69,139,201,.16), transparent 70%);
  z-index: -1;
}

.video-grid {
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
  align-items: center;
  justify-content: center;
  gap: 54px;
}

.video-frame {
  position: relative;
  width: min(380px, 100%);
  max-width: 100%;
  justify-self: center;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.92), #eaf6ff);
  border: 1px solid rgba(69,139,201,.18);
  box-shadow: var(--shadow);
  padding: 18px;
  overflow: hidden;
}

.video-frame::before,
.video-frame::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(69,139,201,.18);
  animation: foamFloat 5.6s ease-in-out infinite;
}

.video-frame::before {
  width: 78px;
  height: 78px;
  right: -22px;
  top: 34px;
}

.video-frame::after {
  width: 36px;
  height: 36px;
  left: 32px;
  bottom: 34px;
  animation-delay: 1.1s;
}

.video-player {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  min-height: unset;
  aspect-ratio: 9 / 16;
  border-radius: 26px;
  overflow: hidden;
}

.video-embed,
.video-mp4 {
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: unset;
  aspect-ratio: 9 / 16;
  border: 0;
  border-radius: 26px;
  display: block;
  background: #000;
  object-fit: cover;
}

.video-placeholder {
  position: relative;
  z-index: 2;
  min-height: unset;
  aspect-ratio: 9 / 16;
  border-radius: 26px;
  border: 2px dashed rgba(69,139,201,.28);
  background:
    linear-gradient(135deg, rgba(47,71,112,.78), rgba(69,139,201,.78)),
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.32), transparent 32%);
  color: var(--white);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 34px;
}

.play-button {
  width: 86px;
  height: 86px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.92);
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
  padding-left: 5px;
  box-shadow: 0 18px 38px rgba(20,42,75,.22);
  animation: machinePulse 3.4s ease-in-out infinite;
}

.video-placeholder strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  letter-spacing: -0.04em;
}

.video-placeholder small {
  max-width: 420px;
  display: block;
  color: rgba(255,255,255,.82);
  font-size: 15px;
  line-height: 1.6;
}

.video-copy h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.02;
  margin: 10px 0 16px;
}

.video-copy p {
  margin-bottom: 20px;
}

.video-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 26px;
}

.video-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(69,139,201,.16);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(47,71,112,.08);
}

.video-highlights span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--blue);
}

.app-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.store-btn {
  min-width: 172px;
  justify-content: center;
}

.values-section,
.video-section,
.internal-section,
.about-section,
.how-section,
.location-section,
.faq-section {
  padding: 86px 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading h2,
.video-copy h2,
.about-copy h2,
.location-card h2,
.faq-copy h2 {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.05;
  margin: 10px 0 14px;
}

.section-heading p,
.video-copy p,
.about-copy p,
.location-card p,
.faq-copy p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}

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

.price-card {
  position: relative;
  overflow: hidden;
  padding: 34px 28px;
  border-radius: var(--radius);
  background: linear-gradient(155deg, var(--blue-2), var(--blue));
  color: var(--white);
  box-shadow: 0 24px 46px rgba(69,139,201,.24);
  min-height: 344px;
  transition: .25s ease;
  isolation: isolate;
}

.price-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border: 34px solid rgba(255,255,255,.12);
  border-radius: 999px;
  top: -120px;
  right: -95px;
  z-index: -1;
}

.price-card:hover,
.service-card:hover,
.step-card:hover {
  transform: translateY(-8px);
}

.price-card.featured {
  background: linear-gradient(155deg, var(--navy), var(--blue));
}

.icon-wrap {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 22px;
  margin-bottom: 24px;
}

.icon-wrap svg {
  width: 42px;
  height: 42px;
  stroke: var(--white);
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.droplet-icon svg path:first-child {
  fill: none;
}

.price-card h3 {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 29px;
  letter-spacing: -0.03em;
}

.price {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 76px;
  line-height: 1;
  margin: 12px 0 14px;
  letter-spacing: -0.0em;
}

.price span {
  font-size: 31px;
  margin-right: 8px;
  letter-spacing: -0.03em;
}

.price small {
  font-size: 34px;
  letter-spacing: -0.04em;
}

.price-card p {
  color: rgba(255,255,255,.84);
  line-height: 1.65;
}

.card-bubbles span {
  position: absolute;
  border-radius: 999px;
  background: rgba(255,255,255,.34);
  animation: cardBubble 4.2s ease-in-out infinite;
}

.card-bubbles span:nth-child(1) { width: 16px; height: 16px; top: 24px; right: 32px; }
.card-bubbles span:nth-child(2) { width: 34px; height: 34px; top: 62px; right: 72px; animation-delay: .7s; }
.card-bubbles span:nth-child(3) { width: 12px; height: 12px; bottom: 38px; right: 44px; animation-delay: 1.2s; }

@keyframes cardBubble {
  0%,100% { transform: translateY(0); opacity: .8; }
  50% { transform: translateY(-13px); opacity: .55; }
}

.internal-section {
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #eef8ff 100%);
}

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

.service-card,
.step-card {
  position: relative;
  padding: 30px;
  border-radius: 26px;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(69,139,201,.16);
  box-shadow: 0 22px 46px rgba(47,71,112,.09);
  transition: .25s ease;
  overflow: hidden;
}

.service-card::before,
.step-card::before {
  content: "";
  position: absolute;
  width: 138px;
  height: 138px;
  border-radius: 999px;
  right: -54px;
  top: -52px;
  background: rgba(69,139,201,.1);
}

.service-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: var(--soft-2);
  font-size: 30px;
  margin-bottom: 20px;
  animation: tinyFloat 3.8s ease-in-out infinite;
}

@keyframes tinyFloat {
  0%,100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-5px) rotate(-2deg); }
}

.service-card h3,
.benefit-item h3,
.step-card h3,
.footer-grid h3 {
  font-family: "Montserrat", sans-serif;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.service-card p,
.step-card p,
.benefit-item p,
.footer-brand p {
  color: var(--muted);
  line-height: 1.65;
}

.service-card strong {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
}

.service-note {
  margin-top: 18px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.about-section {
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(69,139,201,.17), transparent 70%);
  left: -200px;
  top: 40px;
  z-index: -1;
}

.about-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 36px;
  align-items: center;
}

.about-copy {
  padding-right: 20px;
}

.about-copy p {
  margin-bottom: 28px;
}

.benefits-list {
  display: grid;
  gap: 16px;
}

.benefit-item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(69,139,201,.16);
  box-shadow: 0 18px 38px rgba(47,71,112,.08);
}

.benefit-item > span {
  width: 78px;
  height: 78px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--navy));
}

.how-section {
  background: var(--white);
}

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

.step-card span {
  display: inline-flex;
  color: var(--blue);
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
}

.step-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.location-card {
  border-radius: 34px;
  padding: 42px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(47,71,112,.18);
  position: relative;
}

.location-card::before,
.location-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
}

.location-card::before {
  width: 190px;
  height: 190px;
  right: 16%;
  top: -74px;
}

.location-card::after {
  width: 82px;
  height: 82px;
  right: 48px;
  bottom: 22px;
}

.location-card > * {
  position: relative;
  z-index: 2;
}

.location-card .eyebrow,
.location-card h2,
.location-card p {
  color: var(--white);
}

.location-card p {
  opacity: .84;
}

.location-copy {
  max-width: 780px;
}

.location-units {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.location-unit {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 20px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
  transition: .25s ease;
}

.location-unit:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.18);
}

.location-unit {
  cursor: pointer;
}

.location-unit.active {
  background: rgba(255,255,255,.28);
  border-color: rgba(255,255,255,.68);
  box-shadow: 0 18px 32px rgba(20,42,75,.18);
}

.location-unit.active span {
  background: var(--blue-soft);
}

.location-unit:focus-visible {
  outline: 3px solid rgba(255,255,255,.78);
  outline-offset: 4px;
}

.location-unit span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
}

.location-unit strong {
  display: block;
  font-size: 17px;
  margin-bottom: 2px;
}

.location-unit p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
}

.location-card .btn-primary {
  background: var(--white);
  color: var(--navy);
  box-shadow: none;
  flex: 0 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 42px;
  align-items: start;
}

.faq-copy p {
  margin-bottom: 24px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  width: 100%;
  text-align: left;
  padding: 23px 24px;
  border-radius: 22px;
  border: 1px solid rgba(69,139,201,.16);
  background: rgba(255,255,255,.88);
  box-shadow: 0 14px 32px rgba(47,71,112,.08);
  cursor: pointer;
}

.faq-item span {
  display: block;
  color: var(--navy);
  font-weight: 800;
  font-size: 16px;
}

.faq-item small {
  display: none;
  color: var(--muted);
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  margin-top: 8px;
  font-size: 14px;
}

.faq-item.active {
  border-color: rgba(69,139,201,.42);
  background: #f7fbff;
}

.faq-item.active small {
  display: block;
}

.site-footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 58px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 34px;
}

.footer-brand img {
  width: 240px;
  margin-bottom: 16px;
}

.footer-brand p,
.footer-grid a,
.footer-grid span {
  color: rgba(255,255,255,.75);
}

.footer-grid h3 {
  color: var(--white);
  margin-bottom: 14px;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin: 10px 0;
}

.footer-grid a {
  transition: .2s ease;
}

.footer-grid a:hover,
.footer-bottom a:hover {
  color: var(--blue-2);
}

.footer-bottom {
  margin-top: 46px;
  padding: 20px 16px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  justify-content: center;
  color: rgba(255,255,255,.68);
  font-size: 14px;
}

.footer-bottom a {
  color: var(--white);
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: #25d366;
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 30px;
  box-shadow: 0 18px 38px rgba(37,211,102,.32);
  z-index: 90;
  transition: .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
}

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

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

.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }

@media (max-width: 980px) {
  .floating-header {
    border-radius: 28px;
    align-items: center;
  }

  .brand img {
    width: 186px;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255,255,255,.97);
    border: 1px solid rgba(69,139,201,.14);
    box-shadow: 0 20px 50px rgba(47,71,112,.14);
    border-radius: 26px;
    padding: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    text-align: center;
  }

  .menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero-grid,
  .video-grid,
  .about-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .video-copy {
    text-align: center;
  }

  .hero-badge,
  .hero-actions,
  .quick-values,
  .video-highlights {
    justify-content: center;
  }

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


  .video-frame {
    padding: 12px;
    border-radius: 28px;
  }

  .video-placeholder {
    min-height: 230px;
    padding: 24px;
    border-radius: 22px;
  }

  .play-button {
    width: 68px;
    height: 68px;
    font-size: 27px;
  }

  .price-grid,
  .service-grid,
  .steps-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .floating-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 66px;
    padding: 10px 10px 10px 14px;
  }

  .brand img {
    width: 160px;
  }

  .hero {
    padding: 132px 0 54px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-copy > p,
  .section-heading p,
  .about-copy p,
  .location-card p,
  .faq-copy p {
    font-size: 16px;
  }


  .video-frame {
    padding: 12px;
    border-radius: 28px;
  }

  .video-placeholder {
    min-height: 230px;
    padding: 24px;
    border-radius: 22px;
  }

  .play-button {
    width: 68px;
    height: 68px;
    font-size: 27px;
  }

  .price-grid,
  .service-grid,
  .steps-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .washing-card {
    width: min(330px, 90vw);
    border-radius: 32px;
  }

  .machine-top {
    width: 194px;
  }

  .machine-door {
    width: 204px;
    height: 204px;
    border-width: 16px;
  }

  .machine-base {
    width: 180px;
  }

  .floating-price {
    min-width: 116px;
    padding: 14px 15px;
    font-size: 13px;
  }

  .floating-price strong {
    font-size: 19px;
  }

  .price-a { left: 0; top: 36px; }
  .price-b { right: 0; bottom: 34px; }

  .values-section,
  .video-section,
  .internal-section,
  .about-section,
  .how-section,
  .location-section,
  .faq-section {
    padding: 58px 0;
  }

  .price-card {
    min-height: auto;
  }

  .price {
    font-size: 68px;
  }

  .benefit-item {
    grid-template-columns: 1fr;
  }

  .location-card {
    padding: 30px;
    align-items: flex-start;
    flex-direction: column;
  }

  .location-units {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 16px;
    bottom: 16px;
  }
}

/* correção mobile horizontal */

@media (max-width: 680px) {
  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  .floating-header {
    width: calc(100% - 8px);
  }

  .video-grid {
    width: 100%;
    max-width: 100%;
    gap: 30px;
  }

  .video-frame {
    width: min(330px, 100%);
    max-width: 100%;
    margin: 0 auto;
    padding: 10px;
    border-radius: 24px;
  }

  .video-player,
  .video-placeholder,
  .video-embed,
  .video-mp4 {
    width: 100%;
    max-width: 100%;
    min-height: unset;
    aspect-ratio: 9 / 16;
    border-radius: 20px;
  }

  .video-embed,
  .video-mp4 {
    height: 100%;
  }

  .app-buttons {
    justify-content: center;
  }

  .store-btn {
    width: min(260px, 100%);
  }

  .bubble-2,
  .bubble-5 {
    left: auto;
    right: -56px;
  }
}

.logowhats{
  width: 28px;
  height: 28px;
}