:root {
  --ink: #1c1917;
  --ink-soft: #44403c;
  --paper: #ffffff;
  --white: #ffffff;
  --purple: #ea580c;
  --purple-hot: #fb923c;
  --purple-soft: #fed7aa;
  --purple-deep: #c2410c;
  --orange: #f97316;
  --orange-hot: #fb923c;
  --orange-deep: #ea580c;
  --blue: #c2410c;
  --blue-hot: #f97316;
  --blue-soft: #ffedd5;
  --blue-deep: #9a3412;
  --accent: var(--orange);
  --accent-hot: var(--orange-hot);
  --accent-soft: #ffedd5;
  --accent-deep: var(--orange-deep);
  --cta: var(--orange);
  --cta-deep: var(--orange-deep);
  --info: var(--orange-deep);
  --muted: #78716c;
  --line: rgba(234, 88, 12, 0.18);
  --shadow: 0 18px 40px rgba(194, 65, 12, 0.1);
  --radius: 18px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --nav-h: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0.75rem;
  z-index: 1000;
  background: var(--purple);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  left: 0.75rem;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container-narrow {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

/* ---- Nav ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.brand img {
  height: 42px;
  width: auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: 0.25s ease;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: inline-block;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--purple);
  background: rgba(234, 88, 12, 0.1);
}

.nav-cta {
  margin-left: 0.5rem;
  background: var(--orange) !important;
  color: var(--white) !important;
}

.nav-seller {
  border: 1px solid var(--line);
  font-weight: 600 !important;
}

.nav-seller:hover,
.nav-links a.nav-seller.is-active {
  border-color: var(--purple);
}

.nav-cta:hover,
.nav-links a.nav-cta.is-active {
  background: var(--orange-deep) !important;
  color: var(--white) !important;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.35);
}

.btn-primary:hover {
  background: var(--orange-deep);
  color: var(--white);
}

.btn-ghost {
  background: var(--white);
  color: var(--blue);
  border: 1.5px solid var(--blue);
}

.btn-ghost:hover {
  background: rgba(194, 65, 12, 0.08);
  color: var(--blue-deep);
}

.btn-dark {
  background: var(--purple);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--purple-deep);
  color: var(--white);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  align-items: end;
  color: var(--ink);
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, rgba(234, 88, 12, 0.22), transparent 42%),
    radial-gradient(circle at 12% 80%, rgba(194, 65, 12, 0.16), transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(249, 115, 22, 0.12), transparent 45%),
    linear-gradient(160deg, #ffffff 0%, #fff7ed 48%, #fffbeb 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/images/hero-banner.svg");
  background-size: cover;
  background-position: center right;
  opacity: 0.18;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.hero-paint {
  position: absolute;
  width: 120px;
  height: 160px;
  border-radius: 0 0 60px 60px;
  opacity: 0.55;
  animation: drip 6s ease-in-out infinite;
}

.hero-paint.one { left: 8%; top: -40px; background: var(--purple); animation-delay: 0s; }
.hero-paint.two { left: 22%; top: -60px; width: 70px; background: var(--blue); animation-delay: 1.2s; }
.hero-paint.three { left: 34%; top: -30px; width: 50px; background: var(--orange); animation-delay: 2s; }

@keyframes drip {
  0%, 100% { transform: translateY(0) scaleY(1); }
  50% { transform: translateY(18px) scaleY(1.08); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 5rem;
  max-width: 720px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5vw, 3.75rem);
  line-height: 1.08;
  font-weight: 650;
  margin: 0 0 1.1rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 34rem;
  margin: 0 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(234, 88, 12, 0.2);
}

.hero-stats div strong {
  display: block;
  font-size: 1.35rem;
  font-family: var(--font-display);
  color: var(--purple);
}

.hero-stats div:nth-child(2) strong { color: var(--blue); }
.hero-stats div:nth-child(3) strong { color: var(--orange); }

.hero-stats div span {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ---- Sections ---- */
.section {
  padding: 5rem 0;
  background: var(--white);
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-alt {
  background: #f8fafc;
}

.section-ink {
  background: linear-gradient(135deg, var(--purple) 0%, var(--blue) 55%, var(--blue-deep) 100%);
  color: var(--white);
}

.section-ink .section-head p {
  color: rgba(255, 255, 255, 0.9);
}

/* ---- Banner strip ---- */
.about-banner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.about-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 1rem;
}

.about-banner p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--ink);
}

