:root {
  --color-bg: #fcfbf8;
  --color-surface: #f6f4ee;
  --color-text: #1f241e;
  --color-muted: #5f665e;
  --color-primary: #2f7d2f;
  --color-primary-dark: #236823;
  --color-primary-soft: #e7f3e5;
  --color-brand-green: #3aaa35;
  --color-brand-olive: #504421;
  --color-brand-olive-dark: #302b18;
  --color-sand: #dcccb9;
  --color-sand-soft: #f7f1e9;
  --color-warning: #dcccb9;
  --color-warning-soft: #f7f1e9;
  --color-danger: #b3261e;
  --color-border: #e2e7dd;
  --color-white: #ffffff;
  --shadow-soft: 0 22px 54px rgba(29, 34, 27, 0.08);
  --shadow-card: 0 12px 28px rgba(29, 34, 27, 0.06);
  --radius-sm: 18px;
  --container: 1160px;
  --container-narrow: 760px;
  --space-section: 104px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

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

[hidden] {
  display: none !important;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.1;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

h1 {
  max-width: 840px;
  margin-bottom: 18px;
  font-size: 58px;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 20px;
  font-size: 42px;
  letter-spacing: -0.03em;
}

h3 {
  margin-bottom: 12px;
  font-size: 23px;
}

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

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 20;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: var(--color-white);
  background: var(--color-primary);
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: var(--container-narrow);
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  background: rgba(252, 251, 248, 0.9);
  border-bottom: 1px solid rgba(226, 231, 221, 0.92);
  backdrop-filter: blur(10px);
}

.site-announcement {
  background: var(--color-brand-olive-dark);
}

.site-announcement-inner {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 0;
}

.site-announcement-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 11px;
  color: var(--color-brand-olive-dark);
  background: rgba(247, 241, 233, 0.94);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.site-announcement-text {
  margin: 0;
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.header-inner {
  position: relative;
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  width: min(44vw, 236px);
  flex: 0 0 auto;
  align-items: center;
  color: var(--color-primary);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.05;
  text-decoration: none;
}

.brand img {
  width: 100%;
  max-height: 54px;
  object-fit: contain;
  object-position: left center;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  display: grid;
  gap: 2px;
  min-height: 46px;
  align-content: center;
  padding: 8px 14px;
  color: var(--color-text);
  background: rgba(246, 244, 238, 0.88);
  border: 1px solid rgba(47, 125, 47, 0.18);
  border-radius: 999px;
  box-shadow: none;
  text-decoration: none;
  white-space: nowrap;
}

.header-phone:hover,
.header-phone:focus-visible {
  border-color: rgba(47, 125, 47, 0.45);
  color: var(--color-primary-dark);
}

.header-phone-label {
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.1;
  text-transform: uppercase;
}

.header-phone strong {
  font-size: 17px;
  line-height: 1.15;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--color-primary);
}

.nav-cta {
  padding: 11px 18px;
  color: var(--color-white) !important;
  background: var(--color-primary);
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}

.nav-toggle-line {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--color-text);
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(680px, calc(100vh - 120px), 860px);
  align-items: start;
  overflow: hidden;
  color: var(--color-white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  filter: saturate(0.7) contrast(1.02);
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(36, 33, 20, 0.88), rgba(36, 33, 20, 0.68) 38%, rgba(36, 33, 20, 0.34));
}

.hero-content {
  position: relative;
  z-index: 1;
  justify-self: start;
  display: grid;
  gap: 18px;
  width: auto;
  max-width: 780px;
  margin: 0 20px 0 max(20px, calc((100vw - var(--container)) / 2));
  padding: 120px 0 164px;
}

