@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');

:root {
  --orange: #F1621C;
  --orange-dark: #D6520F;
  --orange-light: #FF8A45;
  --yellow: #F5C400;
  --ink: #1B1B1B;
  --charcoal: #232323;
  --paper: #F2F2F0;
  --white: #FFFFFF;
  --muted: #6B6B68;
  --line: rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: clip;
  min-width: 0;
  font-family: 'Nunito', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

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

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

/* ===== Header ===== */
header.site {
  background: linear-gradient(90deg, var(--orange-dark), var(--orange) 60%, var(--orange-light));
  padding: 10px 74px;
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  max-width: 100%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.logo {
  display: flex;
  align-items: center;
  align-self: center;
  flex-shrink: 0;
  gap: 8px;
  font-weight: 900;
  font-size: 26px;
  letter-spacing: 0.5px;
  color: var(--white);
  text-transform: uppercase;
  grid-column: 1;
  justify-self: start;
}

.logo a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 0;
}

.logo img {
  display: block;
  height: 53px;
  width: auto;
  max-width: min(210px, 48vw);
  object-fit: contain;
  object-position: left center;
}

.logo .wash {
  color: var(--ink);
  background: var(--yellow);
  padding: 2px 8px;
  border-radius: 4px;
  transform: skew(-6deg);
  display: inline-block;
}

.logo .tron {
  color: var(--white);
}

.logo .spark {
  color: var(--yellow);
  font-size: 20px;
  margin-left: 2px;
}

nav.main {
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: flex-end;
  grid-column: 2;
  justify-self: stretch;
  padding-right: 12px;
  margin: 0;
}

nav.main a {
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.4px;
  padding: 4px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color .2s ease, opacity .2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

nav.main a + a::before {
  content: '|';
  color: var(--white);
  margin: 0 11px;
  font-weight: 400;
  pointer-events: none;
  line-height: 1;
}

nav.main a:hover {
  border-color: var(--yellow);
}

nav.main a.active {
  border-color: var(--white);
}

.hotline {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--ink);
  padding: 5px 14px;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
  align-self: center;
  grid-column: 3;
  justify-self: end;
}

.hotline .icn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex: none;
}

.hotline .txt {
  line-height: 1.1;
}

.hotline .txt small {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  opacity: .75;
}

.hotline .txt strong {
  font-size: 13px;
  letter-spacing: 1.5px;
}

/* ===== Hero ===== */
.hero-wrap {
  background: var(--paper);
  padding: 44px 40px 30px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  max-width: 1360px;
  margin: 0 auto;
}

.video-panel,
.hero-slider {
  position: relative;
  width: 100%;
  min-height: 280px;
  max-height: 500px;
  border-radius: 18px;
  overflow: hidden;
  background: radial-gradient(120% 140% at 20% 10%, #2b2b2b 0%, #0d0d0d 55%, #050505 100%);
  aspect-ratio: 16/11;
  box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.35);
  isolation: isolate;
}

.video-panel video,
.hero-slider video,
.hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-slider-arrow:hover {
  transform: translateY(-50%) scale(1.06);
  background: #fff;
}

.hero-slider-arrow.prev {
  left: 14px;
}

.hero-slider-arrow.next {
  right: 14px;
}

.hero-slider-dots {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 3;
}

.hero-slider-dots button {
  width: 9px;
  height: 9px;
  border-radius: 5px;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
  padding: 0;
}

.hero-slider-dots button.active {
  width: 28px;
  background: #fff;
}

.jet-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 2px solid rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(2px);
  transition: transform .2s ease, background .2s ease;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(255, 255, 255, 0.28);
}

.play-btn svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  margin-left: 4px;
}

.dots {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dots button {
  width: 9px;
  height: 9px;
  border-radius: 5px;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
  padding: 0;
}

.dots button.active {
  width: 28px;
  background: #fff;
}

/*login panel*/
.login-panel {
  background: #fff;
  border-radius: 16px;
  padding: 34px 28px;
  box-shadow: 0 14px 30px -14px rgba(0, 0, 0, 0.2);
  margin-bottom: 24px;
}

.login-panel h4 {
  text-align: center;
  margin: 0 0 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.login-panel input {
  width: 100%;
  display: block;
  border: none;
  border-radius: 24px;
  background: linear-gradient(180deg, var(--yellow), #F0B400);
  color: var(--ink);
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  padding: 13px 16px;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
  box-shadow: inset 0 -2px 4px rgba(0, 0, 0, 0.08);
  transition: filter .2s ease;
}

.login-panel input:last-child {
  margin-bottom: 0;
}

.login-panel input::placeholder {
  color: rgba(27, 27, 27, 0.65);
  font-weight: 600;
}

.login-panel input:focus {
  outline: none;
  filter: brightness(1.05);
}

/* ===== Dashboard Panel ===== */
.dashboard-panel {
  background: #fff;
  border-radius: 16px;
  border: 3px solid var(--yellow);
  padding: 18px 20px 16px;
  margin-bottom: 26px;
  box-shadow: 0 14px 30px -14px rgba(0, 0, 0, 0.2);
}

.dashboard-panel h4 {
  text-align: center;
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 800;
  color: var(--orange);
}

.dash-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.dash-labels {
  margin: 8px 0 14px;
  font-size: 12.5px;
}

.dash-labels span:first-child {
  color: var(--muted);
  font-weight: 600;
}

.dash-labels .user-name {
  color: var(--ink);
  font-weight: 800;
  text-align: right;
}

.map-thumb {
  position: relative;
  aspect-ratio: 1.3/1;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px) 0 0/100% 20%,
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px) 0 0/25% 100%,
    #dfeee9;
}

.map-thumb .map-grid {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(120, 150, 140, 0.35) 0 2px, transparent 2px 40px),
    repeating-linear-gradient(0deg, rgba(120, 150, 140, 0.35) 0 2px, transparent 2px 34px);
}

.map-thumb .pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
  font-size: 22px;
  filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.3));
}

.avatar-block {
  aspect-ratio: 1.3/1;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--yellow), #F0B400);
}

