/* =========================================================
   Shiva Property Broker — Stylesheet
   Indian local-style UI with saffron + deep blue + cream.
   Dark/Light theme via CSS variables.
   ========================================================= */

/* ----------- Theme tokens ----------- */
:root {
  --saffron: #FF6B1A;
  --saffron-soft: #FFE4D0;
  --saffron-deep: #E0541A;
  --blue: #1E3A8A;
  --blue-soft: #DBE5FF;
  --red: #D32F2F;
  --green: #25D366;
  --green-deep: #128C7E;
  --gold: #C9A227;

  --bg: #FFF8F0;
  --bg-alt: #FFEFD9;
  --surface: #FFFFFF;
  --text: #1F2937;
  --text-muted: #6B7280;
  --border: #F0D9B8;
  --border-strong: #E8B777;
  --shadow-sm: 0 2px 6px rgba(31, 41, 55, 0.06);
  --shadow-md: 0 8px 24px rgba(31, 41, 55, 0.08);
  --shadow-lg: 0 18px 40px rgba(31, 41, 55, 0.12);
  --radius: 12px;
  --radius-lg: 18px;

  --ff-hi: 'Hind', 'Noto Sans Devanagari', system-ui, sans-serif;
  --ff-en: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --ff: var(--ff-hi);

  --container: 1180px;
}

[data-theme="dark"] {
  --bg: #0E1422;
  --bg-alt: #131A2C;
  --surface: #1A2236;
  --text: #F1F5F9;
  --text-muted: #94A3B8;
  --border: #25314C;
  --border-strong: #3B4B73;
  --saffron-soft: #3A2A18;
  --blue-soft: #1A2447;
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 18px 40px rgba(0, 0, 0, 0.55);
}

[lang="en"] body { --ff: var(--ff-en); }

/* ----------- Reset ----------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.25s ease, color 0.25s ease;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--saffron); }
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.muted { color: var(--text-muted); }

/* Honeypot — hidden field */
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* ----------- Topbar (Indian local feel) ----------- */
.topbar {
  background: linear-gradient(90deg, var(--saffron) 0%, var(--saffron-deep) 50%, var(--blue) 100%);
  color: #fff;
  font-size: 13px;
  padding: 6px 0;
}
.topbar a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.topbar-sep { opacity: 0.7; }
.topbar-item { white-space: nowrap; }

/* ----------- Header ----------- */
.site-header {
  background: var(--surface);
  border-bottom: 3px solid var(--saffron);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--saffron), var(--red));
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  border: 2px solid #fff8;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-title { font-size: 18px; color: var(--blue); font-weight: 700; }
[data-theme="dark"] .brand-title { color: #FFB17A; }
.brand-sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

.nav {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav a {
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
  transition: background 0.15s, color 0.15s;
}
.nav a:hover { background: var(--saffron-soft); color: var(--saffron-deep); }
.nav a.nav-cta {
  background: var(--saffron);
  color: #fff !important;
  margin-left: 6px;
  font-weight: 600;
}
.nav a.nav-cta:hover { background: var(--saffron-deep); }

.header-tools { display: flex; gap: 8px; align-items: center; }
.icon-btn {
  background: transparent;
  border: 1.5px solid var(--border-strong);
  color: var(--text);
  cursor: pointer;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  transition: all 0.15s;
}
.icon-btn:hover { background: var(--saffron-soft); border-color: var(--saffron); }
.nav-toggle { display: none; }

/* ----------- Buttons ----------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  border: 2px solid transparent;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.05s ease, background 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(180deg, var(--saffron), var(--saffron-deep));
  color: #fff;
  box-shadow: 0 6px 14px rgba(255, 107, 26, 0.35);
}
.btn-primary:hover { box-shadow: 0 10px 22px rgba(255, 107, 26, 0.45); color: #fff; }
.btn-whatsapp {
  background: linear-gradient(180deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 6px 14px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover { color: #fff; box-shadow: 0 10px 22px rgba(37, 211, 102, 0.45); }
.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--saffron-soft); border-color: var(--saffron); }
.btn-link {
  background: transparent;
  border: none;
  color: var(--text-muted);
  text-decoration: underline;
  padding: 12px 8px;
}
.btn[hidden] { display: none; }

/* ----------- Hero ----------- */
.hero {
  position: relative;
  padding: 56px 0 40px;
  background:
    radial-gradient(circle at 10% 0%, var(--saffron-soft) 0%, transparent 45%),
    radial-gradient(circle at 95% 100%, var(--blue-soft) 0%, transparent 50%),
    var(--bg);
  overflow: hidden;
}
.hero-decor {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
}
.hero-decor-1 { width: 320px; height: 320px; background: var(--saffron); top: -80px; left: -80px; }
.hero-decor-2 { width: 360px; height: 360px; background: var(--blue); bottom: -120px; right: -100px; }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}
.hero-content { position: relative; z-index: 1; }

.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
  border: 1.5px solid var(--saffron);
  background: var(--saffron-soft);
  color: var(--saffron-deep);
}
.badge-saffron { letter-spacing: 0.2px; }