.about-photo img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
}

/* ---- Vision / Mission / Values ---- */
.vmv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.vmv-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vmv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.vmv-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.15rem;
}

.vmv-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.vmv-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--white);
  background: var(--purple);
}

.vmv-card:nth-child(2) .vmv-icon { background: var(--blue); }
.vmv-card:nth-child(3) .vmv-icon { background: var(--orange); }

/* ---- Why choose / How it works ---- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.feature-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.feature-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
}

.feature-item .num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--purple);
  font-weight: 700;
  font-size: 0.9rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.step {
  position: relative;
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}

.step .step-no {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--orange);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.step:nth-child(2) .step-no { color: var(--purple); }
.step:nth-child(3) .step-no { color: var(--blue); }
.step:nth-child(4) .step-no { color: var(--orange-deep); }

.step h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ---- Services ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(234, 88, 12, 0.4);
  box-shadow: var(--shadow);
}

.service-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eef2f7;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

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

.service-body {
  padding: 1.15rem 1.25rem 1.35rem;
}

.service-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.contact-info {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--purple) 0%, var(--blue) 100%);
  color: var(--white);
}

.contact-info h3 {
  font-family: var(--font-display);
  margin: 0 0 1rem;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 1.25rem;
}

.contact-meta {
  display: grid;
  gap: 1rem;
}

.contact-meta div strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  opacity: 0.9;
  margin-bottom: 0.25rem;
}

.contact-form {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: #f8fafc;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: end;
}

.form-row > * {
  min-width: 0;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select,
.select-wrap select {
  width: 100%;
  max-width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.select-wrap {
  position: relative;
  width: 100%;
  min-width: 0;
}

.select-wrap::after {
  content: "";
  position: absolute;
  right: 0.95rem;
  top: 50%;
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid var(--purple);
  border-bottom: 2px solid var(--purple);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.select-wrap select {
  padding-right: 2.4rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
  min-height: 3.05rem;
  background-image: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
.select-wrap select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.18);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.field-validation-error,
.text-danger {
  color: #c0392b;
  font-size: 0.85rem;
  display: block;
  margin-top: 0.3rem;
}

.input-validation-error,
.form-group input.input-validation-error,
.form-group textarea.input-validation-error,
.form-grid input.input-validation-error,
.rate-mini-form input.input-validation-error {
  border-color: #dc2626 !important;
  background: #fef2f2 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15) !important;
}

.form-group.has-error label,
.rate-mini-form .form-group.has-error label {
  color: #dc2626;
}

.alert {
  padding: 0.9rem 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  font-weight: 500;
}

.alert-success {
  background: rgba(42, 157, 143, 0.12);
  color: #1b6b61;
  border: 1px solid rgba(42, 157, 143, 0.3);
}

.alert-danger {
  background: rgba(192, 57, 43, 0.1);
  color: #922b21;
  border: 1px solid rgba(192, 57, 43, 0.25);
}

/* ---- Social ---- */
.social-row {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  text-align: center;
}

.social-label {
  margin: 0 0 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--muted);
}

.social-links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.social-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-btn svg {
  width: 22px;
  height: 22px;
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(26, 31, 46, 0.2);
}

.social-instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.social-facebook {
  background: #1877f2;
}

.social-linkedin {
  background: #0a66c2;
}

.social-links-footer .social-btn {
  width: 40px;
  height: 40px;
}

.social-links-footer .social-btn svg {
  width: 18px;
  height: 18px;
}

/* ---- Footer ---- */
.site-footer {
  background: #fff;
  color: var(--muted);
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  font-weight: 600;
}

.footer-brand img {
  height: 36px;
}

.footer-seo {
  margin: 0;
  max-width: 52rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
}