.credits-bar {
  background: linear-gradient(180deg, var(--yellow), #F0B400);
  border-radius: 8px;
  padding: 11px 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.credits-bar span {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--ink);
}

.credits-bar strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
}

.dash-links {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 14px;
}

.dash-links-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dash-links-left {
  align-items: flex-start;
  text-align: left;
}

.dash-links-right {
  align-items: flex-end;
  text-align: right;
  margin-left: auto;
}

.dash-links a {
  font-size: 13px;
  font-weight: 600;
  color: #444;
  transition: color .2s ease;
  white-space: nowrap;
}

.dash-links a:hover {
  color: var(--orange);
}

.logout-link {
  display: block;
  text-align: right;
  font-size: 13px;
  font-weight: 800;
  color: var(--orange);
  transition: opacity .2s ease;
}

.logout-link:hover {
  opacity: 0.75;
}

/* control panel */
.control-panel {
  background: var(--charcoal);
  border: 3px solid var(--yellow);
  border-radius: 16px;
  padding: 18px;
  color: #fff;
  margin-bottom: 26px;
}

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

.step {
  background: #fff;
  color: var(--ink);
  border-radius: 10px;
  padding: 12px 8px 10px;
  text-align: center;
}

.step .ic {
  font-size: 26px;
  margin-bottom: 6px;
}

.step p {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  color: #333;
}

.confirm-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 9px 12px;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
}

.confirm-row .box {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: background .2s ease;
}

.confirm-row .box svg {
  width: 12px;
  height: 12px;
  fill: #fff;
  opacity: 0;
  transition: opacity .15s ease;
}

.confirm-row.checked .box {
  background: #2FBE6E;
}

.confirm-row.checked .box svg {
  opacity: 1;
}

.plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.plan {
  background: #fff;
  color: var(--ink);
  border-radius: 10px;
  padding: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color .2s ease, transform .15s ease;
}

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

.plan.selected {
  border-color: #B8420C;
  border-width: 4px;
  box-shadow: 0 0 0 2px rgba(241, 98, 28, 0.4);
}

.plan-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}

.plan-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #bbb;
  flex: none;
  margin-top: 2px;
  position: relative;
  background: #fff;
}

.plan.selected .plan-radio {
  border-color: #B8420C;
  border-width: 2px;
}

.plan.selected .plan-radio::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: #B8420C;
}

.plan-title h4 {
  margin: 0 0 2px;
}

.plan h4 {
  margin: 0 0 2px;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.plan .time {
  display: block;
  text-align: center;
  font-size: 10px;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 8px;
}

.plan ul {
  margin: 0;
  padding-left: 16px;
  font-size: 10.5px;
  color: #444;
  line-height: 1.6;
}

.start-btn {
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 14px;
  background: linear-gradient(90deg, var(--orange-dark), var(--orange));
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: filter .2s ease, transform .15s ease;
}

.start-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.hero-copy h1 {
  font-size: 42px;
  line-height: 1.08;
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.hero-copy p {
  font-size: 15.5px;
  line-height: 1.65;
  color: #3a3a3a;
  margin: 0;
  max-width: 480px;
}

/* features strip */
.feat-strip {
  max-width: 1360px;
  margin: 34px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  justify-content: space-between;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.feat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feat-ic {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--orange);
  flex: none;
}

.feat-ic img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.feat-item .label {
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.2px;
  color: var(--ink);
  text-transform: uppercase;
}

.store-badges {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

a.store-badge:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.store-badge img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* ===== Why Washtron ===== */
.section-title {
  text-align: center;
  margin: 70px 0 30px;
  font-size: 20px;
  letter-spacing: 10px;
  font-weight: 800;
  color: var(--ink);
}

.divider {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  max-width: 1360px;
  margin: 0 auto 40px;
}

.why-carousel {
  max-width: 1360px;
  margin: 0 auto 60px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.why-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  flex: 1;
}

.why-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3.4;
  cursor: pointer;
  box-shadow: 0 14px 30px -14px rgba(0, 0, 0, 0.3);
}

.why-card .bg {
  position: absolute;
  inset: 0;
}

.why-card .caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75), transparent 70%);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.4px;
  transform: translateY(6px);
  opacity: 0.9;
  transition: transform .2s ease;
}

.why-card:hover .caption {
  transform: translateY(0);
}

.arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: none;
  font-size: 18px;
  color: var(--ink);
  transition: background .2s ease, color .2s ease;
}

.arrow:hover {
  background: var(--orange);
  color: #fff;
}

/* ===== FAQ ===== */
.faq-wrap {
  max-width: 1000px;
  margin: 0 auto 70px;
  padding: 0 40px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.faq-item {
  grid-column: span 1;
}

.faq-q {
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: 0.3px;
  padding: 16px 44px 16px 18px;
  border-radius: 8px;
  position: relative;
  transition: background .2s ease;
}

.faq-q:hover {
  background: #ffd633;
}

.faq-q::after {
  content: '+';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 800;
  transition: transform .2s ease;
}

.faq-item.open .faq-q::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  background: #fff8e0;
  border-radius: 0 0 8px 8px;
  font-size: 13px;
  line-height: 1.6;
  color: #444;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 14px 18px;
}

/* ===== Footer ===== */
footer.site {
  background: linear-gradient(100deg, var(--orange-dark), var(--orange));
  color: #fff;
  padding: 40px 40px 20px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.foot-grid {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.3fr;
  gap: 30px;
  padding-bottom: 26px;
}

.foot-grid h5 {
  font-size: 16px;
  letter-spacing: 1px;
  margin: 0 0 10px;
  font-weight: 800;
}

.foot-grid p {
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 6px;
  max-width: 260px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.5;
}

.contact-row .ic {
  font-size: 15px;
  margin-top: 1px;
}

.copyright {
  text-align: center;
  font-size: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.85);
}