.hero-title {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
  margin: 0 0 14px;
  color: var(--blue);
  font-weight: 700;
}
[data-theme="dark"] .hero-title { color: #FFB17A; }
.hero-subtitle {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 0 26px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.trust-list {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
}
.trust-list li {
  background: var(--surface);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
}

.hero-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border-strong);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.hero-card::before {
  content: "";
  position: absolute; inset: 6px;
  border: 2px dashed var(--saffron);
  border-radius: calc(var(--radius-lg) - 6px);
  pointer-events: none;
  opacity: 0.4;
}
.hero-banner-img {
  width: 100%;
  display: block;
  border-bottom: 2px solid var(--border);
}

/* ----- Hero Slider ----- */
/* Height is anchored to the first slide's natural aspect ratio so it
   renders identically to the original single <img class="hero-banner-img">
   layout. Other slides are absolutely positioned overlays that fill the
   space defined by the first slide. */
.hero-slider {
  position: relative;
  width: 100%;
  background: var(--bg-alt);
  border-bottom: 2px solid var(--border);
  overflow: hidden;
}
.hero-slides {
  position: relative;
}
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  pointer-events: none;
}
.hero-slide:first-child {
  position: relative;
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.hero-slide:first-child img {
  height: auto;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  color: var(--blue);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transition: opacity 0.2s ease, background 0.2s ease;
}
.slider-arrow:hover { background: #fff; }
.hero-slider:hover .slider-arrow,
.hero-slider:focus-within .slider-arrow {
  opacity: 1;
}
.slider-prev { left: 10px; }
.slider-next { right: 10px; }
.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 20px;
  backdrop-filter: blur(2px);
}
.slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.55);
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.slider-dot:hover { background: rgba(255, 255, 255, 0.85); }
.slider-dot.is-active {
  background: var(--saffron);
  transform: scale(1.25);
}
@media (max-width: 540px) {
  .slider-arrow { width: 30px; height: 30px; font-size: 18px; }
  .slider-dots { bottom: 8px; padding: 4px 8px; gap: 6px; }
  .slider-dot { width: 7px; height: 7px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
}
.hero-card-foot {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--bg-alt);
}
.owner-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--saffron);
  box-shadow: var(--shadow-sm);
}
.owner-meta { display: flex; flex-direction: column; gap: 2px; }
.owner-meta strong { color: var(--blue); font-size: 16px; }
[data-theme="dark"] .owner-meta strong { color: #FFB17A; }
.owner-meta small { color: var(--text-muted); font-size: 13px; }

/* ----------- Sections ----------- */
.section { padding: 60px 0; }
.section-soft { background: var(--bg-alt); }
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 36px;
}
.section-head.left { text-align: left; margin: 0 0 22px; }
.section-head h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin: 0 0 8px;
  color: var(--blue);
  font-weight: 700;
}
[data-theme="dark"] .section-head h2 { color: #FFB17A; }
.section-head p { color: var(--text-muted); margin: 0 0 14px; }
.head-rule {
  display: inline-block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--blue));
  border-radius: 4px;
}

/* ----------- Services Grid ----------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.service-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  padding: 20px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--saffron), var(--red));
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--saffron);
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--saffron-soft);
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 14px;
}
.service-card h3 { margin: 0 0 6px; font-size: 18px; color: var(--blue); }
[data-theme="dark"] .service-card h3 { color: #FFB17A; }
.service-card p { margin: 0; color: var(--text-muted); font-size: 14px; }

/* ----------- Form ----------- */
.form-card {
  background: var(--surface);
  border: 2px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 28px;
  max-width: 880px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  position: relative;
}
.form-card::before {
  content: "";
  position: absolute; inset: 6px;
  border: 1.5px dashed var(--saffron);
  border-radius: calc(var(--radius-lg) - 6px);
  pointer-events: none;
  opacity: 0.25;
}

