:root {
  --navy-950: #071522;
  --navy-900: #0c2032;
  --navy-800: #12324d;
  --navy-700: #1c496c;
  --orange-600: #e55b16;
  --orange-500: #f36c21;
  --orange-400: #ff8b4b;
  --sky-100: #e9f5fc;
  --gray-950: #111827;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --white: #ffffff;
  --success: #147d55;
  --danger: #b42318;
  --shadow-sm: 0 10px 28px rgba(7, 21, 34, 0.08);
  --shadow-lg: 0 24px 70px rgba(7, 21, 34, 0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--gray-950);
  background: #fbfdff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  top: -5rem;
  padding: .8rem 1rem;
  background: var(--white);
  color: var(--navy-950);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}
.skip-link:focus { top: 1rem; }

.container { width: min(var(--container), calc(100% - 2rem)); margin-inline: auto; }
.section { padding: 5.5rem 0; }
.section-sm { padding: 3.25rem 0; }
.section-muted { background: linear-gradient(180deg, #f3f8fc 0%, #fbfdff 100%); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin: 0 0 .8rem;
  color: var(--orange-600);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
h1, h2, h3 { margin: 0; color: var(--navy-950); line-height: 1.1; letter-spacing: -.035em; }
h1 { font-size: clamp(2.7rem, 7vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: 1.28rem; }
p { margin: 0; }
.lead { color: var(--gray-600); font-size: clamp(1.05rem, 2vw, 1.25rem); max-width: 720px; }
.section-heading { display: grid; gap: 1rem; margin-bottom: 2.25rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 253, 255, .9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(209, 213, 219, .68);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; }
.brand { display: inline-flex; align-items: center; gap: .75rem; font-weight: 900; color: var(--navy-950); }
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  box-shadow: 0 8px 18px rgba(229, 91, 22, .28);
}
.brand-text { display: grid; line-height: 1; }
.brand-text strong { font-size: 1.05rem; letter-spacing: .02em; }
.brand-text span { margin-top: .32rem; color: var(--gray-500); font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: .35rem; }
.main-nav a { padding: .72rem .92rem; border-radius: 10px; color: var(--gray-700); font-weight: 750; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--navy-950); background: var(--sky-100); }
.nav-cta { background: var(--orange-500) !important; color: var(--white) !important; box-shadow: 0 8px 20px rgba(243, 108, 33, .2); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 12px; background: var(--sky-100); color: var(--navy-950); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 85% 20%, rgba(243,108,33,.16), transparent 24rem),
    radial-gradient(circle at 15% 70%, rgba(28,73,108,.14), transparent 26rem),
    linear-gradient(155deg, #fbfdff 0%, #edf7fd 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -15% -48% 35%;
  height: 560px;
  border-radius: 50%;
  border: 88px solid rgba(255,255,255,.7);
  transform: rotate(-12deg);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr .92fr; gap: 4rem; align-items: center; padding: 5.5rem 0; }
.hero-copy { display: grid; gap: 1.5rem; }
.hero-copy h1 span { color: var(--orange-600); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: .25rem; }
.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .78rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange-500); color: var(--white); box-shadow: 0 12px 28px rgba(229,91,22,.25); }
.btn-primary:hover { background: var(--orange-600); }
.btn-secondary { background: var(--white); color: var(--navy-950); border-color: var(--gray-200); box-shadow: var(--shadow-sm); }
.btn-dark { background: var(--navy-950); color: var(--white); }
.trust-list { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; color: var(--gray-600); font-weight: 700; font-size: .93rem; }
.trust-list span { display: inline-flex; align-items: center; gap: .45rem; }
.trust-list svg { color: var(--success); }