/* ===== Franchise Page ===== */
.franchise-hero {
  background: linear-gradient(180deg, var(--yellow), #F0B400);
  padding: 40px 40px 50px;
}

/* ===== Shared Heading Style (Franchise Title Style) ===== */
.franchise-title,
.series-heading,
.faq-header-title,
.why-header-wrapper h2,
.section-title {
  text-align: center;
  font-size: 28px;
  letter-spacing: 6px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 34px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  text-transform: uppercase;
}

.franchise-title::before,
.franchise-title::after,
.series-heading::before,
.series-heading::after,
.faq-header-title::before,
.faq-header-title::after,
.why-header-wrapper h2::before,
.why-header-wrapper h2::after,
.section-title::before,
.section-title::after {
  content: '';
  flex: 1;
  max-width: 420px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(27, 27, 27, 0.4));
}

.franchise-title::after,
.series-heading::after,
.faq-header-title::after,
.why-header-wrapper h2::after,
.section-title::after {
  background: linear-gradient(90deg, rgba(27, 27, 27, 0.4), transparent);
}

.franchise-grid {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
}

.franchise-copy h3 {
  font-size: 22px;
  margin: 0 0 16px;
  font-weight: 800;
  color: var(--ink);
}

.franchise-copy p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #3a3300;
  margin: 0 0 16px;
}

.franchise-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.franchise-form input,
.franchise-form textarea {
  width: 100%;
  border: none;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.franchise-form input::placeholder,
.franchise-form textarea::placeholder {
  color: #8a8a86;
}

.franchise-form textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  justify-self: end;
  border: none;
  border-radius: 8px;
  padding: 14px 40px;
  background: #e9e9e6;
  color: #8a8a86;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.submit-btn:hover {
  background: var(--ink);
  color: #fff;
}