.stepper {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.step {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--bg-alt);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  border: 1.5px solid var(--border);
  transition: all 0.2s;
}
.step.is-active {
  background: linear-gradient(180deg, var(--saffron), var(--saffron-deep));
  color: #fff;
  border-color: var(--saffron-deep);
  box-shadow: var(--shadow-sm);
}
.step.is-done { background: var(--blue-soft); color: var(--blue); border-color: var(--blue); }
[data-theme="dark"] .step.is-done { color: #BFD0FF; }
.step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  display: grid;
  place-items: center;
  font-weight: 700;
  flex-shrink: 0;
}
.step:not(.is-active):not(.is-done) .step-num { background: var(--surface); }
.step-label { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.step-panel {
  border: none;
  padding: 0;
  margin: 0;
  display: none;
}
.step-panel.is-active { display: block; }

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

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; position: relative; }
.field .label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.field .label em { color: var(--red); font-style: normal; }
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field select,
.field textarea {
  font: inherit;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--border-strong);
  background: var(--surface);
  color: var(--text);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 90px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 4px rgba(255, 107, 26, 0.18);
}
.field.check {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
}
.field.check input { margin-top: 4px; }
.field .err {
  display: none;
  font-style: normal;
  font-size: 12.5px;
  color: var(--red);
  margin-top: 2px;
}
.field .err.is-shown { display: block; }

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.chip input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}
.chip span {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--bg-alt);
  border: 1.5px solid var(--border-strong);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.15s;
}
.chip:hover span { border-color: var(--saffron); }
.chip input:checked + span {
  background: var(--saffron);
  border-color: var(--saffron-deep);
  color: #fff;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.form-actions .btn-link { margin-right: auto; }

.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 14.5px;
  border: 1.5px solid;
}
.form-status.is-success {
  background: #ECFDF5;
  border-color: #34D399;
  color: #065F46;
}
.form-status.is-error {
  background: #FEF2F2;
  border-color: #F87171;
  color: #991B1B;
}
[data-theme="dark"] .form-status.is-success { background: #052E26; color: #6EE7B7; }
[data-theme="dark"] .form-status.is-error { background: #2D0F12; color: #FCA5A5; }

/* ----------- About ----------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: center;
}
.check-list { list-style: none; padding: 0; margin: 16px 0 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 16px;
}
.dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--saffron-soft);
  color: var(--saffron-deep);
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 14px;
  border: 1.5px solid var(--saffron);
}
.about-banners {
  display: grid;
  gap: 12px;
}
.about-banners img {
  width: 100%;
  border-radius: 10px;
  border: 2px solid var(--border-strong);
  box-shadow: var(--shadow-sm);
}

/* ----------- Contact ----------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.contact-card {
  background: var(--surface);
  padding: 22px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-icon {
  font-size: 30px;
  margin-bottom: 8px;
}
.contact-card h4 { margin: 0 0 8px; color: var(--blue); font-size: 16px; }
[data-theme="dark"] .contact-card h4 { color: #FFB17A; }
.contact-card a, .contact-card p { display: block; margin: 4px 0; font-size: 14.5px; color: var(--text); word-break: break-word; }
.contact-card a:hover { color: var(--saffron); }

/* ----------- Footer ----------- */
.footer {
  background: linear-gradient(180deg, var(--blue) 0%, #15296A 100%);
  color: #E2E8F0;
  padding: 40px 0 0;
  margin-top: 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  padding-bottom: 30px;
}
.footer .muted { color: #B5C0D8; font-size: 14px; }
.footer strong { color: #fff; font-size: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: #E2E8F0; }
.footer-links a:hover { color: var(--saffron); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  padding: 14px 0;
  font-size: 13.5px;
  color: #B5C0D8;
}

/* ----------- Floating Action Buttons ----------- */
.fab {
  position: fixed;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
  box-shadow: var(--shadow-lg);
  z-index: 60;
  color: #fff;
  text-decoration: none;
  transition: transform 0.15s ease;
}
.fab:hover { transform: scale(1.07); color: #fff; }
.fab-wa { bottom: 86px; background: linear-gradient(135deg, #25D366, #128C7E); }
.fab-call { bottom: 20px; background: linear-gradient(135deg, var(--saffron), var(--saffron-deep)); }
.fab-wa::after, .fab-call::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0.35;
  animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing {
  0% { transform: scale(0.95); opacity: 0.5; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* ----------- Toast ----------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 70;
  animation: toastIn 0.25s ease;
  max-width: 90%;
  text-align: center;
}
@keyframes toastIn {
  from { opacity: 0; transform: translate(-50%, 8px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* ----------- Responsive ----------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { order: -1; max-width: 520px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav { display: none; position: absolute; top: 100%; right: 16px; flex-direction: column; background: var(--surface); padding: 10px; border-radius: 12px; box-shadow: var(--shadow-lg); border: 1.5px solid var(--border); min-width: 200px; }
  .nav.is-open { display: flex; }
  .nav-toggle { display: inline-flex; }
  .topbar { font-size: 12px; }
  .topbar-sep { display: none; }
  .stepper .step-label { display: none; }
  .stepper .step { justify-content: center; padding: 8px; }
  .form-card { padding: 18px; }
  .hero { padding: 36px 0 28px; }
  .section { padding: 40px 0; }
  .form-actions { flex-direction: column; align-items: stretch; }
  .form-actions .btn { width: 100%; }
  .form-actions .btn-link { margin-right: 0; order: 99; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