.hero h1 {
  display: flex;
  flex-direction: column;
  gap: 0.02em;
  max-width: none;
  margin-bottom: 0;
  font-size: clamp(52px, 6vw, 80px);
  line-height: 0.96;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-lead {
  max-width: 35rem;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.hero-meta {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

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

.hero-contact-note {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  font-weight: 600;
  text-wrap: pretty;
}

.hero-contact-note a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.hero-mascot {
  --eye-x: 0px;
  --eye-y: 0px;
  --mascot-eyelid-base: #efcf89;
  --mascot-eyelid-shadow: #ddb56a;
  position: absolute;
  z-index: 2;
  right: max(20px, calc((100vw - var(--container)) / 2));
  bottom: 26px;
  width: clamp(118px, 13vw, 164px);
  overflow: visible;
  transition:
    width 0.24s ease,
    opacity 0.2s ease,
    filter 0.2s ease,
    transform 0.24s ease;
}

.hero-mascot.is-following {
  position: fixed;
  z-index: 18;
  right: max(12px, calc((100vw - var(--container)) / 2 - 14px));
  bottom: clamp(72px, 9vh, 108px);
  width: clamp(82px, 6vw, 92px);
  opacity: 0.86;
  filter: saturate(0.96);
  transform: translateX(6px);
}

.hero-mascot.is-following:hover,
.hero-mascot.is-following:focus-within {
  opacity: 1;
  transform: translateX(0);
}

.hero-mascot.is-compact .mascot-eye {
  display: none;
}

.hero-mascot.is-following .mascot-bubble {
  right: 96%;
  bottom: 62%;
  width: 210px;
  font-size: 13px;
}

.mascot-bubble {
  position: absolute;
  right: 78%;
  bottom: 82%;
  z-index: 4;
  width: 220px;
  max-width: calc(100vw - 40px);
  padding: 12px 14px;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid rgba(220, 228, 218, 0.95);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(29, 34, 27, 0.16);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(10px, 8px) scale(0.98);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease;
  animation: none;
}

.mascot-bubble::after {
  position: absolute;
  right: 18px;
  bottom: -7px;
  width: 12px;
  height: 12px;
  background: var(--color-white);
  border-right: 1px solid rgba(220, 228, 218, 0.95);
  border-bottom: 1px solid rgba(220, 228, 218, 0.95);
  content: "";
  transform: rotate(45deg);
}

.hero-mascot:hover .mascot-bubble,
.hero-mascot:focus-within .mascot-bubble {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.mascot-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.mascot-stage {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 496 / 620;
  overflow: visible;
  animation: mascotWalkIn 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.mascot-character {
  position: absolute;
  inset: 0;
  display: block;
  transform-origin: 50% 100%;
  animation: mascotIdle 3.6s ease-in-out 1s infinite;
}

.mascot-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 20px rgba(20, 24, 18, 0.22));
}

.mascot-eye {
  --eye-rotation: 0deg;
  position: absolute;
  z-index: 2;
  top: 27.2%;
  width: 9.7%;
  height: 11.4%;
  overflow: hidden;
  background: #fffdf8;
  border: 2px solid #1d221b;
  border-radius: 50%;
  transform: rotate(var(--eye-rotation));
  transform-origin: center;
}

.mascot-eye::before,
.mascot-eye::after {
  position: absolute;
  left: -16%;
  width: 132%;
  height: 60%;
  content: "";
  transform: translateY(0);
  pointer-events: none;
}

.mascot-eye::before {
  top: -74%;
  z-index: 3;
  background: linear-gradient(180deg, var(--mascot-eyelid-base), var(--mascot-eyelid-shadow));
  border-bottom: 1px solid rgba(29, 34, 27, 0.65);
  border-radius: 0 0 68% 68% / 0 0 100% 100%;
}

.mascot-eye::after {
  bottom: -74%;
  z-index: 3;
  background: linear-gradient(180deg, var(--mascot-eyelid-shadow), var(--mascot-eyelid-base));
  border-top: 1px solid rgba(29, 34, 27, 0.65);
  border-radius: 68% 68% 0 0 / 100% 100% 0 0;
}

.mascot-eye-left {
  left: 47.3%;
  --eye-rotation: -2deg;
}

.mascot-eye-right {
  top: 27%;
  left: 60.6%;
  height: 12.7%;
  --eye-rotation: 4deg;
}

.hero-mascot.is-blinking .mascot-eye::before {
  animation: mascotUpperLidBlink 0.2s ease-in-out;
}

.hero-mascot.is-blinking .mascot-eye::after {
  animation: mascotLowerLidBlink 0.2s ease-in-out;
}

.hero-mascot.is-blinking .mascot-pupil {
  animation: mascotPupilBlink 0.2s ease-in-out;
}

.mascot-pupil {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 35%;
  height: 43%;
  background: #1d221b;
  border-radius: 50%;
  transform: translate(calc(-50% + var(--eye-x)), calc(-50% + var(--eye-y)));
  transition: transform 0.12s ease-out;
}

.mascot-dust {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  will-change: left, top, opacity, transform;
}

.mascot-dust-1 {
  --dust-size: 22px;
  --dust-color: rgba(220, 200, 160, 0.85);
  --dust-x1: -6%;
  --dust-y1: 74%;
  --dust-x2: -22%;
  --dust-y2: 40%;
  --dust-x3: -10%;
  --dust-y3: -10%;
  --dust-delay: 0s;
}

.mascot-dust-2 {
  --dust-size: 30px;
  --dust-color: rgba(210, 185, 140, 0.75);
  --dust-x1: 20%;
  --dust-y1: 78%;
  --dust-x2: 6%;
  --dust-y2: 36%;
  --dust-x3: 24%;
  --dust-y3: -16%;
  --dust-delay: 0.06s;
}

.mascot-dust-3 {
  --dust-size: 16px;
  --dust-color: rgba(230, 210, 170, 0.8);
  --dust-x1: 38%;
  --dust-y1: 82%;
  --dust-x2: 54%;
  --dust-y2: 46%;
  --dust-x3: 42%;
  --dust-y3: -6%;
  --dust-delay: 0.12s;
}

.mascot-dust-4 {
  --dust-size: 20px;
  --dust-color: rgba(215, 190, 145, 0.8);
  --dust-x1: 58%;
  --dust-y1: 76%;
  --dust-x2: 72%;
  --dust-y2: 42%;
  --dust-x3: 60%;
  --dust-y3: -12%;
  --dust-delay: 0.04s;
}

.mascot-dust-5 {
  --dust-size: 26px;
  --dust-color: rgba(200, 178, 130, 0.7);
  --dust-x1: 74%;
  --dust-y1: 74%;
  --dust-x2: 86%;
  --dust-y2: 34%;
  --dust-x3: 72%;
  --dust-y3: -4%;
  --dust-delay: 0.16s;
}

.mascot-dust-6 {
  --dust-size: 14px;
  --dust-color: rgba(225, 205, 165, 0.75);
  --dust-x1: 44%;
  --dust-y1: 86%;
  --dust-x2: 28%;
  --dust-y2: 52%;
  --dust-x3: 50%;
  --dust-y3: -2%;
  --dust-delay: 0.2s;
}

.mascot-dust {
  width: var(--dust-size);
  height: var(--dust-size);
  background:
    radial-gradient(circle, rgba(208, 184, 141, 0.64) 0 34%, rgba(208, 184, 141, 0.28) 54%, transparent 78%);
  box-shadow: 0 0 14px rgba(95, 73, 39, 0.08);
  filter: blur(2.2px);
}

.mascot-sparkle {
  position: absolute;
  z-index: 4;
  left: 30%;
  top: 45%;
  width: 32px;
  height: 32px;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 220, 0.4) 40%, transparent 65%);
}

.hero-mascot.is-vacuuming.is-following {
  opacity: 1;
  transform: translateX(0) scale(1.04);
}

.hero-mascot.is-vacuuming .mascot-character {
  animation: mascotCleanBounce 1.8s cubic-bezier(0.2, 0.85, 0.24, 1) both;
}

.hero-mascot.is-vacuuming .mascot-dust {
  animation: dustCloud 1.92s cubic-bezier(0.18, 0.72, 0.26, 1) var(--dust-delay) both;
}

.hero-mascot.is-vacuuming .mascot-sparkle {
  animation: sparkleFlash 0.62s ease-out 1.08s both;
}

.photo-note {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  margin-bottom: 2px;
  padding: 0;
  color: rgba(255, 255, 255, 0.8);
  background: none;
  border: 0;
  border-radius: 0;
  letter-spacing: 0.12em;
}

.hero .eyebrow::before {
  width: 42px;
  height: 1px;
  background: rgba(255, 255, 255, 0.34);
  content: "";
}

.hero[id],
.section[id] {
  scroll-margin-top: 148px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  color: var(--color-white);
  background: var(--color-primary);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--color-primary-dark);
}