.appliance-scene {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}
.appliance-panel {
  position: relative;
  width: min(100%, 470px);
  aspect-ratio: 1 / 1.03;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--navy-900), var(--navy-800));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.appliance-panel::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.2), rgba(255,255,255,0));
  right: -80px;
  top: -70px;
}
.washer {
  position: absolute;
  width: 270px;
  height: 360px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -48%);
  border-radius: 24px;
  background: linear-gradient(155deg, #fff, #dbe5ec);
  box-shadow: 0 24px 50px rgba(0,0,0,.28);
}
.washer-top { height: 68px; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; border-bottom: 1px solid #c7d2da; }
.washer-knob { width: 34px; height: 34px; border-radius: 50%; border: 6px solid #bcc9d2; background: #fff; }
.washer-display { width: 72px; height: 23px; border-radius: 6px; background: var(--navy-900); position: relative; }
.washer-display::after { content: "1:28"; position: absolute; inset: 0; display: grid; place-items: center; font-size: .64rem; color: #7ef0c0; letter-spacing: .12em; }
.washer-door { position: absolute; width: 184px; height: 184px; border-radius: 50%; left: 43px; top: 105px; border: 20px solid #c9d5dc; background: radial-gradient(circle at 40% 35%, #8bb3c9, #163b52 65%, #0a1e2c); box-shadow: inset 0 0 0 7px rgba(255,255,255,.45); }
.washer-door::before { content: ""; position: absolute; inset: 24px; border-radius: 48% 52% 44% 56%; border: 10px solid rgba(255,255,255,.22); transform: rotate(24deg); }
.washer-base { position: absolute; left: 22px; right: 22px; bottom: 22px; height: 32px; border-radius: 9px; background: linear-gradient(180deg, #d1dce2, #b5c3cb); }
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .9rem 1rem;
  border-radius: 15px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow-sm);
  font-weight: 850;
  color: var(--navy-950);
}
.float-card svg { color: var(--orange-500); }
.float-card.one { top: 13%; left: -3%; }
.float-card.two { right: -4%; bottom: 14%; }

.stats { margin-top: -44px; position: relative; z-index: 5; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-radius: 22px; background: var(--white); box-shadow: var(--shadow-lg); overflow: hidden; }
.stat { padding: 1.45rem 1.6rem; display: flex; align-items: center; gap: 1rem; }
.stat + .stat { border-left: 1px solid var(--gray-200); }
.stat-icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 14px; background: var(--sky-100); color: var(--navy-700); }
.stat strong { display: block; color: var(--navy-950); font-size: 1.05rem; }
.stat span { color: var(--gray-500); font-size: .9rem; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.card { padding: 1.55rem; border: 1px solid var(--gray-200); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }
.service-card { display: grid; gap: 1rem; min-height: 250px; }
.icon-box { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 16px; background: var(--sky-100); color: var(--navy-700); }
.service-card p { color: var(--gray-600); }
.text-link { display: inline-flex; align-items: center; gap: .4rem; margin-top: auto; color: var(--orange-600); font-weight: 850; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; counter-reset: step; }
.process-item { position: relative; display: grid; gap: .8rem; padding: 1.35rem; border-radius: 18px; background: var(--white); border: 1px solid var(--gray-200); }
.process-item::before { counter-increment: step; content: "0" counter(step); color: var(--orange-500); font-size: .85rem; font-weight: 900; letter-spacing: .08em; }
.process-item p { color: var(--gray-600); font-size: .95rem; }

.cta-band { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2rem; padding: 2.2rem; border-radius: 26px; color: var(--white); background: linear-gradient(135deg, var(--navy-950), var(--navy-700)); box-shadow: var(--shadow-lg); }
.cta-band h2 { color: var(--white); font-size: clamp(1.7rem, 3vw, 2.7rem); }
.cta-band p { color: #c9d8e3; margin-top: .7rem; }

.page-hero { padding: 5rem 0 4rem; background: radial-gradient(circle at 90% 20%, rgba(243,108,33,.15), transparent 22rem), linear-gradient(160deg, #f8fcff, #eaf5fb); }
.page-hero-grid { display: grid; grid-template-columns: 1fr .6fr; gap: 3rem; align-items: end; }
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); margin-bottom: 1rem; }
.page-tag { justify-self: end; display: grid; gap: .75rem; padding: 1.25rem; border: 1px solid rgba(255,255,255,.9); border-radius: 18px; background: rgba(255,255,255,.72); box-shadow: var(--shadow-sm); }
.page-tag strong { color: var(--navy-950); }
.page-tag span { color: var(--gray-600); }

.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 2rem; align-items: start; }
.contact-stack { display: grid; gap: 1rem; }
.contact-card { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem; border: 1px solid var(--gray-200); border-radius: 18px; background: var(--white); }
.contact-card .icon-box { flex: 0 0 50px; width: 50px; height: 50px; }
.contact-card p, .contact-card a { color: var(--gray-600); }
.placeholder { color: var(--danger) !important; font-weight: 800; }
.hours { width: 100%; border-collapse: collapse; }
.hours td { padding: .75rem 0; border-bottom: 1px solid var(--gray-200); color: var(--gray-600); }
.hours td:last-child { text-align: right; font-weight: 800; color: var(--navy-950); }
.map-placeholder { min-height: 430px; display: grid; place-items: center; padding: 2rem; border-radius: 24px; background: linear-gradient(145deg, var(--navy-900), var(--navy-700)); color: var(--white); text-align: center; box-shadow: var(--shadow-lg); }
.map-placeholder svg { margin: 0 auto 1rem; color: var(--orange-400); }
.map-placeholder h2 { color: var(--white); }
.map-placeholder p { max-width: 520px; color: #d5e1e9; margin-top: .8rem; }

.form-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 1.5rem; align-items: start; }
.form-card { padding: clamp(1.2rem, 3vw, 2rem); border: 1px solid var(--gray-200); border-radius: 24px; background: var(--white); box-shadow: var(--shadow-sm); }
.form-section { display: grid; gap: 1.1rem; padding-bottom: 1.75rem; margin-bottom: 1.75rem; border-bottom: 1px solid var(--gray-200); }
.form-section:last-of-type { border-bottom: 0; margin-bottom: 0; }
.form-section-head { display: flex; align-items: flex-start; gap: .9rem; }
.step-badge { flex: 0 0 36px; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 11px; background: var(--navy-950); color: var(--white); font-weight: 900; }
.form-section-head p { color: var(--gray-500); font-size: .92rem; margin-top: .25rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: .45rem; }
.field.full { grid-column: 1 / -1; }
label { color: var(--navy-950); font-weight: 800; font-size: .92rem; }
label .optional { color: var(--gray-500); font-weight: 600; }
input, select, textarea {
  width: 100%;
  min-height: 50px;
  padding: .78rem .9rem;
  border: 1px solid var(--gray-300);
  border-radius: 12px;
  background: var(--white);
  color: var(--gray-950);
  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
}
textarea { min-height: 132px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--navy-700); box-shadow: 0 0 0 4px rgba(28,73,108,.12); }
input[type="file"] { padding: .64rem; background: var(--gray-100); }
.help { color: var(--gray-500); font-size: .82rem; }
.required { color: var(--danger); }
.conditional-panel { padding: 1rem; border-radius: 15px; background: #fff8f3; border: 1px solid #ffd9c4; }
.hidden { display: none !important; }
.checkbox-row { display: flex; align-items: flex-start; gap: .7rem; color: var(--gray-600); font-size: .92rem; }
.checkbox-row input { width: 20px; min-height: 20px; margin-top: .17rem; }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 1rem; }
.form-status { min-height: 24px; font-weight: 700; }
.form-status.error { color: var(--danger); }
.form-status.success { color: var(--success); }
.summary-card { position: sticky; top: 98px; display: grid; gap: 1rem; padding: 1.35rem; border-radius: 22px; color: var(--white); background: linear-gradient(155deg, var(--navy-950), var(--navy-700)); box-shadow: var(--shadow-lg); }
.summary-card h2 { color: var(--white); font-size: 1.45rem; }
.summary-card p { color: #c9d8e3; font-size: .92rem; }
.summary-list { display: grid; gap: .8rem; }
.summary-item { padding: .8rem; border-radius: 12px; background: rgba(255,255,255,.08); }
.summary-item span { display: block; color: #b9cbd8; font-size: .76rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 800; }
.summary-item strong { display: block; margin-top: .2rem; color: var(--white); overflow-wrap: anywhere; }
.security-note { display: flex; gap: .65rem; align-items: flex-start; padding-top: .9rem; border-top: 1px solid rgba(255,255,255,.14); color: #d4e0e8; font-size: .84rem; }

.notice { padding: 1rem 1.1rem; border-radius: 13px; background: var(--sky-100); border-left: 4px solid var(--navy-700); color: var(--navy-900); }

.site-footer { padding: 3.5rem 0 1.5rem; color: #cfdae2; background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 2rem; }
.footer-brand .brand { color: var(--white); }
.footer-brand .brand-text span { color: #9eb2c1; }
.footer-brand p { max-width: 480px; margin-top: 1rem; color: #afc0cc; }
.footer-col h3 { color: var(--white); font-size: 1rem; margin-bottom: .8rem; letter-spacing: 0; }
.footer-col a, .footer-col span { display: block; padding: .25rem 0; color: #afc0cc; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.11); color: #829aa9; font-size: .86rem; }

@media (max-width: 980px) {
  .nav-toggle { display: grid; place-items: center; }
  .main-nav { position: absolute; left: 1rem; right: 1rem; top: 82px; display: none; padding: .75rem; border: 1px solid var(--gray-200); border-radius: 16px; background: var(--white); box-shadow: var(--shadow-lg); }
  .main-nav.open { display: grid; }
  .main-nav a { padding: .9rem; }
  .hero { min-height: auto; }
  .hero-grid, .page-hero-grid, .contact-layout, .form-layout { grid-template-columns: 1fr; }
  .hero-grid { gap: 1.5rem; padding: 4rem 0 6rem; }
  .appliance-scene { min-height: 450px; }
  .appliance-panel { max-width: 430px; }
  .page-tag { justify-self: start; }
  .summary-card { position: static; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .section { padding: 4rem 0; }
  .brand-text span { display: none; }
  .hero-grid { padding-top: 3rem; }
  h1 { font-size: clamp(2.5rem, 14vw, 4rem); }
  .appliance-scene { min-height: 390px; }
  .appliance-panel { width: 92%; }
  .washer { transform: translate(-50%, -50%) scale(.82); }
  .float-card { font-size: .8rem; padding: .7rem .8rem; }
  .float-card.one { left: 0; }
  .float-card.two { right: 0; }
  .stats { margin-top: -28px; }
  .stats-grid, .card-grid, .process-grid, .footer-grid { grid-template-columns: 1fr; }
  .stat + .stat { border-left: 0; border-top: 1px solid var(--gray-200); }
  .cta-band { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

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


/* SEO/AEO content blocks: concise, machine-readable answers that remain useful to visitors. */
.answer-section { background: #fbfdff; }
.answer-box {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2rem;
  align-items: start;
  padding: clamp(1.5rem, 4vw, 2.6rem);
  border: 1px solid var(--gray-200);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.answer-copy { display: grid; gap: 1rem; }
.answer-copy h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); }
.answer-copy > p:last-child { color: var(--gray-600); }
.answer-facts { display: grid; gap: .8rem; margin: 0; }
.answer-facts div { padding: 1rem; border-radius: 15px; background: var(--sky-100); }
.answer-facts dt { color: var(--navy-950); font-weight: 900; }
.answer-facts dd { margin: .3rem 0 0; color: var(--gray-600); }

.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 2.5rem; align-items: start; }
.faq-heading { position: sticky; top: 108px; margin-bottom: 0; }
.faq-list { display: grid; gap: .8rem; }
.faq-list details { border: 1px solid var(--gray-200); border-radius: 16px; background: var(--white); box-shadow: 0 8px 22px rgba(7,21,34,.05); overflow: hidden; }
.faq-list summary { position: relative; padding: 1.15rem 3.3rem 1.15rem 1.2rem; color: var(--navy-950); font-weight: 900; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 1.15rem; top: 50%; transform: translateY(-50%); color: var(--orange-600); font-size: 1.55rem; line-height: 1; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details > div { padding: 0 1.2rem 1.2rem; color: var(--gray-600); }

.preparation-section { background: linear-gradient(180deg, #fbfdff, #f5f9fc); }
.preparation-card { display: grid; grid-template-columns: .72fr 1.28fr; gap: 2rem; align-items: center; padding: clamp(1.4rem, 3vw, 2rem); border: 1px solid var(--gray-200); border-radius: 22px; background: var(--white); box-shadow: var(--shadow-sm); }
.preparation-card h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem 1.2rem; margin: 0; padding: 0; list-style: none; }
.check-grid li { position: relative; padding-left: 1.75rem; color: var(--gray-600); font-weight: 700; }
.check-grid li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--success); font-weight: 950; }

@media (max-width: 980px) {
  .answer-box, .faq-layout, .preparation-card { grid-template-columns: 1fr; }
  .faq-heading { position: static; }
}

@media (max-width: 700px) {
  .check-grid { grid-template-columns: 1fr; }
}