.login-section {
  max-width: 1360px;
  margin: 0 auto;
  padding: 50px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.login-section h2 {
  font-size: 32px;
  letter-spacing: 1px;
  font-weight: 800;
  margin: 0 0 12px;
}

.login-section p {
  font-size: 14.5px;
  color: #3a3a3a;
  line-height: 1.6;
  margin: 0 0 20px;
}

.contact-sales {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-sales .phone-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 14px;
}

.contact-sales span.note {
  font-size: 13px;
  color: #3a3a3a;
  line-height: 1.4;
}

.login-form {
  display: grid;
  gap: 14px;
}

.login-form input {
  width: 100%;
  border: none;
  border-radius: 8px;
  padding: 14px 16px;
  background: #ececea;
  font-size: 14px;
  font-family: inherit;
  color: var(--ink);
}

.login-btn {
  border: none;
  border-radius: 8px;
  padding: 14px;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: filter .2s ease;
}

.login-btn:hover {
  filter: brightness(1.08);
}

.without-login-btn {
  border: 1.5px solid var(--ink, #1b1b1b);
  border-radius: 8px;
  padding: 12px;
  background: transparent;
  color: var(--ink, #1b1b1b);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all .2s ease;
}

.without-login-btn:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: var(--orange, #f36c21);
  color: var(--orange, #f36c21);
}

/* ===== Quick Wash Widget (Control Panel) ===== */
.control-panel {
  background: var(--charcoal, #232323);
  border: 3px solid var(--yellow, #FDB813);
  border-radius: 16px;
  padding: 18px;
  color: #fff;
  margin-bottom: 26px;
}

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

.step {
  background: #fff;
  color: var(--ink, #1b1b1b);
  border-radius: 10px;
  padding: 14px 8px 10px;
  text-align: center;
}

.step .ic {
  width: 40px;
  height: 40px;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step .ic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.step p {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  color: #333;
}

.confirm-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 9px 12px;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
}

.confirm-row .box {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: background .2s ease, border-color .2s ease;
}

.confirm-row .box svg {
  width: 12px;
  height: 12px;
  fill: #fff;
  opacity: 0;
  transition: opacity .15s ease;
}

.confirm-row.checked .box {
  background: var(--orange, #f36c21);
  border-color: var(--orange, #f36c21);
}

.confirm-row.checked .box svg {
  opacity: 1;
}

.plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.plan {
  background: #fff;
  color: var(--ink, #1b1b1b);
  border-radius: 10px;
  padding: 14px;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: left;
  transition: border-color .2s ease, transform .15s ease;
}

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

.plan.selected {
  border-color: #B8420C;
  border-width: 4px;
  box-shadow: 0 0 0 2px rgba(241, 98, 28, 0.4);
}

.plan h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  text-align: left;
  color: var(--orange, #f36c21);
}

.plan .time {
  display: block;
  text-align: left;
  font-size: 11px;
  color: var(--muted, #777);
  font-weight: 600;
  margin-bottom: 8px;
}

.plan ul {
  margin: 0;
  padding-left: 16px;
  font-size: 10.5px;
  color: #444;
  line-height: 1.7;
}

.start-btn {
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 14px;
  background: #8a8a86;
  color: #e5e5e3;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 1px;
  cursor: not-allowed;
  transition: background .25s ease, color .25s ease, filter .2s ease, transform .15s ease;
}

.start-btn.active {
  background: linear-gradient(90deg, var(--orange-dark, #d8570c), var(--orange, #f36c21));
  color: #fff;
  cursor: pointer;
}

.start-btn.active:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.partners-strip {
  border-top: 1px solid var(--line);
  padding: 28px 32px;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px 72px;
}

.partner-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
}

.partner-block:first-child {
  flex: 0 0 auto;
}

.partner-block:last-child {
  flex: 1 1 480px;
  max-width: 680px;
}

.partner-block h6 {
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 800;
  color: var(--muted);
  margin: 0 0 16px;
  text-transform: uppercase;
}

.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 32px;
  width: 100%;
}

.partner-logos .p-logo {
  font-weight: 800;
  font-size: 16px;
  color: #333;
  letter-spacing: 0.5px;
  opacity: 0.85;
}

.partner-logos img {
  display: block;
  height: 52px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  flex: 0 0 auto;
  transition: transform .2s ease;
}

.partner-logos img:hover {
  transform: scale(1.05);
}

@media (min-width: 981px) {
  .partner-block:last-child .partner-logos {
    flex-wrap: nowrap;
    gap: 28px;
  }
}

/* ===== Shared Section Utilities ===== */
.section-title {
  text-align: center;
  font-size: 24px;
  letter-spacing: 10px;
  font-weight: 900;
  color: var(--ink);
  margin: 30px 0 20px;
  text-transform: uppercase;
}

/* ===== Why Washtron Section ===== */
#why {
  padding: 40px 20px 50px;
  background: #fff;
}

.why-header-wrapper {
  position: relative;
  text-align: center;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
}

.why-carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-carousel-wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 44px;
}

.why-card {
  position: relative;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  background: #000;
}

.why-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}

.why-card:hover img {
  transform: scale(1.04);
}

.why-overlay-caption {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  text-align: center;
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
  pointer-events: none;
}

.why-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.35);
  border: none;
  color: #ffffff;
  font-size: 28px;
  font-weight: 300;
  cursor: pointer;
  width: 36px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
  transition: background .2s;
}

.why-nav-arrow:hover {
  background: rgba(241, 98, 28, 0.85);
}

.why-nav-arrow.left {
  left: 0;
  border-radius: 0 8px 8px 0;
}

.why-nav-arrow.right {
  right: 0;
  border-radius: 8px 0 0 8px;
}

/* ===== FAQ Section ===== */
#faq {
  padding: 40px 20px 60px;
  background: #fff;
}



.faq-grid-2col {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .page-container .why-modal {
    margin: 24px 12px 40px !important;
    max-width: none;
    width: auto;
  }

  .faq-grid-2col {
    grid-template-columns: 1fr;
  }
}

.faq-card {
  display: flex;
  flex-direction: column;
}

.faq-btn {
  background: #F5C400;
  color: #1B1B1B;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-align: center;
  border-radius: 8px;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform .15s ease, background .15s ease;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-btn:hover {
  background: #E5B400;
  transform: translateY(-2px);
}

.faq-answer {
  display: none;
  background: #ffffff;
  border: 2px solid #F5C400;
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: 14px 18px;
  font-size: 13.5px;
  color: #333;
  line-height: 1.5;
}

.faq-card.open .faq-btn {
  border-radius: 8px 8px 0 0;
}

.faq-card.open .faq-answer {
  display: block;
}

/* ===== Footer Banner UI ===== */
footer.site {
  background: linear-gradient(90deg, #E64A0F, #F1621C);
  color: #ffffff;
  padding: 30px 40px 16px;
  margin-top: 40px;
  box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.1);
}

.foot-grid {
  max-width: 1200px;
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.foot-grid h5 {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 1px;
  margin: 0 0 12px;
  color: #ffffff;
  text-transform: uppercase;
}

.foot-grid p {
  font-size: 12.5px;
  line-height: 1.6;
  opacity: 0.92;
  margin: 0;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  padding: 3px 0;
  opacity: 0.92;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  margin-bottom: 8px;
  opacity: 0.92;
}

.contact-row .ic {
  flex: none;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 14px;
  text-align: center;
  font-size: 12px;
  opacity: 0.85;
  letter-spacing: 0.3px;
}

/* ===== Why Washtron Modal / Section ===== */
.why-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 15, 10, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 24px;
  backdrop-filter: blur(2px);
}

.why-modal-overlay.open {
  display: flex;
}

.why-modal {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  max-width: 960px;
  width: 100%;
  max-height: 88vh;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  position: relative;
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.5);
}

.why-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 5;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: background .2s ease;
}

.why-modal-close:hover {
  background: #fff;
}

.why-modal-media {
  position: relative;
  background: radial-gradient(120% 140% at 30% 10%, #2b2b2b 0%, #0d0d0d 60%, #050505 100%);
  min-height: 340px;
  overflow: hidden;
}

.why-modal-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.why-modal-media .brand-plate,
.why-modal-media .bar,
.why-modal-play,
.why-modal-dots {
  z-index: 2;
}

.why-modal-media .brand-plate {
  position: absolute;
  top: 16%;
  left: 8%;
  right: 8%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.why-modal-media .brand-plate span {
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 1px;
  font-family: 'Courier New', monospace;
}

.why-modal-media .brand-plate .led {
  color: #ff3b1f;
  text-shadow: 0 0 6px rgba(255, 59, 31, 0.8);
}

.why-modal-media .brand-plate .logo-txt {
  color: var(--yellow);
  background: #111;
  padding: 6px 14px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  text-shadow: 0 0 8px rgba(245, 196, 0, 0.6);
}

.why-modal-media .bar {
  position: absolute;
  left: 6%;
  right: 6%;
  top: 38%;
  height: 70px;
  background: #151515;
  border-radius: 6px;
  border: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-modal-play {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.why-modal-play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(255, 255, 255, 0.25);
}

.why-modal-play svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  margin-left: 3px;
}

.why-modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--ink);
  z-index: 4;
  transition: background .2s ease, color .2s ease;
}

.why-modal-arrow:hover {
  background: var(--orange);
  color: #fff;
}

.why-modal-arrow.prev {
  left: 10px;
}

.why-modal-arrow.next {
  right: 10px;
}

.why-modal-dots {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.why-modal-dots button {
  width: 9px;
  height: 9px;
  border-radius: 5px;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
  transition: width .25s ease, background .25s ease;
}

.why-modal-dots button.active {
  width: 26px;
  background: #fff;
}

.why-modal-text {
  padding: 34px 36px;
  overflow-y: auto;
}

.why-modal-text .eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--muted);
  margin: 0 0 8px;
}

.why-modal-text h2 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 18px;
  color: var(--ink);
  letter-spacing: -0.3px;
}

.why-modal-text p {
  font-size: 14px;
  line-height: 1.65;
  color: #333;
  margin: 0 0 16px;
}

.why-modal-text p:last-child {
  margin-bottom: 0;
}

@media (max-width:760px) {
  .why-modal {
    grid-template-columns: 1fr;
    max-height: 92vh;
    overflow-y: auto;
  }

  .why-modal-media {
    min-height: 260px;
  }
}

/* ===== Washtron Series ===== */
.series-section {
  background: linear-gradient(180deg, var(--yellow), #F0B400);
  padding: 50px 40px 56px;
}

.series-heading {
  text-align: center;
  font-size: 26px;
  letter-spacing: 8px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 18px;
}

.series-sub {
  max-width: 900px;
  margin: 0 auto 36px;
  text-align: center;
  font-size: 14.5px;
  line-height: 1.65;
  color: #3a3300;
}

.series-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.series-card {
  text-align: center;
  cursor: pointer;
}

.series-media {
  position: relative;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3.3;
  box-shadow: 0 14px 30px -14px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.series-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.series-watermark {
  position: absolute;
  bottom: 8px;
  left: 14px;
  line-height: 0.85;
  font-weight: 900;
  color: rgba(20, 20, 20, 0.08);
  letter-spacing: 1px;
  font-size: 15px;
  text-transform: uppercase;
}

.series-watermark .num {
  display: block;
  font-size: 56px;
  letter-spacing: 0;
}

.series-caption {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--ink);
  text-transform: uppercase;
}

.series-specs-wrapper {
  margin-top: 36px;
}

.series-specs-title {
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 18px;
  color: var(--ink);
}

.series-specs-scroll {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.series-specs-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-size: 12.5px;
}

.series-specs-table th,
.series-specs-table td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
}

.series-specs-table thead th {
  background: linear-gradient(90deg, var(--orange-dark), var(--orange));
  color: #fff;
  font-weight: 800;
  font-size: 12px;
}

.series-specs-table tbody th {
  width: 28%;
  font-weight: 700;
  color: var(--ink);
  background: #fafafa;
}

.series-specs-table tbody tr:last-child th,
.series-specs-table tbody tr:last-child td {
  border-bottom: none;
}

.series-specs-table .spec-multiline {
  line-height: 1.55;
  max-width: 320px;
}

.series-specs-table--single {
  min-width: 0;
}

.series-specs-table--single tbody th {
  width: 42%;
}

/* ===== Series Spec Modal ===== */
.series-spec-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.series-spec-modal-overlay.open {
  display: flex;
}

.series-spec-modal {
  background: #fff;
  border-radius: 16px;
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.series-spec-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.08);
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.series-spec-modal-close:hover {
  background: rgba(0, 0, 0, 0.14);
}

.series-spec-modal-header {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  color: #fff;
  padding: 22px 28px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.series-spec-modal-header h3 {
  margin: 0 0 6px;
  font-size: 19px;
  font-weight: 800;
}

.series-spec-modal-header p {
  margin: 0;
  font-size: 12.5px;
  opacity: 0.92;
}

.series-spec-modal-body {
  padding: 20px 20px 24px;
}

.series-spec-modal-body .series-specs-scroll {
  max-height: 60vh;
}

/* ===== ROI Calculator — read-only & blower toggle ===== */
.roi-field-input input:disabled {
  background: #ececea;
  color: #666;
  cursor: not-allowed;
  opacity: 0.92;
}

.roi-field-label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: #555;
  margin-bottom: 6px;
}

.roi-blower-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.roi-blower-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}

.roi-blower-option input[type="radio"] {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--orange);
  flex: none;
}