.footer-links a {
  color: var(--purple);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-seo-pages {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(234, 88, 12, 0.12);
}

.seo-body,
.legal-card,
.portal-sheet,
.contact-form {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.seo-body h2,
.seo-body h3 {
  color: var(--ink);
  margin: 1.4rem 0 0.5rem;
}

.city-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.city-chips li {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(234, 88, 12, 0.08);
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.9rem;
}

.city-chips a {
  color: inherit;
  text-decoration: none;
}

.seo-hero {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 14px;
  margin: 0.5rem 0 1.25rem;
}

.seo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.seo-gallery img,
.seo-body img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem 1.1rem;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--orange);
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0.7rem 0 0.15rem;
  color: var(--muted);
}

/* Legal pages */
.legal-page {
  padding-top: 2rem;
}

.legal-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem 2rem;
  box-shadow: var(--shadow);
  max-width: 860px;
  margin: 0 auto;
}

.legal-card h1 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: -0.02em;
}

.legal-updated {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 1.25rem;
}

.legal-card h2 {
  margin: 1.5rem 0 0.55rem;
  font-size: 1.15rem;
  color: var(--ink);
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.65;
}

.legal-card ul {
  margin: 0.4rem 0 0.8rem;
  padding-left: 1.2rem;
}

.legal-card a {
  color: var(--purple);
  font-weight: 600;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.75rem;
}

