:root {
  --orange: #ff8617;
  --orange-dark: #e36d00;
  --orange-soft: #fff3e5;
  --green: #22c55e;
  --green-dark: #15803d;
  --navy: #15223c;
  --text: #30384d;
  --muted: #6f7890;
  --line: #f0e6dc;
  --white: #fff;
  --soft: #fffaf5;
  --shadow: 0 24px 70px rgba(21, 34, 60, 0.12);
  --radius: 28px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img, iframe { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(100% - 40px, var(--container)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 12px; z-index: 9999; background: var(--navy); color: #fff; padding: 10px 14px; border-radius: 999px; }
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(240, 230, 220, 0.9);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { box-shadow: 0 12px 30px rgba(21, 34, 60, .08); background: rgba(255,255,255,.96); }
.header-grid { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { display: block; height: 54px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav a { font-size: 14px; font-weight: 800; color: var(--navy); padding: 10px 14px; border-radius: 999px; transition: .25s ease; }
.main-nav a:hover { color: var(--orange-dark); background: var(--orange-soft); }
.main-nav .nav-cta { background: var(--green); color: #fff; box-shadow: 0 12px 26px rgba(34,197,94,.24); }
.main-nav .nav-cta:hover { background: var(--green-dark); color: #fff; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); background: #fff; border-radius: 14px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; cursor: pointer; }
.menu-toggle span { width: 20px; height: 2px; border-radius: 999px; background: var(--navy); transition: .25s ease; }
.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); }

.section-panel { position: relative; overflow: hidden; }
.hero { min-height: 780px; padding: 96px 0 150px; background: radial-gradient(circle at 85% 15%, rgba(255, 134, 23, .22), transparent 28%), linear-gradient(135deg, #fffaf5 0%, #ffffff 48%, #eefbf3 100%); }
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.bubble { position: absolute; border: 2px solid rgba(34, 197, 94, .25); border-radius: 50%; background: rgba(255,255,255,.55); animation: floatBubble 9s ease-in-out infinite; }
.b1 { width: 90px; height: 90px; left: 6%; top: 22%; }
.b2 { width: 42px; height: 42px; left: 47%; top: 18%; animation-delay: -2s; }
.b3 { width: 130px; height: 130px; right: 7%; top: 54%; animation-delay: -4s; }
.b4 { width: 62px; height: 62px; right: 32%; bottom: 17%; animation-delay: -6s; }
@keyframes floatBubble { 0%,100% { transform: translateY(0) scale(1); opacity: .85; } 50% { transform: translateY(-28px) scale(1.08); opacity: .45; } }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .78fr); align-items: center; gap: 64px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 18px; color: var(--orange-dark); font-size: 13px; line-height: 1.2; font-weight: 950; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow span { width: 32px; height: 3px; background: var(--green); border-radius: 999px; display: inline-block; }
.eyebrow.invert { color: #fff; }
.hero h1 { margin: 0; color: var(--navy); font-size: clamp(42px, 6vw, 76px); line-height: .95; letter-spacing: -0.065em; font-weight: 950; max-width: 850px; }
.hero-lead { margin: 26px 0 0; max-width: 690px; font-size: clamp(18px, 2vw, 22px); color: #4b556d; font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 34px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px; border-radius: 999px; font-weight: 950; font-size: 14px; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; border: 0; cursor: pointer; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--green), #33d974); box-shadow: 0 18px 34px rgba(34,197,94,.25); }
.btn-primary:hover { background: linear-gradient(135deg, var(--green-dark), var(--green)); box-shadow: 0 22px 40px rgba(34,197,94,.31); }
.btn-secondary { color: var(--navy); background: #fff; border: 1px solid var(--line); box-shadow: 0 12px 28px rgba(21,34,60,.08); }
.btn-light { color: var(--navy); background: #fff; }
.btn.big { min-height: 62px; padding-inline: 32px; font-size: 15px; }
.trust-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.trust-strip span { display: inline-flex; align-items: center; gap: 8px; padding: 9px 13px; border: 1px solid rgba(255, 134, 23, .18); background: rgba(255,255,255,.78); color: var(--navy); font-size: 13px; font-weight: 850; border-radius: 999px; box-shadow: 0 10px 24px rgba(21,34,60,.05); }
.trust-strip span::before { content: "✓"; display: grid; place-items: center; width: 18px; height: 18px; border-radius: 50%; color: #fff; background: var(--green); font-size: 12px; }
.hero-card { justify-self: end; width: min(100%, 420px); background: rgba(255,255,255,.82); border: 1px solid rgba(255,255,255,.9); border-radius: 34px; padding: 26px; box-shadow: var(--shadow); backdrop-filter: blur(18px); transform: rotate(1.4deg); }
.washer-illustration { position: relative; display: grid; place-items: center; height: 300px; border-radius: 28px; background: linear-gradient(150deg, #f8fbff, #fff6ec); overflow: hidden; border: 1px solid #f4e7d7; }
.washer-illustration::before { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%; background: rgba(34,197,94,.12); right: -80px; top: -80px; }
.washer-illustration::after { content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%; background: rgba(255,134,23,.13); left: -60px; bottom: -90px; }
.washer-top { position: absolute; top: 44px; width: 205px; height: 38px; border-radius: 14px; background: #fff; box-shadow: 0 10px 24px rgba(21,34,60,.08); display: flex; align-items: center; justify-content: flex-end; gap: 10px; padding: 0 16px; z-index: 2; }
.washer-top span { width: 16px; height: 16px; border-radius: 50%; background: var(--orange); opacity: .85; }
.washer-top span:nth-child(2) { background: var(--green); }
.washer-top span:nth-child(3) { background: #dde5ef; }
.washer-door { position: relative; width: 194px; height: 194px; border-radius: 50%; background: #fff; border: 18px solid #e8eef4; box-shadow: inset 0 6px 18px rgba(21,34,60,.15), 0 16px 34px rgba(21,34,60,.12); overflow: hidden; z-index: 3; animation: washerPulse 4.8s ease-in-out infinite; }
@keyframes washerPulse { 0%,100% { transform: rotate(0deg); } 50% { transform: rotate(3deg); } }
.water { position: absolute; left: -22px; right: -22px; bottom: 16px; height: 75px; background: linear-gradient(135deg, #76d7ff, #34d399); border-radius: 48% 52% 0 0; animation: waveMove 4.2s ease-in-out infinite; }
@keyframes waveMove { 0%,100% { transform: translateX(0) rotate(-3deg); } 50% { transform: translateX(14px) rotate(4deg); } }
.foam-dot { position: absolute; border-radius: 50%; background: rgba(255,255,255,.9); z-index: 4; animation: foam 4s ease-in-out infinite; }
.fd1 { width: 28px; height: 28px; left: 42px; bottom: 64px; }
.fd2 { width: 18px; height: 18px; right: 45px; bottom: 78px; animation-delay: -1.3s; }
.fd3 { width: 14px; height: 14px; left: 80px; bottom: 100px; animation-delay: -2.1s; }
@keyframes foam { 0%,100% { transform: translateY(0); opacity: .85; } 50% { transform: translateY(-18px); opacity: .45; } }
.hero-card-content { padding: 22px 4px 4px; }
.mini-title { margin: 0 0 12px; font-size: 12px; font-weight: 950; letter-spacing: .12em; color: var(--orange-dark); text-transform: uppercase; }
.check-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.check-list li { position: relative; padding-left: 28px; color: var(--navy); font-weight: 850; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--green); }
.wave { position: absolute; left: -5%; right: -5%; bottom: -1px; height: 88px; background: radial-gradient(circle at 4% 100%, #fff 0 42px, transparent 43px), radial-gradient(circle at 11% 86%, #fff 0 54px, transparent 55px), radial-gradient(circle at 19% 100%, #fff 0 45px, transparent 46px), radial-gradient(circle at 27% 91%, #fff 0 60px, transparent 61px), radial-gradient(circle at 39% 100%, #fff 0 50px, transparent 51px), radial-gradient(circle at 48% 85%, #fff 0 54px, transparent 55px), radial-gradient(circle at 58% 100%, #fff 0 48px, transparent 49px), radial-gradient(circle at 70% 92%, #fff 0 68px, transparent 69px), radial-gradient(circle at 83% 100%, #fff 0 52px, transparent 53px), radial-gradient(circle at 91% 88%, #fff 0 46px, transparent 47px), linear-gradient(#fff, #fff); background-size: auto; }

.services-section { padding: 92px 0 80px; background: #fff; }
.section-heading { text-align: center; max-width: 760px; margin: 0 auto 44px; }
.section-heading h2, .value-copy h2, .seo-card h2, .local-copy h2, .reviews-copy h2, .faq-intro h2, .final-cta h2 { margin: 0; color: var(--navy); font-size: clamp(30px, 4vw, 48px); line-height: 1.04; letter-spacing: -0.045em; font-weight: 950; }
.section-heading p, .value-copy p, .seo-card p, .local-copy p, .reviews-copy p, .faq-intro p, .final-cta p { color: var(--muted); font-size: 17px; font-weight: 580; }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.service-card { position: relative; min-height: 260px; padding: 26px; display: flex; flex-direction: column; align-items: flex-start; overflow: hidden; border: 1px solid #ffdec0; background: linear-gradient(180deg, #fff, #fffaf5); border-radius: 28px; box-shadow: 0 14px 34px rgba(21,34,60,.06); transition: .28s ease; }
.service-card::before { content: ""; position: absolute; width: 130px; height: 130px; right: -48px; top: -48px; border-radius: 50%; background: rgba(255,134,23,.10); transition: .28s ease; }
.service-card:hover { transform: translateY(-7px); border-color: var(--orange); box-shadow: 0 24px 54px rgba(255,134,23,.16); }
.service-card:hover::before { transform: scale(1.3); background: rgba(34,197,94,.12); }
.service-card strong { margin-top: 20px; color: var(--navy); font-size: 22px; line-height: 1.1; font-weight: 950; }
.service-card small { margin-top: 10px; color: var(--muted); font-size: 14.5px; font-weight: 620; }
.service-card em { margin-top: auto; display: inline-flex; color: var(--orange-dark); font-size: 13px; font-style: normal; font-weight: 950; padding-top: 18px; }
.service-card em::after { content: " →"; margin-left: 5px; }
.service-icon { position: relative; display: grid; place-items: center; width: 70px; height: 70px; border-radius: 22px; background: #fff3e5; color: var(--orange); box-shadow: inset 0 0 0 1px rgba(255,134,23,.18); }
.service-icon::before, .service-icon::after { content: ""; position: absolute; display: block; }
.icon-blanket::before { width: 42px; height: 30px; border: 4px solid currentColor; border-radius: 10px; transform: rotate(-5deg); }
.icon-blanket::after { width: 32px; height: 5px; background: currentColor; border-radius: 999px; bottom: 19px; opacity: .45; }
.icon-duvet::before { width: 42px; height: 38px; border: 4px solid currentColor; border-radius: 14px; }
.icon-duvet::after { width: 28px; height: 28px; border-radius: 50%; border: 3px solid currentColor; opacity: .35; }
.icon-rug::before { width: 44px; height: 32px; border: 4px solid currentColor; border-radius: 8px; box-shadow: inset 0 -9px 0 rgba(255,134,23,.18); }
.icon-rug::after { width: 40px; height: 4px; background: currentColor; border-radius: 999px; bottom: 17px; opacity: .55; }
.icon-clothes::before { width: 34px; height: 40px; border: 4px solid currentColor; border-top: 0; border-radius: 7px 7px 14px 14px; transform: translateY(4px); }
.icon-clothes::after { width: 34px; height: 18px; border: 4px solid currentColor; border-bottom: 0; border-radius: 18px 18px 0 0; top: 18px; }
.icon-bed::before { width: 46px; height: 28px; border: 4px solid currentColor; border-radius: 8px; bottom: 18px; }
.icon-bed::after { width: 18px; height: 14px; border: 3px solid currentColor; border-radius: 5px; top: 24px; left: 18px; }
.icon-towel::before { width: 33px; height: 44px; border: 4px solid currentColor; border-radius: 8px; }
.icon-towel::after { width: 27px; height: 4px; background: currentColor; border-radius: 999px; bottom: 23px; opacity: .35; box-shadow: 0 8px 0 currentColor; }
.icon-curtain::before { width: 46px; height: 42px; border-top: 5px solid currentColor; border-radius: 6px; background: repeating-linear-gradient(90deg, transparent 0 8px, rgba(255,134,23,.25) 9px 12px); }
.icon-curtain::after { width: 48px; height: 5px; background: currentColor; top: 18px; border-radius: 999px; }
.icon-dress::before { width: 36px; height: 43px; background: currentColor; clip-path: polygon(38% 0, 62% 0, 72% 25%, 100% 100%, 0 100%, 28% 25%); border-radius: 7px; opacity: .92; }
.icon-dress::after { width: 18px; height: 8px; border: 3px solid #fff; border-top: 0; border-radius: 0 0 10px 10px; top: 24px; }
.icon-suit::before { width: 42px; height: 46px; border: 4px solid currentColor; border-radius: 8px; clip-path: polygon(0 0, 100% 0, 86% 100%, 14% 100%); }
.icon-suit::after { width: 4px; height: 31px; background: currentColor; top: 26px; border-radius: 999px; box-shadow: -9px -4px 0 -1px rgba(255,134,23,.4), 9px -4px 0 -1px rgba(255,134,23,.4); }

.light { background: linear-gradient(180deg, #fff, #f8fafc); }
.value-section { padding: 92px 0; }
.value-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 58px; align-items: center; }
.quote-card { margin-top: 28px; display: grid; gap: 6px; padding: 22px; border-radius: 24px; background: #fff; border: 1px solid var(--line); box-shadow: 0 14px 32px rgba(21,34,60,.06); }
.quote-card strong { color: var(--orange-dark); }
.quote-card span { color: var(--navy); font-weight: 800; }
.value-cards { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.value-cards article { min-height: 260px; border-radius: 28px; background: #fff; border: 1px solid var(--line); padding: 24px; box-shadow: 0 16px 44px rgba(21,34,60,.08); }
.value-cards span { display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 18px; background: var(--orange-soft); color: var(--orange-dark); font-weight: 950; }
.value-cards h3 { margin: 28px 0 10px; color: var(--navy); font-size: 21px; line-height: 1.1; }
.value-cards p { margin: 0; color: var(--muted); font-weight: 620; }

.steps-section { padding: 92px 0; }
.steps-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; counter-reset: steps; }
.step-card { position: relative; min-height: 245px; padding: 26px; border-radius: 28px; background: #fff; border: 1px solid #ffdec0; box-shadow: 0 12px 34px rgba(21,34,60,.06); overflow: hidden; }
.step-card::after { content: ""; position: absolute; width: 120px; height: 120px; right: -58px; bottom: -58px; border-radius: 50%; background: rgba(34,197,94,.12); }
.step-card span { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 18px; background: var(--orange); color: #fff; font-weight: 950; box-shadow: 0 12px 28px rgba(255,134,23,.22); }
.step-card h3 { margin: 28px 0 10px; color: var(--navy); font-size: 20px; line-height: 1.1; }
.step-card p { margin: 0; color: var(--muted); font-weight: 620; }
.orange-soft { padding: 76px 0; background: linear-gradient(135deg, #fff2df, #ffffff); }
.seo-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: center; }
.keyword-cloud { display: flex; flex-wrap: wrap; gap: 12px; }
.keyword-cloud span { padding: 13px 16px; border-radius: 999px; background: #fff; color: var(--navy); border: 1px solid #ffe0bd; font-weight: 900; font-size: 14px; box-shadow: 0 10px 24px rgba(255,134,23,.08); }

.local-section { padding: 96px 0; background: #fff; }
.local-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 56px; align-items: center; }
.local-list { margin: 26px 0 28px; padding: 0; list-style: none; display: grid; gap: 12px; }
.local-list li { position: relative; padding-left: 28px; color: var(--text); font-weight: 620; }
.local-list li::before { content: ""; position: absolute; left: 0; top: .58em; width: 10px; height: 10px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(255,134,23,.12); }
.map-card { overflow: hidden; border-radius: 32px; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); }
.map-card iframe { display: block; width: 100%; height: 390px; border: 0; filter: saturate(.94); }
.map-card a { display: flex; align-items: center; justify-content: center; min-height: 58px; color: var(--orange-dark); font-weight: 950; background: #fffaf5; border-top: 1px solid var(--line); }

.dark { padding: 92px 0; color: #fff; background: radial-gradient(circle at 10% 20%, rgba(255,134,23,.25), transparent 28%), linear-gradient(135deg, #101a2d, #17243d); }
.dark h2, .dark p { color: #fff; }
.reviews-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 52px; align-items: center; }
.reviews-copy p { color: rgba(255,255,255,.78); }
.review-cards { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.review-cards article { min-height: 230px; padding: 24px; border-radius: 26px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(18px); }
.stars { color: #ffc247; letter-spacing: 2px; font-size: 18px; }
.review-cards p { color: rgba(255,255,255,.88); margin: 18px 0; font-weight: 660; }
.review-cards strong { color: #fff; }

.faq-section { padding: 96px 0; background: linear-gradient(180deg, #fff, #f8fafc); }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 52px; align-items: start; }
.faq-list { display: grid; gap: 12px; }
details { border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: 0 10px 28px rgba(21,34,60,.05); overflow: hidden; }
summary { cursor: pointer; list-style: none; padding: 20px 56px 20px 22px; color: var(--navy); font-weight: 950; position: relative; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--orange-soft); color: var(--orange-dark); }
details[open] summary::after { content: "–"; }
details p { margin: 0; padding: 0 22px 22px; color: var(--muted); font-weight: 620; }
.final-cta { padding: 40px 0 96px; background: #f8fafc; }
.final-cta-card { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 42px; border-radius: 34px; background: linear-gradient(135deg, #fff, #fff4e9); border: 1px solid #ffdec0; box-shadow: var(--shadow); }
.final-cta-card div { max-width: 710px; }
.site-footer { padding: 56px 0 26px; background: #080c14; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .8fr .8fr; gap: 48px; align-items: start; }
.footer-grid img { background: #fff; border-radius: 14px; padding: 3px; }
.footer-grid p, .footer-grid span, .footer-grid a { color: rgba(255,255,255,.76); font-weight: 580; }
.footer-grid h3 { margin: 0 0 16px; color: #fff; font-size: 17px; }
.footer-grid a, .footer-grid span { display: block; margin-bottom: 8px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.10); margin-top: 36px; padding-top: 22px; color: rgba(255,255,255,.55); font-size: 13px; }
.floating-whatsapp { position: fixed; z-index: 90; right: 20px; bottom: 20px; display: inline-flex; align-items: center; gap: 9px; min-height: 54px; padding: 0 18px; border-radius: 999px; color: #fff; background: #21c063; font-weight: 950; box-shadow: 0 16px 36px rgba(33,192,99,.34); transition: .25s ease; }
.floating-whatsapp:hover { transform: translateY(-3px); background: #15994b; }
.floating-whatsapp span { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,.18); }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }

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

@media (max-width: 1024px) {
  .hero-grid, .value-grid, .seo-grid, .local-grid, .reviews-grid, .faq-grid { grid-template-columns: 1fr; }
  .hero-card { justify-self: stretch; transform: none; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .value-cards, .review-cards { grid-template-columns: 1fr; }
  .final-cta-card { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 820px) {
  .header-grid { min-height: 74px; }
  .brand img { height: 48px; }
  .menu-toggle { display: inline-flex; }
  .main-nav { position: fixed; top: 74px; left: 16px; right: 16px; display: grid; gap: 8px; padding: 16px; border: 1px solid var(--line); background: rgba(255,255,255,.98); border-radius: 22px; box-shadow: var(--shadow); transform: translateY(-18px); opacity: 0; pointer-events: none; transition: .25s ease; }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { width: 100%; padding: 13px 14px; }
  .hero { padding-top: 70px; min-height: auto; }
  .service-grid, .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, var(--container)); }
  .hero { padding-bottom: 120px; }
  .hero h1 { font-size: 42px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .btn { width: 100%; }
  .trust-strip span { width: 100%; justify-content: center; }
  .hero-card { padding: 18px; border-radius: 26px; }
  .washer-illustration { height: 250px; }
  .services-section, .value-section, .steps-section, .local-section, .faq-section { padding: 68px 0; }
  .service-card { min-height: 238px; }
  .map-card iframe { height: 320px; }
  .final-cta-card { padding: 28px; border-radius: 26px; }
  .floating-whatsapp { left: 14px; right: 14px; justify-content: center; bottom: 14px; }
  .site-footer { padding-bottom: 92px; }
}