/* Series 07 / 05 device illustration */
.device-plate {
  position: absolute;
  top: 16%;
  left: 8%;
  right: 8%;
  background: #151515;
  border-radius: 6px;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.device-plate .led {
  color: #ff3b1f;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 1px;
  text-shadow: 0 0 5px rgba(255, 59, 31, 0.8);
  font-family: 'Courier New', monospace;
}

.device-plate .logo-txt {
  color: var(--yellow);
  background: #0c0c0c;
  padding: 3px 8px;
  border-radius: 3px;
  display: inline-flex;
  width: fit-content;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.device-arm {
  position: absolute;
  top: 32%;
  left: 10%;
  width: 70%;
  height: 5px;
  background: #1c1c1c;
  border-radius: 3px;
}

.device-arm::after {
  content: '';
  position: absolute;
  right: 0;
  top: 5px;
  width: 5px;
  height: 90px;
  background: #1c1c1c;
  border-radius: 3px;
}

/* Blower illustration */
.blower-body {
  position: absolute;
  right: 18%;
  top: 18%;
  width: 36px;
  height: 120px;
  background: linear-gradient(180deg, #c62a2a, #8f1e1e);
  border-radius: 10px;
  transform: rotate(18deg);
}

.blower-head {
  position: absolute;
  right: 12%;
  top: 14%;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #2b2b2b, #0a0a0a 70%);
  border: 4px solid #1c1c1c;
}

.blower-head::after {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: #ff3b1f;
  opacity: 0.85;
}

/* ===== Franchise Partnership teaser ===== */
.partnership-section {
  padding: 60px 40px;
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: start;
}

.partnership-copy .eyebrow-label {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
  margin: 0 0 6px;
}

.partnership-copy h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--orange);
  margin: 0 0 20px;
  letter-spacing: -0.3px;
}

.partnership-copy p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #333;
  margin: 0 0 18px;
  max-width: 520px;
}

.partnership-cta {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  text-decoration: underline;
  padding: 14px 22px;
  border-radius: 8px;
  margin-top: 6px;
  transition: background .2s ease;
}

.partnership-cta:hover {
  background: #ffd633;
}

.partnership-cards {
  display: grid;
  gap: 16px;
}