/* ---- Reveal motion ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Mobile ---- */
@media (max-width: 960px) {
  .about-banner,
  .contact-grid,
  .vmv-grid,
  .services-grid,
  .feature-grid,
  .steps {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  .container-narrow {
    width: min(1120px, calc(100% - 1.25rem));
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1rem 1.1rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    display: none;
    max-height: calc(100dvh - var(--nav-h));
    overflow-y: auto;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 0.85rem 1rem;
    border-radius: 12px;
  }

  .nav-cta,
  .nav-seller {
    margin-left: 0;
    text-align: center;
  }

  .hero {
    min-height: 0;
  }

  .hero-inner {
    padding: 2.25rem 0 2.5rem;
    max-width: none;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }

  .hero-lead {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }

  .hero-actions {
    gap: 0.6rem;
  }

  .hero-actions .btn {
    flex: 1 1 calc(50% - 0.6rem);
    justify-content: center;
    text-align: center;
    min-height: 46px;
    padding: 0.7rem 0.9rem;
  }

  .hero-stats {
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .hero-paint {
    display: none;
  }

  .section {
    padding: 2.6rem 0;
  }

  .section-head {
    margin-bottom: 1.4rem;
  }

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

  .finder-card,
  .contact-form,
  .rates-panel,
  .empty-panel {
    padding: 1rem 1rem 1.15rem;
    border-radius: 14px;
  }

  .finder-actions {
    flex-direction: column;
  }

  .finder-actions .btn {
    width: 100%;
  }

  .dealer-card {
    flex-direction: column;
    gap: 0.75rem;
  }

  .city-chips {
    justify-content: flex-start;
  }

  .footer-inner {
    text-align: left;
  }
}

/* ---- Floating call / WhatsApp ---- */
.float-actions {
  position: fixed;
  right: 1.1rem;
  bottom: 1.4rem;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 10px 24px rgba(26, 26, 30, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: floatPulse 2.4s ease-in-out infinite;
}

.float-btn svg {
  width: 26px;
  height: 26px;
}

.float-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 28px rgba(26, 26, 30, 0.28);
}

.float-call {
  background: var(--orange);
}

.float-wa-chat {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

.float-wa-label {
  background: #fff;
  color: #128c7e;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(26, 26, 30, 0.16);
  white-space: nowrap;
}

.float-whatsapp {
  background: #25d366;
  animation-name: floatPulseGreen;
}

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 10px 24px rgba(26, 26, 30, 0.22); }
  50% { box-shadow: 0 10px 24px rgba(26, 26, 30, 0.22), 0 0 0 10px rgba(234, 88, 12, 0.14); }
}

@keyframes floatPulseGreen {
  0%, 100% { box-shadow: 0 10px 24px rgba(26, 26, 30, 0.22); }
  50% { box-shadow: 0 10px 24px rgba(26, 26, 30, 0.22), 0 0 0 10px rgba(37, 211, 102, 0.18); }
}

/* Compact today's rate list cards (shown in 2–3 places) */
.rate-mini-card {
  max-width: 720px;
  margin: 1.25rem auto 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.15rem 1.1rem;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.section-soft .rate-mini-card {
  margin-top: 0;
}

.rate-mini-top {
  margin-bottom: 0.75rem;
}

.rate-download-badge {
  display: inline-flex;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.rate-mini-card h3 {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.25;
}

.rate-mini-card .rate-mini-top > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.rate-mini-fields {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0.65rem;
  align-items: end;
}

.rate-mini-form .form-group {
  margin-bottom: 0;
}

.rate-mini-form .form-group label {
  font-size: 0.78rem;
  margin-bottom: 0.25rem;
}

.rate-mini-form .form-group input {
  padding: 0.6rem 0.75rem;
  font-size: 0.92rem;
  border-radius: 10px;
}

.rate-mini-btn {
  padding: 0.65rem 1.1rem;
  white-space: nowrap;
  font-size: 0.92rem;
}

.section-soft {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

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

  .rate-mini-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .float-actions {
    right: 0.85rem;
    bottom: 1rem;
  }

  .float-btn {
    width: 50px;
    height: 50px;
  }

  .float-btn svg {
    width: 22px;
    height: 22px;
  }

  .float-wa-label {
    display: none;
  }
}

/* ---- Aggregator marketplace ---- */
.subhead {
  margin: 2rem 0 1rem;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.catalog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.catalog-media {
  aspect-ratio: 16 / 10;
  background: #eef2ff;
  overflow: hidden;
}

.catalog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-ph {
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--blue));
}

.catalog-ph-alt {
  background: linear-gradient(135deg, var(--orange), var(--purple));
}

.catalog-body {
  padding: 0.95rem 1.05rem 1.15rem;
}

.catalog-body h3 {
  margin: 0.35rem 0 0.25rem;
  font-size: 1.05rem;
}

.catalog-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.chip {
  display: inline-flex;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: rgba(234, 88, 12, 0.1);
  color: var(--purple);
  font-size: 0.75rem;
  font-weight: 600;
}

.finder-card,
.rates-panel,
.empty-panel,
.portal-sheet {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  box-shadow: var(--shadow);
}

.finder-card {
  max-width: 760px;
  width: 100%;
  margin: 0 auto 1.75rem;
  overflow: hidden;
}

.finder-card .form-row {
  margin-bottom: 0.25rem;
}

.finder-card .form-group {
  margin-bottom: 0.85rem;
}

.finder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.finder-actions .btn {
  min-height: 48px;
}

.finder-hint {
  margin: 0.75rem 0 0;
}

.dealer-distance {
  color: var(--purple);
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0.35rem 0 0.65rem;
}

.empty-panel {
  text-align: center;
  margin-bottom: 1.5rem;
}

.empty-panel p {
  color: var(--muted);
}

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

.dealer-card {
  display: flex;
  gap: 1rem;
  padding: 1.15rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  align-items: flex-start;
}

.dealer-card.is-selected {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.12);
}

.dealer-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--purple));
  flex-shrink: 0;
}

.dealer-card h3 { margin: 0 0 0.35rem; }
.dealer-card p { margin: 0 0 0.85rem; color: var(--muted); font-size: 0.92rem; }

.rates-panel { margin-top: 1.5rem; }
.rates-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.rates-panel-head h3 { margin: 0; }
.muted { color: var(--muted); }