.button-secondary {
  color: var(--color-primary-dark);
  background: var(--color-white);
  border-color: rgba(47, 125, 47, 0.22);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--color-primary-soft);
}

.button-whatsapp {
  color: var(--color-white);
  background: #168c5d;
}

.button-whatsapp:hover,
.button-whatsapp:focus-visible {
  background: #0f7048;
}

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -48px;
  padding-bottom: 16px;
  background: linear-gradient(180deg, rgba(48, 43, 24, 0.06), transparent);
  color: var(--color-text);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  background: transparent;
}

.trust-grid > div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(220, 228, 218, 0.96);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid span {
  margin-top: 4px;
  color: var(--color-muted);
}

.trust-grid .trust-label {
  display: inline-block;
  margin: 0 0 10px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.trust-grid strong {
  color: var(--color-text);
  font-size: 22px;
  line-height: 1.2;
  text-wrap: balance;
}

.brand-band {
  background: transparent;
  border-bottom: 0;
}

.brand-band-inner {
  display: flex;
  min-height: auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 0 6px;
}

.brand-band-copy {
  display: grid;
  gap: 6px;
}

.brand-band-copy span {
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-band-copy strong {
  max-width: 620px;
  font-size: 19px;
  line-height: 1.35;
  text-wrap: pretty;
}

.brand-band-logo {
  width: min(26vw, 220px);
  max-height: 84px;
  object-fit: contain;
}

.section {
  padding: var(--space-section) 0;
}

.section-muted {
  background: linear-gradient(180deg, var(--color-surface), #faf9f5);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 72px;
  align-items: center;
}

.split-wide {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 44px;
}

.check-panel,
.notice,
.contact-form,
.success-box {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
}

.check-panel,
.notice,
.contact-form,
.success-box {
  padding: 32px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.step {
  min-height: 0;
  padding: 28px 26px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
}

.step-number {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--color-primary-dark);
  background: var(--color-primary-soft);
  border-radius: 50%;
  font-weight: 900;
}

.mobile-disclosure-toggle {
  margin-top: 18px;
}

.check-panel {
  display: grid;
  gap: 14px;
}

.check-row {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  background: #f7f5ef;
  border-radius: 14px;
}

.check-row strong {
  color: var(--color-primary-dark);
  font-weight: 700;
  white-space: nowrap;
}

.notice {
  border-color: rgba(220, 204, 185, 0.9);
}

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

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  color: var(--color-text);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  text-wrap: pretty;
}

.faq-question span {
  color: var(--color-primary);
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
}

.faq-answer {
  padding: 0 24px 24px;
}

.faq-answer p {
  margin-bottom: 0;
}

.section-inquiry {
  position: relative;
  background:
    linear-gradient(180deg, #f8f5ee 0%, #fcfbf8 28%, var(--color-white) 100%);
  overflow: hidden;
}

.section-inquiry::before,
.section-inquiry::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.section-inquiry::before {
  top: -140px;
  right: -80px;
  width: 320px;
  height: 320px;
  background:
    radial-gradient(circle, rgba(58, 170, 53, 0.1) 0%, rgba(58, 170, 53, 0.04) 40%, rgba(58, 170, 53, 0) 74%);
}

.section-inquiry::after {
  left: -120px;
  bottom: -180px;
  width: 340px;
  height: 340px;
  background:
    radial-gradient(circle, rgba(220, 204, 185, 0.26) 0%, rgba(220, 204, 185, 0.1) 44%, rgba(220, 204, 185, 0) 76%);
}

.section-inquiry .container {
  position: relative;
  z-index: 1;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.56fr) minmax(460px, 1.44fr);
  gap: 56px;
  align-items: start;
}

.inquiry-sidebar {
  display: grid;
  gap: 22px;
  align-content: start;
}

.inquiry-intro {
  max-width: 35rem;
}

.inquiry-lead {
  max-width: 29rem;
  color: var(--color-text);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.55;
}

.inquiry-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.inquiry-highlight {
  display: grid;
  gap: 4px;
  padding: 16px 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(226, 231, 221, 0.9);
  box-shadow: none;
  backdrop-filter: none;
}

.inquiry-highlight:first-child {
  padding-top: 0;
  border-top: 0;
}

.inquiry-highlight strong {
  color: var(--color-text);
  font-size: 19px;
  line-height: 1.2;
}

.inquiry-highlight span {
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.inquiry-support-grid {
  display: grid;
  gap: 16px;
}

.form-summary {
  margin-top: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.form-summary dl {
  display: grid;
  gap: 12px;
  margin: 0 0 14px;
  padding: 0;
}

.form-summary dl div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  align-items: baseline;
}

.form-summary dt {
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.form-summary dd {
  margin: 0;
  color: var(--color-text);
  font-weight: 900;
  line-height: 1.35;
}

.form-summary p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

.inquiry-support-grid .form-summary,
.inquiry-support-grid .direct-contact {
  margin-top: 0;
  padding: 24px 26px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
}

.inquiry-support-grid .form-summary {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: none;
}

.inquiry-support-grid .form-summary dl div {
  grid-template-columns: 110px 1fr;
}

.direct-contact {
  margin-top: 22px;
  padding: 0;
  background: transparent;
  border: 0;
}

.inquiry-support-grid .direct-contact {
  background: linear-gradient(180deg, #f8f5ee, rgba(255, 255, 255, 0.98));
}

.direct-contact h3 {
  margin-bottom: 8px;
  text-wrap: balance;
}

.direct-contact p {
  margin-bottom: 14px;
}

.direct-contact-label {
  margin-bottom: 8px !important;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.direct-contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.text-link {
  color: var(--color-primary);
  font-weight: 900;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 24px;
  padding: 34px 34px 36px;
  border-color: rgba(226, 231, 221, 0.96);
  box-shadow: 0 24px 54px rgba(29, 34, 27, 0.08);
}

.contact-form::before {
  content: none;
}

.contact-form > * {
  position: relative;
  z-index: 1;
}

.form-intro-banner {
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  margin-bottom: 0;
  background: #f7f5ef;
  border: 1px solid var(--color-border);
  border-radius: calc(var(--radius-sm) + 2px);
}

.form-intro-label {
  margin: 0;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-intro-copy {
  display: grid;
  gap: 4px;
}

.form-intro-copy strong {
  display: block;
  color: var(--color-text);
  font-size: 26px;
  line-height: 1.15;
  text-wrap: balance;
}

.form-intro-copy span {
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  text-wrap: pretty;
}

.form-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.form-progress-item {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: var(--color-muted);
  background: #faf9f5;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
}

.form-progress-item strong {
  display: inline-flex;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 50%;
}

.form-progress-item.is-active {
  color: var(--color-text);
  background: rgba(231, 243, 229, 0.76);
  border-color: rgba(47, 125, 47, 0.24);
}

.form-progress-item.is-active strong,
.form-progress-item.is-complete strong {
  color: var(--color-white);
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.form-step {
  display: grid;
  gap: 22px;
}

.form-step[hidden] {
  display: none;
}

.form-step h3 {
  margin-bottom: 0;
}

.form-step-kicker {
  margin: 0;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.form-step-intro {
  margin: -8px 0 2px;
}

.choice-group {
  display: grid;
  gap: 12px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-group + .choice-group {
  margin-top: 8px;
}

.choice-group legend {
  display: block;
  margin-bottom: 12px;
  color: var(--color-text);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.3;
  text-wrap: pretty;
}

.choice-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

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

.choice-card {
  position: relative;
  display: block;
  min-width: 0;
  cursor: pointer;
}

.choice-card input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.choice-card span {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: anywhere;
  text-align: center;
}

.choice-card input:checked + span {
  color: var(--color-primary-dark);
  background: #f4f9f2;
  border-color: rgba(47, 125, 47, 0.42);
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(47, 125, 47, 0.14);
}

.choice-card input:focus-visible + span {
  outline: 3px solid rgba(58, 170, 53, 0.3);
  outline-offset: 2px;
}

.choice-group.is-invalid .choice-card span,
input[aria-invalid="true"]:not([type="radio"]),
textarea[aria-invalid="true"],
select[aria-invalid="true"] {
  border-color: var(--color-danger);
}

.field-error {
  margin: 0;
  color: var(--color-danger);
  font-size: 14px;
  font-weight: 800;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 800;
}

.customer-number-field {
  padding: 16px;
  background: #f8f5ee;
  border: 1px solid rgba(226, 231, 221, 0.96);
  border-radius: var(--radius-sm);
}

.customer-number-field summary {
  cursor: pointer;
  color: var(--color-text);
  font-weight: 900;
}

.customer-number-field label {
  margin-top: 14px;
}

.customer-number-field span {
  color: var(--color-muted);
  font-weight: 700;
}

.customer-number-field input {
  border-color: rgba(220, 204, 185, 0.95);
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 17px;
}

textarea {
  min-height: 128px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.faq-question:focus-visible,
.button:focus-visible,
.nav-toggle:focus-visible,
.nav-cta:focus-visible,
.text-link:focus-visible,
.mascot-button:focus-visible,
.mascot-bubble:focus-visible {
  outline: 3px solid rgba(58, 170, 53, 0.3);
  outline-offset: 2px;
}

.hidden-field {
  display: none;
}

.form-checks {
  display: grid;
  gap: 12px;
}

.form-checks label {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  color: var(--color-muted);
  font-weight: 700;
}

.form-checks input {
  width: 18px;
  height: 18px;
  min-height: auto;
  margin-top: 3px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2px;
}

.form-status {
  margin: 0;
  color: var(--color-primary);
  font-weight: 800;
}

.form-status.is-error {
  color: var(--color-danger);
}

.site-footer {
  padding: 24px 0 18px;
  color: var(--color-white);
  background: var(--color-brand-olive-dark);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px 32px;
}

.footer-brand {
  display: grid;
  gap: 3px;
  max-width: 420px;
}

.footer-brand strong {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.footer-brand p,
.footer-subline p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
}

.footer-brand p {
  font-size: 14px;
}

.footer-utility {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  margin: 0;
  font-style: normal;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--color-white);
}

.footer-subline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 18px;
  padding-top: 12px;
  margin-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-subline p {
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
}

.image-credit {
  max-width: 560px;
}

.mobile-contact-bar {
  display: none;
}

.legal-page {
  min-height: 70vh;
  background: var(--color-surface);
}

.legal-content h1,
.success-box h1 {
  color: var(--color-text);
  font-size: 48px;
}

.legal-content h2 {
  margin-top: 34px;
  font-size: 24px;
}

.legal-content p {
  color: var(--color-muted);
}

.success-box {
  margin-top: 48px;
}

@keyframes mascotWalkIn {
  0% {
    opacity: 0;
    transform: translateX(82px) rotate(3deg);
  }

  70% {
    opacity: 1;
    transform: translateX(-5px) rotate(-1deg);
  }

  100% {
    opacity: 1;
    transform: translateX(0) rotate(0);
  }
}

@keyframes mascotBubbleIn {
  to {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes mascotIdle {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

@keyframes mascotUpperLidBlink {
  0%,
  100% {
    transform: translateY(0);
  }

  45%,
  55% {
    transform: translateY(122%);
  }
}

@keyframes mascotLowerLidBlink {
  0%,
  100% {
    transform: translateY(0);
  }

  45%,
  55% {
    transform: translateY(-112%);
  }
}

@keyframes mascotPupilBlink {
  0%,
  100% {
    transform: translate(calc(-50% + var(--eye-x)), calc(-50% + var(--eye-y))) scaleY(1);
    opacity: 1;
  }

  45%,
  55% {
    transform: translate(calc(-50% + var(--eye-x)), calc(-50% + var(--eye-y))) scaleY(0.35);
    opacity: 0.18;
  }
}

@keyframes mascotCleanBounce {
  0% {
    transform: translateY(0) rotate(0);
  }

  12% {
    transform: translate(-4px, -10px) rotate(-4deg);
  }

  24% {
    transform: translate(2px, 0) rotate(1.6deg);
  }

  38% {
    transform: translate(-2px, -6px) rotate(2.8deg);
  }

  54% {
    transform: translate(3px, -1px) rotate(-1.7deg);
  }

  72% {
    transform: translate(-1px, -3px) rotate(0.8deg);
  }

  100% {
    transform: translateY(0) rotate(0);
  }
}

@keyframes dustCloud {
  0% {
    left: var(--dust-x1);
    top: var(--dust-y1);
    opacity: 0;
    transform: scale(0.42);
  }

  16% {
    left: calc((var(--dust-x1) + var(--dust-x2)) / 2);
    top: calc((var(--dust-y1) + var(--dust-y2)) / 2);
    opacity: 0.34;
    transform: scale(0.68);
  }

  42% {
    left: var(--dust-x2);
    top: var(--dust-y2);
    opacity: 0.58;
    transform: scale(0.96);
  }

  68% {
    left: calc((var(--dust-x2) + var(--dust-x3)) / 2);
    top: calc((var(--dust-y2) + var(--dust-y3)) / 2);
    opacity: 0.36;
    transform: scale(1.08);
  }

  100% {
    left: var(--dust-x3);
    top: var(--dust-y3);
    opacity: 0;
    transform: scale(1.18);
  }
}

@keyframes sparkleFlash {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(0);
  }

  34% {
    opacity: 0.95;
    transform: scale(1.28) rotate(18deg);
  }

  62% {
    opacity: 0.46;
    transform: scale(0.88) rotate(34deg);
  }

  100% {
    opacity: 0;
    transform: scale(0.42) rotate(48deg);
  }
}

@media (min-width: 961px) {
  .hero-content {
    padding-right: min(8vw, 92px);
  }
}

@media (max-width: 960px) {
  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 36px;
  }

  .split,
  .split-wide,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .form-layout {
    gap: 40px;
  }

  .inquiry-sidebar {
    display: contents;
  }

  .inquiry-intro {
    order: -2;
  }

  .contact-form {
    order: -1;
  }

  .inquiry-highlights {
    order: 1;
  }

  .inquiry-support-grid {
    order: 2;
  }

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

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

  .hero-content {
    padding: 104px 0 172px;
  }

  .hero-mascot {
    right: 28px;
    width: 112px;
  }

  .mascot-bubble {
    right: 88%;
    width: 212px;
    font-size: 13px;
  }

  .footer-inner {
    align-items: start;
  }

  .footer-brand {
    max-width: 360px;
  }
}

@media (max-width: 860px) {
  .header-actions {
    gap: 12px;
  }

  .header-phone {
    padding-inline: 12px;
  }

  .site-nav {
    gap: 12px;
    font-size: 15px;
  }
}

@media (max-width: 760px) {
  :root {
    --space-section: 72px;
  }

  body {
    padding-bottom: 74px;
    font-size: 16px;
  }

  h1 {
    font-size: 38px;
  }

  h2,
  .legal-content h1,
  .success-box h1 {
    font-size: 32px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .header-inner {
    min-height: 72px;
    gap: 12px;
  }

  .site-announcement-inner {
    min-height: 40px;
    justify-content: flex-start;
    gap: 8px;
    padding: 8px 0;
  }

  .site-announcement-badge {
    padding: 5px 9px;
    font-size: 11px;
  }

  .site-announcement-text {
    font-size: 13px;
    text-align: left;
  }

  .brand {
    width: min(46vw, 184px);
    min-width: 0;
  }

  .header-actions {
    margin-left: auto;
    min-width: 0;
    gap: 8px;
  }

  .header-phone {
    display: none;
  }

  .nav-toggle {
    display: block;
    width: 42px;
    height: 42px;
    padding: 9px;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
  }

  .site-nav.is-open,
  .site-nav.legal-nav {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .nav-cta {
    text-align: center;
  }

  .legal-nav {
    position: static;
    flex-direction: row;
    box-shadow: none;
    border: 0;
    padding: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero[id],
  .section[id] {
    scroll-margin-top: 132px;
  }

  .hero-overlay {
    background: rgba(48, 43, 24, 0.86);
  }

  .hero-content {
    gap: 14px;
    width: auto;
    max-width: 34rem;
    margin: 0 14px;
    padding: 88px 0 132px;
  }

  .hero h1 {
    gap: 0.03em;
    max-width: none;
    font-size: clamp(40px, 11vw, 54px);
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-meta {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .hero-mascot {
    right: 14px;
    bottom: 72px;
    width: 82px;
  }

  .hero-mascot.is-following {
    display: none;
  }

  .hero-contact-note {
    display: none;
  }

  .mascot-bubble {
    right: 92%;
    bottom: 76%;
    width: 198px;
    padding: 9px 10px;
    font-size: 13px;
  }

  .trust-strip {
    margin-top: -32px;
    padding-bottom: 8px;
  }

  .steps,
  .form-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    gap: 12px;
  }

  .trust-grid > div {
    padding: 18px;
  }

  .brand-band-inner {
    padding: 6px 0 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .form-progress {
    gap: 6px;
  }

  .contact-form {
    padding: 26px 22px 24px;
    gap: 16px;
  }

  .form-intro-banner {
    padding: 16px;
  }

  .form-intro-copy strong {
    font-size: 22px;
  }

  .inquiry-lead {
    font-size: 18px;
  }

  .inquiry-highlights {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .inquiry-support-grid .form-summary dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .form-progress-item {
    display: grid;
    justify-items: center;
    gap: 6px;
    padding: 9px 6px;
    font-size: 12px;
    text-align: center;
  }

  .form-actions {
    display: grid;
  }

  .form-actions .button {
    width: 100%;
  }

  .mobile-disclosure-toggle {
    width: 100%;
  }

  .brand-band-inner {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 0;
  }

  .brand-band-logo {
    width: min(100%, 260px);
  }

  .step {
    min-height: auto;
  }

  .check-panel,
  .notice,
  .success-box {
    padding: 24px;
  }

  .check-row {
    display: grid;
  }

  .check-row strong {
    white-space: normal;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-utility {
    width: 100%;
    justify-items: start;
    gap: 6px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-brand {
    max-width: none;
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 30;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 1px;
    overflow: hidden;
    background: var(--color-border);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    box-shadow: 0 12px 34px rgba(23, 32, 29, 0.22);
  }

  .mobile-contact-bar a {
    display: grid;
    min-height: 54px;
    place-items: center;
    padding: 8px;
    color: var(--color-text);
    background: var(--color-white);
    font-size: 14px;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
  }

  .mobile-contact-bar .mobile-contact-primary {
    color: var(--color-white);
    background: #168c5d;
  }

  .mobile-contact-bar a:focus-visible {
    outline: 3px solid rgba(58, 170, 53, 0.32);
    outline-offset: -3px;
  }
}

@media (max-width: 420px) {
  .site-announcement-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  h1 {
    font-size: 34px;
  }

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

  .hero .eyebrow::before {
    width: 28px;
  }

  .header-phone {
    padding-inline: 8px;
  }

  .header-phone strong {
    font-size: 13px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-mascot {
    width: 92px;
  }

  .form-intro-copy strong {
    font-size: 19px;
  }

  .mascot-bubble {
    right: 96%;
    width: 184px;
  }

  .choice-options,
  .choice-options-compact {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-mascot,
  .mascot-bubble,
  .mascot-eye {
    transition: none;
  }

  .mascot-stage,
  .mascot-character,
  .mascot-bubble,
  .hero-mascot.is-blinking .mascot-eye::before,
  .hero-mascot.is-blinking .mascot-eye::after,
  .hero-mascot.is-blinking .mascot-pupil,
  .hero-mascot.is-vacuuming .mascot-character,
  .hero-mascot.is-vacuuming .mascot-dust,
  .hero-mascot.is-vacuuming .mascot-sparkle {
    animation: none;
  }

  .mascot-bubble {
    opacity: 1;
    transform: none;
  }
}