.p-card {
  background: linear-gradient(180deg, var(--yellow), #F0B400);
  border-radius: 10px;
  padding: 18px 24px;
  text-align: center;
  cursor: pointer;
  transition: transform .15s ease, filter .2s ease;
}

.p-card:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.p-card h4 {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
}

.p-card p {
  margin: 0;
  font-size: 12.5px;
  color: #3a3300;
  line-height: 1.5;
}

/* Standalone Page container styling */
.page-container {
  padding-top: 20px;
  padding-bottom: 60px;
  min-height: calc(100vh - 200px);
}

/* ===== Appointment Modal ===== */
.appointment-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.appointment-modal-overlay.open {
  display: flex !important;
}

.appointment-modal {
  background: #ffffff;
  border-radius: 16px;
  max-width: 620px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  animation: modalFadeIn 0.25s ease-out;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(12px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.appointment-modal-header {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  color: #ffffff;
  padding: 24px 28px;
  position: relative;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.appointment-modal-header h3 {
  margin: 0 0 6px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.appointment-modal-header p {
  margin: 0;
  font-size: 13px;
  opacity: 0.92;
  line-height: 1.4;
}

.appointment-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.appointment-modal-close:hover {
  background: rgba(255, 255, 255, 0.35);
}

.appointment-modal-body {
  padding: 24px 28px 28px;
}

.appointment-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.appointment-form-grid .full-width {
  grid-column: 1 / -1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e2e2df;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: #fdfdfd;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(241, 98, 28, 0.15);
}

.appointment-submit-btn {
  width: 100%;
  padding: 14px;
  margin-top: 10px;
  border: none;
  border-radius: 8px;
  background: var(--orange);
  color: #ffffff;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.15s ease;
}

.appointment-submit-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

/* ===== ROI & Eligibility Modals ===== */
.info-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.info-modal-overlay.open {
  display: flex !important;
}

.info-modal {
  background: #ffffff;
  border-radius: 16px;
  max-width: 780px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  animation: modalFadeIn 0.25s ease-out;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.info-modal::-webkit-scrollbar,
.eligibility-table-wrapper::-webkit-scrollbar {
  display: none;
}

.info-modal-header {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  color: #ffffff;
  padding: 22px 28px;
  position: relative;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.info-modal-header h3 {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.info-modal-header p {
  margin: 0;
  font-size: 13px;
  opacity: 0.92;
}

.info-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.info-modal-close:hover {
  background: rgba(255, 255, 255, 0.35);
}

.info-modal-body {
  padding: 24px 28px;
}

/* Eligibility Table */
.eligibility-table-wrapper {
  overflow-x: auto;
  margin-top: 10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.eligibility-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  text-align: left;
}

.eligibility-table th {
  background: #1b1b1b;
  color: #ffffff;
  padding: 12px 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 12px;
}

.eligibility-table th:first-child {
  border-top-left-radius: 8px;
}

.eligibility-table th:last-child {
  border-top-right-radius: 8px;
}

.eligibility-table td {
  padding: 11px 16px;
  border-bottom: 1px solid #eef0eb;
  color: var(--ink);
  vertical-align: middle;
}

.eligibility-table tr:nth-child(even) {
  background: #f9faf8;
}

.eligibility-table tr:hover {
  background: #f1f3ed;
}

.remark-badge {
  display: inline-block;
  background: linear-gradient(180deg, var(--yellow), #F0B400);
  color: var(--ink);
  font-weight: 700;
  font-size: 11.5px;
  padding: 3px 8px;
  border-radius: 4px;
}

/* ROI Box */
.roi-info-box {
  background: #f9f9f7;
  border: 2px solid var(--yellow);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}

.roi-info-box h4 {
  margin: 0 0 10px;
  font-size: 16px;
  color: var(--ink);
  font-weight: 800;
}

.roi-info-box p {
  margin: 0 0 14px;
  font-size: 13.5px;
  color: #555;
  line-height: 1.55;
}

.roi-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  transition: filter 0.2s ease, transform 0.15s ease;
}

.roi-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

/* ===== Custom ROI Calculator ===== */
.roi-calculator {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.roi-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.roi-tab {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.roi-tab.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.roi-head h4 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 800;
}

.roi-head p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.roi-panel {
  background: #fafafa;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}

.roi-panel h5 {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 800;
  color: var(--orange-dark);
}

.roi-field {
  margin-bottom: 10px;
}

.roi-field label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: #555;
  margin-bottom: 4px;
}

.roi-field-input {
  display: flex;
  align-items: center;
  gap: 8px;
}

.roi-field-input input {
  flex: 1;
  min-width: 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 13px;
  font-family: inherit;
  background: #fff;
}

.roi-field-input input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 2px rgba(241, 98, 28, 0.15);
}

.roi-field-input span {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
}

.roi-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px dashed #ddd;
  font-size: 12.5px;
}

.roi-summary-row.total {
  border-top: 2px solid var(--orange);
  margin-top: 4px;
  padding-top: 10px;
  font-weight: 800;
}

.roi-summary-row strong {
  color: var(--ink);
  text-align: right;
}

.roi-scenarios h5 {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 800;
}

.roi-scenarios-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.roi-scenario-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  font-size: 12px;
}

.roi-scenario-table th,
.roi-scenario-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.roi-scenario-table thead th {
  background: #f3f3f1;
  font-weight: 800;
}

.roi-scenario-table tbody th {
  text-align: left;
  font-weight: 700;
  background: #fafafa;
}

.roi-footnote {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

.info-modal .faq-grid-2col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-modal .faq-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.info-modal .faq-btn {
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: 0.3px;
  padding: 14px 44px 14px 18px;
  border-radius: 8px;
  position: relative;
  transition: background 0.2s ease;
}

.info-modal .faq-btn:hover {
  background: #ffd633;
}

.info-modal .faq-btn::after {
  content: '+';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  transition: transform 0.2s ease;
}

.info-modal .faq-card.open .faq-btn {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.info-modal .faq-card.open .faq-btn::after {
  transform: translateY(-50%) rotate(45deg);
}

.info-modal .faq-answer {
  display: none;
  background: #fff8e0;
  border-radius: 0 0 8px 8px;
  padding: 14px 18px;
  font-size: 13px;
  line-height: 1.6;
  color: #333333;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.info-modal .faq-card.open .faq-answer {
  display: block;
}


/* ==========================================
   ===== Comprehensive Responsive Media Queries =====
   ========================================== */

/* Laptop & Tablet (Max-width: 1024px) */
@media (max-width: 1024px) {
  header.site {
    padding: 10px 24px;
    min-height: 70px;
    gap: 10px;
  }

  .logo img {
    height: 48px;
  }

  .hero-wrap {
    padding: 30px 24px;
  }

  .series-section {
    padding: 40px 24px 48px;
  }

  .partnership-section {
    padding: 40px 24px;
  }

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

/* Tablet & Mobile (Max-width: 980px) */
@media (max-width: 980px) {
  header.site {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
    padding: 12px 20px;
    min-height: 0;
    justify-content: space-between;
  }

  .logo img {
    height: 43px;
  }

  nav.main {
    order: 3;
    width: 100%;
    grid-column: auto;
    justify-content: space-evenly;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    padding-right: 0;
  }

  nav.main a {
    font-size: 15px;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }

  .hero-wrap {
    padding: 24px 16px;
  }

  .video-panel,
  .hero-slider {
    max-height: 380px;
    aspect-ratio: 16/9;
  }

  .video-panel video,
  .hero-slider video,
  .hero-slider img {
    max-height: 380px;
    object-fit: cover;
  }

  .roi-grid {
    grid-template-columns: 1fr !important;
  }

  .feat-strip {
    padding: 24px 0 0;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .why-carousel {
    padding: 0 16px;
    flex-direction: column;
  }

  .why-track {
    grid-template-columns: 1fr !important;
    width: 100%;
  }

  .why-carousel-container {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .why-carousel-wrap {
    padding: 0 36px;
  }

  .why-carousel-container .why-card:not(:first-child) {
    display: none;
  }

  .why-modal {
    grid-template-columns: 1fr !important;
  }

  .faq-grid {
    grid-template-columns: 1fr !important;
  }

  .foot-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  .hero-copy h1 {
    font-size: 32px;
    line-height: 1.25;
  }

  .franchise-grid {
    grid-template-columns: 1fr !important;
  }

  .form-row {
    grid-template-columns: 1fr !important;
  }

  .login-section {
    grid-template-columns: 1fr !important;
  }

  .partners-strip {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 24px 20px;
  }

  .partner-block:last-child {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .partner-logos {
    gap: 20px 24px;
  }

  .partner-logos img {
    height: 46px;
    max-width: 130px;
  }

  .franchise-title,
  .series-heading,
  .faq-header-title,
  .why-header-wrapper h2,
  .section-title {
    letter-spacing: 2px;
    font-size: 20px;
  }

  .franchise-title::before,
  .franchise-title::after,
  .series-heading::before,
  .series-heading::after,
  .faq-header-title::before,
  .faq-header-title::after,
  .why-header-wrapper h2::before,
  .why-header-wrapper h2::after,
  .section-title::before,
  .section-title::after {
    display: none !important;
  }

  .series-grid {
    grid-template-columns: 1fr !important;
  }

  .partnership-section {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }

  .appointment-form-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Mobile Screens (Max-width: 768px) */
@media (max-width: 768px) {
  header.site {
    padding: 10px 16px;
    gap: 10px 14px;
  }

  .logo img {
    height: 40px;
  }

  nav.main a.nav-link {
    font-size: 14px;
    padding: 5px 8px;
  }

  .hotline {
    font-size: 12px;
    padding: 5px 11px;
  }

  .hero-copy h1 {
    font-size: 28px;
  }

  .hero-copy p {
    font-size: 14px;
  }

  .steps {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px;
  }

  .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    padding: 10px 6px;
  }

  .step .ic {
    margin: 0;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }

  .step p {
    font-size: 11px;
  }

  .plans {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }

  .appointment-modal,
  .info-modal {
    padding: 0;
    max-height: 94vh;
    width: 95% !important;
  }

  .appointment-modal-header,
  .info-modal-header {
    padding: 18px 20px;
  }

  .appointment-modal-body,
  .info-modal-body {
    padding: 18px 16px;
  }

  .eligibility-table th,
  .eligibility-table td {
    padding: 9px 12px;
    font-size: 12px;
  }
}

/* Small Mobile Screens (Max-width: 480px) */
@media (max-width: 480px) {
  header.site {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 12px 14px;
  }

  .logo {
    flex: 1 1 auto;
    min-width: 0;
  }

  .logo img {
    height: 34px;
  }

  .hotline {
    margin-top: 0;
    flex: 0 0 auto;
  }

  nav.main {
    order: 3;
    width: 100%;
    gap: 0;
    justify-content: center;
  }

  .hero-copy h1 {
    font-size: 24px;
  }

  .login-panel {
    padding: 22px 16px;
  }

  .control-panel {
    padding: 14px;
  }

  .confirm-row {
    font-size: 11.5px;
    padding: 8px 10px;
  }

  .start-btn {
    font-size: 14px;
    padding: 12px;
  }

  .roi-btn {
    width: 100%;
    padding: 12px;
  }
}

/* ===== Mobile-First Responsive Enhancements ===== */
@media (max-width: 1024px) {
  .why-carousel-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-carousel-container .why-card:not(:first-child) {
    display: block;
  }

  .why-carousel-container .why-card:nth-child(n + 3) {
    display: none;
  }
}

@media (max-width: 900px) {
  .why-carousel-container {
    grid-template-columns: 1fr !important;
  }

  .why-carousel-container .why-card:not(:first-child) {
    display: none !important;
  }

  .feat-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    justify-items: stretch;
    gap: 14px 16px;
    margin-top: 20px;
    padding: 22px 20px 0;
  }

  .feat-item {
    flex: none;
    width: 100%;
    max-width: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    min-width: 0;
  }

  .feat-ic {
    flex: 0 0 52px;
  }

  .feat-item .label {
    flex: 1;
    text-align: left;
    line-height: 1.35;
  }

  .store-badges {
    grid-column: 1 / -1;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-top: 6px;
  }

  .store-badge {
    width: 100%;
    max-width: none;
    justify-content: center;
  }

  .franchise-hero {
    padding: 28px 16px 36px;
  }

  .login-section {
    padding: 36px 16px;
  }

  .partnership-section {
    padding: 40px 16px;
  }

  .partnership-copy h2 {
    font-size: clamp(24px, 6vw, 34px);
  }

  footer.site {
    padding: 28px 16px 14px;
  }

  .faq-wrap,
  #faq {
    padding-left: 16px;
    padding-right: 16px;
  }

  .faq-grid-2col {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .hero-grid > div:last-child {
    display: flex;
    flex-direction: column;
  }

  .login-panel,
  .dashboard-panel,
  .control-panel {
    order: 1;
    margin-bottom: 20px;
  }

  .hero-copy {
    order: 2;
    text-align: center;
  }

  .hero-copy p {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .dash-links {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px 16px;
  }

  .dash-links-col {
    flex: 1 1 0;
    min-width: 0;
  }

  .dash-links-left {
    align-items: flex-start;
    text-align: left;
  }

  .dash-links-right {
    align-items: flex-end;
    text-align: right;
    margin-left: auto;
  }

  .dash-links a {
    white-space: nowrap;
    font-size: 12.5px;
    min-height: 40px;
    padding: 2px 0;
    display: inline-flex;
    align-items: center;
  }

  .contact-sales {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .submit-btn {
    width: 100%;
    justify-self: stretch;
    min-height: 48px;
  }

  .login-section h2 {
    font-size: 26px;
  }

  .why-carousel-wrap {
    padding: 0 36px;
  }

  .why-card {
    height: 220px;
  }

  .why-modal-overlay {
    padding: 12px;
  }

  .why-modal-text {
    padding: 22px 18px;
  }

  .why-modal-text h2 {
    font-size: 22px;
  }

  .info-modal,
  .appointment-modal {
    width: calc(100% - 16px) !important;
    max-height: 92vh;
  }

  .info-modal-body,
  .appointment-modal-body {
    padding: 18px 14px;
  }

  .info-modal-header,
  .appointment-modal-header {
    padding: 18px 16px;
  }

  .roi-tabs {
    gap: 6px;
  }

  .roi-tab {
    padding: 10px 14px;
    min-height: 44px;
  }

  .series-specs-scroll,
  .eligibility-table-wrapper,
  .roi-scenarios-scroll {
    -webkit-overflow-scrolling: touch;
  }

  .series-specs-table {
    min-width: 640px;
    font-size: 12px;
  }

  .hero-slider-arrow {
    width: 44px;
    height: 44px;
  }

  .page-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 480px) {
  .hotline .txt small {
    display: none;
  }

  .hotline .txt strong {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .hotline {
    padding: 6px 10px;
    gap: 6px;
  }

  .hotline .icn {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  nav.main {
    gap: 0;
  }

  nav.main a,
  nav.main a.nav-link {
    font-size: 13px;
    padding: 8px 6px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .feat-item {
    flex: none;
    width: 100%;
    max-width: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    min-width: 0;
  }

  .feat-ic {
    flex: 0 0 52px;
  }

  .feat-item .label {
    flex: 1;
    text-align: left;
    line-height: 1.35;
  }

  .store-badges {
    flex-direction: column;
    align-items: center;
  }

  .store-badge {
    width: 100%;
    max-width: 220px;
    justify-content: center;
    min-height: 44px;
  }

  .hero-wrap {
    padding: 18px 12px;
  }

  .hero-copy h1 {
    font-size: 22px;
  }

  .why-carousel-wrap {
    padding: 0 36px;
  }

  .why-nav-arrow {
    width: 28px;
    height: 42px;
    font-size: 22px;
  }

  .why-card {
    height: 200px;
  }

  .faq-btn {
    font-size: 11.5px;
    padding: 14px 12px;
    letter-spacing: 0.4px;
  }

  .franchise-copy h3 {
    font-size: 18px;
  }

  .partnership-copy h2 {
    font-size: 24px;
  }

  .p-card {
    padding: 16px 18px;
  }

  .login-panel input,
  .login-form input,
  .franchise-form input,
  .franchise-form textarea,
  .login-btn,
  .faq-btn,
  .submit-btn {
    min-height: 48px;
    font-size: 16px;
  }

  .login-btn,
  .start-btn.active {
    min-height: 48px;
  }

  .foot-grid {
    gap: 32px;
    text-align: center;
    margin-bottom: 28px;
  }

  .foot-grid > div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .foot-grid p {
    max-width: 320px;
  }

  .hours-row {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 5px 0;
    justify-content: space-between;
    gap: 12px;
  }

  .contact-row {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 12px;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    gap: 12px;
  }

  .contact-row .ic {
    margin-top: 2px;
    flex-shrink: 0;
  }

  .copyright {
    font-size: 11px;
    line-height: 1.55;
    padding-top: 18px;
  }

  #why,
  #faq {
    padding-left: 12px;
    padding-right: 12px;
  }

  .series-section {
    padding: 32px 12px 40px;
  }

  .series-sub {
    font-size: 13.5px;
    margin-bottom: 24px;
  }
}

@media (max-width: 360px) {
  .logo img {
    height: 30px;
    max-width: min(180px, 46vw);
  }

  nav.main a,
  nav.main a.nav-link {
    font-size: 12px;
    letter-spacing: 0;
  }

  .hero-copy h1 {
    font-size: 20px;
  }

  .partner-block:last-child .partner-logos {
    flex-wrap: wrap !important;
  }
}

@media (max-width: 540px) {
  .steps {
    grid-template-columns: 1fr !important;
  }

  .step {
    flex-direction: row;
    text-align: left;
    padding: 10px 14px;
  }
}

/* ===== Mobile layout polish (≤768px) — desktop unchanged ===== */
@media (max-width: 768px) {
  .partners-strip {
    padding: 24px 16px;
    gap: 28px;
  }

  .partner-block {
    width: 100%;
    max-width: 420px;
  }

  .partner-block:last-child {
    flex: none;
    width: 100%;
    max-width: 100%;
  }

  .partner-block:last-child .partner-logos {
    flex-wrap: wrap !important;
    justify-content: center;
    align-items: center;
    gap: 18px 22px;
  }

  .partner-logos {
    justify-content: center;
    align-items: center;
  }

  .partner-logos img {
    height: 48px;
    max-width: 130px;
  }

  #why {
    padding-left: 16px;
    padding-right: 16px;
  }

  .why-carousel-wrap {
    width: 100%;
    max-width: 100%;
    padding: 0 36px;
    box-sizing: border-box;
  }

  .why-carousel-container {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .why-card {
    width: 100%;
  }

  .why-nav-arrow.left {
    left: 0;
  }

  .why-nav-arrow.right {
    right: 0;
  }

  footer.site {
    padding: 36px 20px 18px;
  }
}

@media (max-width: 768px) {
  .series-spec-modal {
    width: calc(100% - 16px);
    max-height: 92vh;
  }

  .series-spec-modal-header {
    padding: 18px 20px;
  }

  .series-spec-modal-body {
    padding: 16px 14px 20px;
  }
}