.public-table { overflow-x: auto; }
.public-table table { width: 100%; border-collapse: collapse; }
.public-table th,
.public-table td {
  text-align: left;
  padding: 0.7rem 0.55rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.public-table th {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.download-inline {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0.75rem;
  align-items: end;
  margin-top: 1rem;
}

.inquiry-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.mini-steps {
  margin: 1.25rem 0 0;
  padding-left: 1.15rem;
  color: var(--ink-soft);
}

.portal-hero {
  padding: 3.5rem 0 2rem;
  background:
    radial-gradient(600px 240px at 10% 0%, rgba(249, 115, 22, 0.16), transparent 55%),
    radial-gradient(500px 220px at 90% 20%, rgba(234, 88, 12, 0.14), transparent 50%),
    #fff7ed;
}

.portal-hero h1 {
  font-family: var(--font-display);
  margin: 0.25rem 0 0.4rem;
}

.status-pill {
  display: inline-flex;
  margin-top: 0.75rem;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  background: #e2e8f0;
  color: #334155;
}

.status-pill.sent, .status-pill.assigned, .status-pill.packed { background: #ffedd5; color: #9a3412; }
.status-pill.approved, .status-pill.active, .status-pill.delivered, .status-pill.paid { background: #d1fae5; color: #047857; }
.status-pill.pending, .status-pill.draft, .status-pill.unpaid, .status-pill.confirmed { background: #fff7ed; color: #c2410c; }
.status-pill.rejected, .status-pill.cancelled, .status-pill.expired { background: #fee2e2; color: #b91c1c; }
.status-pill.dispatched, .status-pill.quoted { background: #ffedd5; color: #ea580c; }

.totals { margin: 1.15rem 0; display: grid; gap: 0.4rem; max-width: 280px; margin-left: auto; }
.totals div { display: flex; justify-content: space-between; color: var(--muted); }
.totals .grand { color: var(--ink); font-size: 1.15rem; }
.notes { background: #f8fafc; padding: 0.85rem 1rem; border-radius: 12px; }
.portal-actions { margin-top: 1.25rem; }

.track-steps {
  display: flex;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex-wrap: wrap;
}
.track-steps li {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: #f1f5f9;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}
.track-steps li.done {
  background: var(--purple);
  color: #fff;
}

.timeline { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.timeline li {
  padding: 0.7rem 0 0.7rem 1rem;
  border-left: 3px solid var(--purple-soft);
}
.timeline span { display: block; color: var(--muted); font-size: 0.85rem; }

.flow-chart {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 0;
}

.flow-node {
  flex: 1 1 140px;
  max-width: 180px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 0.85rem 1.1rem;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
}

.flow-node-end {
  border-color: rgba(249, 115, 22, 0.35);
  background: linear-gradient(180deg, #fff, #fff7ed);
}

.flow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--purple);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.55rem;
}

.flow-node-end .flow-num {
  background: var(--orange);
}

.flow-node strong {
  display: block;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.flow-node p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

.flow-node a {
  display: inline-block;
  margin-top: 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--purple);
}

.flow-arrow {
  flex: 0 0 28px;
  align-self: center;
  height: 14px;
  background:
    linear-gradient(90deg, var(--purple-soft), var(--purple)) left center / calc(100% - 8px) 3px no-repeat,
    conic-gradient(from 90deg at 0 50%, var(--purple) 0 50%, transparent 0) right center / 10px 10px no-repeat;
}

.flow-note {
  text-align: center;
  margin: 1.25rem 0 0;
}

@media (max-width: 900px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .inquiry-split, .dealer-grid, .download-inline { grid-template-columns: 1fr; }
  .flow-chart {
    flex-direction: column;
    align-items: center;
  }
  .flow-node {
    max-width: 420px;
    width: 100%;
  }
  .flow-arrow {
    flex: 0 0 28px;
    width: 14px;
    height: 28px;
    background:
      linear-gradient(180deg, var(--purple-soft), var(--purple)) center top / 3px calc(100% - 8px) no-repeat,
      conic-gradient(from 180deg at 50% 0, var(--purple) 0 50%, transparent 0) center bottom / 10px 10px no-repeat;
  }
}

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

  .hero-actions .btn {
    flex: 1 1 100%;
  }

  .contact-form {
    padding: 1rem;
  }

  .public-table {
    margin-inline: -0.25rem;
  }

  .legal-card,
  .portal-sheet {
    padding: 1.1rem 0.95rem 1.35rem;
    border-radius: 14px;
  }

  .seo-cta,
  .portal-actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
  }

  .seo-cta .btn,
  .portal-actions .btn,
  .portal-actions form,
  .portal-actions form .btn {
    width: 100%;
  }

  .totals {
    max-width: none;
    margin-left: 0;
  }

  .seo-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
  }

  .faq-item {
    padding: 0.75rem 0.9rem;
  }
}
