:root {
  --bg: #fbfaf7;
  --cream: #f5efe6;
  --card: #ffffff;
  --line: #e6ded2;
  --text: #182230;
  --muted: #667085;
  --blue: #1357b7;
  --blue-dark: #0a3678;
  --blue-soft: #eaf3ff;
  --sand: #e9dccb;
  --shadow: 0 24px 70px rgba(24,34,48,.10);
  --soft-shadow: 0 14px 40px rgba(24,34,48,.07);
  --radius-xl: 34px;
  --radius-lg: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 0%, rgba(19,87,183,.08), transparent 30%),
    linear-gradient(180deg, #fbfaf7 0%, #f5efe6 100%);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251,250,247,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(230,222,210,.85);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 950;
  letter-spacing: .14em;
  color: var(--blue-dark);
}

.nav-links {
  display: flex;
  gap: 24px;
  color: #364152;
  font-size: 14px;
  font-weight: 700;
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  border: 1px solid transparent;
  cursor: pointer;
  transition: .18s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  box-shadow: 0 14px 30px rgba(19,87,183,.24);
}

.btn-secondary {
  background: #fff;
  color: var(--blue-dark);
  border-color: rgba(19,87,183,.22);
  box-shadow: var(--soft-shadow);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.hero {
  padding: 88px 0 74px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 52px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--blue-soft);
  border: 1px solid rgba(19,87,183,.14);
  color: var(--blue-dark);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

h1 {
  margin: 20px 0 18px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: .96;
  letter-spacing: -.055em;
}

.hero p,
.page-hero p,
.section-copy {
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.point {
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  font-weight: 850;
  font-size: 13px;
}

.product-stage {
  background: linear-gradient(145deg, #fff, #f6efe5);
  border: 1px solid var(--line);
  border-radius: 38px;
  box-shadow: var(--shadow);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.product-stage::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: rgba(19,87,183,.10);
}

.product-card {
  position: relative;
  z-index: 2;
  min-height: 440px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.76);
  border-radius: 30px;
}

.product-card img {
  width: min(430px, 92%);
  filter: drop-shadow(0 28px 36px rgba(24,34,48,.18));
}

.price-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 3;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 14px 16px;
  box-shadow: var(--soft-shadow);
}

.price-badge strong {
  color: var(--blue-dark);
  font-size: 24px;
  display: block;
  line-height: 1;
}

.price-badge span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.section {
  padding: 76px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.kicker {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 12px;
  font-weight: 950;
}

.section-title {
  margin: 10px 0 12px;
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.03;
  letter-spacing: -.04em;
}

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

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

.card {
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--soft-shadow);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  letter-spacing: -.02em;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-weight: 950;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
}

.dark-panel {
  background: var(--text);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 34px;
  box-shadow: var(--shadow);
}

.dark-panel p { color: rgba(255,255,255,.72); }

.info-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.14);
  padding: 13px 0;
  gap: 16px;
}

.info-row strong { color: #fff; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: step;
}

.step {
  counter-increment: step;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.step::before {
  content: "0" counter(step);
  display: block;
  color: var(--blue);
  font-weight: 950;
  font-size: 30px;
  margin-bottom: 16px;
}

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

.faq details {
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
}

.faq summary {
  cursor: pointer;
  font-weight: 850;
}

.faq p {
  color: var(--muted);
  margin: 12px 0 0;
}

.cta-band {
  background: linear-gradient(135deg, #fff, var(--cream));
  border: 1px solid var(--line);
  border-radius: 36px;
  padding: 38px;
  box-shadow: var(--soft-shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.page-hero {
  padding: 58px 0 32px;
}

.page-hero h1 {
  margin: 14px 0 12px;
  font-size: clamp(36px, 4.8vw, 62px);
  line-height: 1;
  letter-spacing: -.045em;
}

.form-wrap {
  padding: 28px 0 84px;
}

.form-layout {
  display: grid;
  grid-template-columns: .74fr 1.26fr;
  gap: 24px;
  align-items: start;
}

.form-aside {
  position: sticky;
  top: 100px;
  background: var(--text);
  color: #fff;
  border-radius: 30px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.form-aside p { color: rgba(255,255,255,.72); }

.form-aside img {
  margin: 22px auto 0;
  max-height: 270px;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(0,0,0,.22));
}

.lead-form {
  background: rgba(255,255,255,.85);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 26px;
  box-shadow: var(--soft-shadow);
}

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

.form-field {
  display: grid;
  gap: 8px;
}

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

label {
  color: #2f3a4b;
  font-weight: 850;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #dcd5ca;
  border-radius: 16px;
  background: #fff;
  padding: 14px 15px;
  color: var(--text);
  font: inherit;
  outline: none;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(19,87,183,.55);
  box-shadow: 0 0 0 4px rgba(19,87,183,.09);
}

.checkbox-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 650;
}

.checkbox-row input {
  width: auto;
  min-height: auto;
  margin-top: 5px;
}

.notice {
  display: none;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #8a4b13;
  border-radius: 18px;
  padding: 15px;
  margin-bottom: 16px;
}

.notice.show { display: block; }

.form-actions {
  margin-top: 20px;
  display: grid;
  gap: 13px;
}

.form-status {
  min-height: 22px;
  font-weight: 800;
}

.form-status.success { color: #0f7a42; }
.form-status.error { color: #b42318; }

.site-footer {
  padding: 34px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 920px) {
  .nav-links { display: none; }
  .hero-grid, .split, .form-layout { grid-template-columns: 1fr; }
  .hero-points, .grid-3, .grid-4, .steps { grid-template-columns: 1fr; }
  .form-aside { position: static; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 24px, var(--max)); }
  .nav { align-items: flex-start; padding: 14px 0; }
  .nav-actions { flex-wrap: wrap; justify-content: flex-end; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .lead-form, .form-aside, .cta-band { border-radius: 22px; padding: 20px; }
}

/* =========================================================
   VILIANTE VISUAL SLIDER HERO V1
   Full-width editorial image slider for Salon / Spa / Gym / Bathroom.
   ========================================================= */

.hero-showcase {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #efe4d5;
  border-bottom: 1px solid var(--line);
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: vilianteHeroFade 24s infinite;
}

.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }
.hero-slide:nth-child(4) { animation-delay: 18s; }

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: vilianteHeroZoom 24s infinite;
}

.hero-slide-salon .hero-slide-bg {
  background-image:
    linear-gradient(90deg, rgba(239, 218, 194, .92), rgba(239, 218, 194, .15)),
    url("/assets/hero-salon.jpg");
}

.hero-slide-spa .hero-slide-bg {
  background-image:
    linear-gradient(90deg, rgba(245, 235, 222, .92), rgba(245, 235, 222, .15)),
    url("/assets/hero-spa.jpg");
}

.hero-slide-gym .hero-slide-bg {
  background-image:
    linear-gradient(90deg, rgba(238, 230, 218, .92), rgba(238, 230, 218, .12)),
    url("/assets/hero-gym.jpg");
}

.hero-slide-bathroom .hero-slide-bg {
  background-image:
    linear-gradient(90deg, rgba(248, 244, 238, .94), rgba(248, 244, 238, .18)),
    url("/assets/hero-bathroom.jpg");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 18, 28, .18), rgba(12, 18, 28, .02) 45%, rgba(12, 18, 28, .22)),
    radial-gradient(circle at 78% 20%, rgba(19, 87, 183, .16), transparent 32%);
}

.hero-showcase-content {
  position: relative;
  z-index: 4;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-showcase h1 {
  margin: 22px 0 18px;
  font-size: clamp(58px, 8vw, 126px);
  line-height: .82;
  letter-spacing: -.075em;
  max-width: 880px;
  color: #ffffff;
  text-shadow: 0 12px 42px rgba(12, 18, 28, .30);
}

.hero-showcase p {
  margin: 0;
  max-width: 530px;
  color: rgba(255,255,255,.90);
  font-size: 20px;
  font-weight: 650;
  text-shadow: 0 8px 24px rgba(12, 18, 28, .22);
}

.hero-showcase .eyebrow {
  background: rgba(255,255,255,.82);
  color: var(--blue-dark);
  backdrop-filter: blur(12px);
}

.hero-showcase .btn-secondary {
  background: rgba(255,255,255,.90);
}

.hero-ghost {
  background: rgba(255,255,255,.14);
  color: #fff;
  border-color: rgba(255,255,255,.34);
  backdrop-filter: blur(10px);
}

.hero-product-float {
  position: absolute;
  z-index: 6;
  right: min(5vw, 70px);
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 26px;
  padding: 14px 18px 14px 12px;
  box-shadow: 0 22px 58px rgba(12, 18, 28, .22);
  backdrop-filter: blur(16px);
}

.hero-product-float img {
  width: 94px;
  max-height: 110px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(12,18,28,.18));
}

.hero-product-float strong {
  display: block;
  color: var(--blue-dark);
  font-size: 26px;
  line-height: 1;
}

.hero-product-float span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  margin-top: 4px;
}

.hero-slider-dots {
  position: absolute;
  z-index: 7;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
}

.hero-slider-dots span {
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.42);
  overflow: hidden;
  position: relative;
}

.hero-slider-dots span::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  animation: vilianteDot 24s infinite;
}

.hero-slider-dots span:nth-child(1)::before { animation-delay: 0s; }
.hero-slider-dots span:nth-child(2)::before { animation-delay: 6s; }
.hero-slider-dots span:nth-child(3)::before { animation-delay: 12s; }
.hero-slider-dots span:nth-child(4)::before { animation-delay: 18s; }

@keyframes vilianteHeroFade {
  0% { opacity: 0; }
  4% { opacity: 1; }
  23% { opacity: 1; }
  27% { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes vilianteHeroZoom {
  0% { transform: scale(1.04); }
  23% { transform: scale(1.10); }
  100% { transform: scale(1.10); }
}

@keyframes vilianteDot {
  0% { transform: scaleX(0); }
  4% { transform: scaleX(0); }
  23% { transform: scaleX(1); }
  27% { transform: scaleX(1); opacity: 0; }
  100% { transform: scaleX(0); opacity: 0; }
}

@media (max-width: 920px) {
  .hero-showcase,
  .hero-showcase-content {
    min-height: 680px;
  }

  .hero-showcase h1 {
    font-size: clamp(48px, 14vw, 82px);
  }

  .hero-product-float {
    right: 18px;
    left: 18px;
    bottom: 76px;
    justify-content: center;
  }

  .hero-slider-dots {
    bottom: 26px;
  }
}

@media (max-width: 620px) {
  .hero-showcase,
  .hero-showcase-content {
    min-height: 720px;
  }

  .hero-showcase-content {
    justify-content: flex-start;
    padding-top: 88px;
  }

  .hero-showcase .hero-actions {
    width: 100%;
  }

  .hero-showcase p {
    font-size: 17px;
  }

  .hero-product-float img {
    width: 72px;
  }
}

/* =========================================================
   VILIANTE MOBILE HERO IMAGE OVERRIDE
   Uses vertical mobile hero images on phones.
   ========================================================= */

@media (max-width: 700px) {
  .hero-slide-salon .hero-slide-bg {
    background-image: url("/assets/hero-salon-mobile.jpg") !important;
    background-position: center center;
  }

  .hero-slide-spa .hero-slide-bg {
    background-image: url("/assets/hero-spa-mobile.jpg") !important;
    background-position: center center;
  }

  .hero-slide-gym .hero-slide-bg {
    background-image: url("/assets/hero-gym-mobile.jpg") !important;
    background-position: center center;
  }

  .hero-slide-bathroom .hero-slide-bg {
    background-image: url("/assets/hero-bathroom-mobile.jpg") !important;
    background-position: center center;
  }

  .hero-slide-nail .hero-slide-bg {
    background-image: url("/assets/hero-nail-mobile.jpg") !important;
    background-position: center center;
  }

  .hero-slide-travel .hero-slide-bg {
    background-image: url("/assets/hero-travel-mobile.jpg") !important;
    background-position: center center;
  }

  .hero-showcase,
  .hero-showcase-content {
    min-height: 780px;
  }

  .hero-showcase-content {
    justify-content: flex-start;
    padding-top: 92px;
    padding-bottom: 150px;
  }

  .hero-showcase h1 {
    font-size: clamp(48px, 16vw, 78px);
    line-height: .86;
    max-width: 100%;
  }

  .hero-showcase p {
    font-size: 17px;
    max-width: 92%;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(8, 12, 20, .70) 0%, rgba(8, 12, 20, .40) 42%, rgba(8, 12, 20, .30) 100%),
      radial-gradient(circle at 50% 18%, rgba(19, 87, 183, .10), transparent 38%);
  }

  .hero-product-float {
    display: none;
  }

  .hero-slider-dots {
    bottom: 24px;
  }

  .hero-slider-dots span {
    width: 28px;
  }
}

/* =========================================================
   VILIANTE FINAL MOBILE HERO FIX
   Force mobile images, compact text, smaller buttons,
   hide floating product card on mobile.
   ========================================================= */

@media (max-width: 900px) {
  .hero-slide-salon .hero-slide-bg {
    background-image: url("/assets/hero-salon-mobile.jpg") !important;
    background-position: center center !important;
  }

  .hero-slide-spa .hero-slide-bg {
    background-image: url("/assets/hero-spa-mobile.jpg") !important;
    background-position: center center !important;
  }

  .hero-slide-gym .hero-slide-bg {
    background-image: url("/assets/hero-gym-mobile.jpg") !important;
    background-position: center center !important;
  }

  .hero-slide-bathroom .hero-slide-bg {
    background-image: url("/assets/hero-bathroom-mobile.jpg") !important;
    background-position: center center !important;
  }

  .hero-slide-nail .hero-slide-bg {
    background-image: url("/assets/hero-nail-mobile.jpg") !important;
    background-position: center center !important;
  }

  .hero-slide-travel .hero-slide-bg {
    background-image: url("/assets/hero-travel-mobile.jpg") !important;
    background-position: center center !important;
  }

  .hero-showcase {
    min-height: 720px !important;
  }

  .hero-showcase-content {
    min-height: 720px !important;
    justify-content: flex-end !important;
    padding-top: 84px !important;
    padding-bottom: 86px !important;
  }

  .hero-showcase h1 {
    font-size: clamp(42px, 12vw, 58px) !important;
    line-height: .88 !important;
    letter-spacing: -.055em !important;
    max-width: 94% !important;
    margin: 14px 0 10px !important;
  }

  .hero-showcase p {
    font-size: 15px !important;
    line-height: 1.35 !important;
    max-width: 92% !important;
    margin-bottom: 0 !important;
  }

  .hero-showcase .eyebrow {
    font-size: 10px !important;
    padding: 7px 10px !important;
    max-width: 92% !important;
  }

  .hero-showcase .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 420px !important;
    margin: 18px 0 0 !important;
  }

  .hero-showcase .btn {
    width: 100% !important;
    min-height: 46px !important;
    padding: 11px 14px !important;
    font-size: 14px !important;
    border-radius: 999px !important;
  }

  .hero-showcase .hero-ghost {
    display: none !important;
  }

  .hero-product-float {
    display: none !important;
  }

  .hero-slider-dots {
    bottom: 26px !important;
  }

  .hero-slider-dots span {
    width: 26px !important;
    height: 4px !important;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(8, 12, 20, .30) 0%, rgba(8, 12, 20, .16) 36%, rgba(8, 12, 20, .70) 100%) !important;
  }
}

@media (max-width: 520px) {
  .hero-showcase {
    min-height: 680px !important;
  }

  .hero-showcase-content {
    min-height: 680px !important;
    padding-bottom: 78px !important;
  }

  .hero-showcase h1 {
    font-size: clamp(38px, 13vw, 52px) !important;
  }

  .hero-showcase p {
    font-size: 14px !important;
  }

  .hero-showcase .hero-actions {
    max-width: 100% !important;
  }
}

/* =========================================================
   VILIANTE HERO OVERLAY SOFT FIX
   Makes mobile hero image softer/transparent like desktop.
   Also hides floating product card in hero because it clutters.
   ========================================================= */

/* Hide floating product card on hero for cleaner visual */
.hero-product-float {
  display: none !important;
}

/* Desktop: keep premium soft editorial haze */
.hero-shade {
  background:
    linear-gradient(90deg, rgba(255, 247, 235, .50) 0%, rgba(255, 247, 235, .28) 42%, rgba(8, 12, 20, .22) 100%),
    linear-gradient(180deg, rgba(8, 12, 20, .10) 0%, rgba(8, 12, 20, .18) 100%) !important;
}

/* Mobile: stronger soft cream veil + dark bottom for readable text */
@media (max-width: 900px) {
  .hero-shade {
    background:
      linear-gradient(180deg, rgba(255, 247, 235, .44) 0%, rgba(255, 247, 235, .28) 42%, rgba(8, 12, 20, .58) 100%),
      linear-gradient(90deg, rgba(255, 247, 235, .18) 0%, rgba(255, 247, 235, .04) 100%) !important;
  }

  .hero-showcase h1,
  .hero-showcase p {
    text-shadow: 0 10px 28px rgba(8, 12, 20, .38) !important;
  }

  .hero-showcase .eyebrow {
    background: rgba(255, 255, 255, .88) !important;
  }
}

/* Extra small phones: make bottom even more readable */
@media (max-width: 520px) {
  .hero-shade {
    background:
      linear-gradient(180deg, rgba(255, 247, 235, .38) 0%, rgba(255, 247, 235, .22) 36%, rgba(8, 12, 20, .66) 100%) !important;
  }
}

/* =========================================================
   VILIANTE FORCE HERO OVERLAY V2
   Forced soft overlay for desktop and mobile.
   ========================================================= */

.hero-slide-bg {
  z-index: 1 !important;
}

.hero-shade {
  z-index: 2 !important;
  background: transparent !important;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 247, 235, .58) 0%, rgba(255, 247, 235, .34) 44%, rgba(8, 12, 20, .18) 100%),
    linear-gradient(180deg, rgba(8, 12, 20, .06) 0%, rgba(8, 12, 20, .20) 100%) !important;
}

.hero-showcase-content {
  z-index: 5 !important;
}

.hero-product-float {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

@media (max-width: 900px) {
  .hero-slide::after {
    background:
      linear-gradient(180deg, rgba(255, 247, 235, .46) 0%, rgba(255, 247, 235, .28) 42%, rgba(8, 12, 20, .66) 100%),
      linear-gradient(90deg, rgba(255, 247, 235, .18) 0%, rgba(255, 247, 235, .04) 100%) !important;
  }

  .hero-showcase h1 {
    font-size: clamp(38px, 12vw, 54px) !important;
    line-height: .88 !important;
    margin: 12px 0 8px !important;
  }

  .hero-showcase p {
    font-size: 14px !important;
    line-height: 1.35 !important;
    max-width: 92% !important;
  }

  .hero-showcase .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    width: 100% !important;
    margin-top: 16px !important;
  }

  .hero-showcase .btn {
    min-height: 44px !important;
    padding: 10px 12px !important;
    font-size: 13px !important;
  }

  .hero-showcase .hero-ghost {
    display: none !important;
  }

  .hero-showcase-content {
    justify-content: flex-end !important;
    padding-bottom: 78px !important;
  }
}

@media (max-width: 520px) {
  .hero-slide::after {
    background:
      linear-gradient(180deg, rgba(255, 247, 235, .42) 0%, rgba(255, 247, 235, .24) 36%, rgba(8, 12, 20, .72) 100%) !important;
  }

  .hero-showcase,
  .hero-showcase-content {
    min-height: 680px !important;
  }
}

/* =========================================================
   VILIANTE CLEAN MOBILE HEADER V1
   Fixes oversized mobile top bar and ugly stacked buttons.
   ========================================================= */

@media (max-width: 900px) {
  .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 100 !important;
    background: rgba(255, 253, 248, .78) !important;
    backdrop-filter: blur(18px) !important;
    border-bottom: 1px solid rgba(255,255,255,.38) !important;
    box-shadow: 0 10px 34px rgba(8, 12, 20, .08) !important;
  }

  .site-header .container {
    width: calc(100% - 28px) !important;
  }

  .nav {
    min-height: 64px !important;
    height: 64px !important;
    padding: 0 !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .brand {
    font-size: 15px !important;
    letter-spacing: .16em !important;
    color: var(--blue-dark) !important;
    white-space: nowrap !important;
  }

  .nav-links {
    display: none !important;
  }

  .nav-actions {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 8px !important;
    flex-wrap: nowrap !important;
    margin-left: auto !important;
  }

  /* Hide Get Sample in mobile header */
  .site-header .nav-actions .btn-secondary {
    display: none !important;
  }

  /* Keep only compact Order Now button in mobile header */
  .site-header .nav-actions .btn-primary {
    display: inline-flex !important;
    width: auto !important;
    min-height: 38px !important;
    padding: 9px 16px !important;
    border-radius: 999px !important;
    font-size: 13px !important;
    line-height: 1 !important;
    box-shadow: 0 8px 20px rgba(19, 87, 183, .20) !important;
  }

  /* Prevent global mobile .btn width:100% from breaking header */
  .site-header .btn {
    width: auto !important;
  }

  /* Since header is fixed, hero should visually start behind it */
  .hero-showcase {
    margin-top: 0 !important;
  }
}

@media (max-width: 520px) {
  .nav {
    min-height: 58px !important;
    height: 58px !important;
  }

  .brand {
    font-size: 14px !important;
  }

  .site-header .nav-actions .btn-primary {
    min-height: 36px !important;
    padding: 8px 14px !important;
    font-size: 12px !important;
  }

  .hero-showcase-content {
    padding-top: 84px !important;
  }
}

/* =========================================================
   VILIANTE LOGO HEADER V1
   Cleaner desktop/mobile header with real logo.
   ========================================================= */

.site-header .container.nav {
  width: min(1540px, calc(100% - 64px)) !important;
}

.nav {
  min-height: 72px !important;
  height: 72px !important;
}

.brand-logo {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  min-width: 150px !important;
  letter-spacing: 0 !important;
}

.brand-logo img {
  display: block;
  width: auto;
  height: 42px;
  max-width: 170px;
  object-fit: contain;
}

.brand-logo .brand-fallback {
  display: none;
  font-weight: 950;
  letter-spacing: .16em;
  color: var(--blue-dark);
}

.nav-links {
  gap: 30px !important;
  font-size: 15px !important;
}

.site-header .nav-actions .btn {
  min-height: 48px !important;
  padding: 12px 24px !important;
}

/* Desktop header should feel full, not empty */
@media (min-width: 901px) {
  .site-header {
    background: rgba(255, 253, 248, .92) !important;
  }

  .nav {
    display: grid !important;
    grid-template-columns: 220px 1fr auto !important;
    align-items: center !important;
  }

  .nav-links {
    justify-content: center !important;
  }

  .nav-actions {
    justify-content: flex-end !important;
  }
}

/* Mobile logo header */
@media (max-width: 900px) {
  .site-header .container.nav {
    width: calc(100% - 28px) !important;
  }

  .nav {
    min-height: 62px !important;
    height: 62px !important;
    display: flex !important;
  }

  .brand-logo {
    min-width: 0 !important;
  }

  .brand-logo img {
    height: 34px !important;
    max-width: 132px !important;
  }

  .brand-logo .brand-fallback {
    font-size: 14px !important;
  }

  .site-header .nav-actions .btn-primary {
    min-height: 38px !important;
    padding: 9px 16px !important;
    font-size: 13px !important;
  }

  .site-header .nav-actions .btn-secondary {
    display: none !important;
  }
}

@media (max-width: 420px) {
  .brand-logo img {
    height: 30px !important;
    max-width: 116px !important;
  }

  .site-header .nav-actions .btn-primary {
    min-height: 36px !important;
    padding: 8px 13px !important;
    font-size: 12px !important;
  }
}

/* =========================================================
   VILIANTE FORCE LOGO HEADER V2
   Replaces text-looking header with real logo layout.
   ========================================================= */

.site-header {
  background: rgba(255, 253, 248, .94) !important;
  border-bottom: 1px solid rgba(230, 222, 210, .75) !important;
}

.site-header .container.nav {
  width: min(1500px, calc(100% - 56px)) !important;
}

.nav {
  height: 76px !important;
  min-height: 76px !important;
  display: grid !important;
  grid-template-columns: 260px 1fr 330px !important;
  align-items: center !important;
  gap: 20px !important;
  padding: 0 !important;
}

.brand-logo {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: fit-content !important;
  min-width: 0 !important;
  letter-spacing: 0 !important;
}

.brand-logo img {
  display: block !important;
  height: 48px !important;
  width: auto !important;
  max-width: 210px !important;
  object-fit: contain !important;
}

.brand-logo .brand-fallback {
  display: none !important;
  font-weight: 950 !important;
  letter-spacing: .16em !important;
  color: var(--blue-dark) !important;
}

.nav-links {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 34px !important;
  font-size: 15px !important;
  font-weight: 800 !important;
}

.nav-actions {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 12px !important;
  flex-wrap: nowrap !important;
}

.site-header .nav-actions .btn {
  width: auto !important;
  min-height: 48px !important;
  padding: 12px 25px !important;
  border-radius: 999px !important;
  font-size: 14px !important;
}

/* Mobile */
@media (max-width: 900px) {
  .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 100 !important;
    background: rgba(255, 253, 248, .86) !important;
    backdrop-filter: blur(18px) !important;
  }

  .site-header .container.nav {
    width: calc(100% - 28px) !important;
  }

  .nav {
    height: 62px !important;
    min-height: 62px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .brand-logo img {
    height: 36px !important;
    max-width: 136px !important;
  }

  .nav-links {
    display: none !important;
  }

  .nav-actions {
    margin-left: auto !important;
  }

  .site-header .nav-actions .btn-secondary {
    display: none !important;
  }

  .site-header .nav-actions .btn-primary {
    display: inline-flex !important;
    min-height: 38px !important;
    padding: 9px 16px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 420px) {
  .brand-logo img {
    height: 32px !important;
    max-width: 120px !important;
  }

  .site-header .nav-actions .btn-primary {
    min-height: 36px !important;
    padding: 8px 13px !important;
    font-size: 12px !important;
  }
}

/* =========================================================
   VILIANTE FORCE LOGO HEADER V2
   Replaces text-looking header with real logo layout.
   ========================================================= */

.site-header {
  background: rgba(255, 253, 248, .94) !important;
  border-bottom: 1px solid rgba(230, 222, 210, .75) !important;
}

.site-header .container.nav {
  width: min(1500px, calc(100% - 56px)) !important;
}

.nav {
  height: 76px !important;
  min-height: 76px !important;
  display: grid !important;
  grid-template-columns: 260px 1fr 330px !important;
  align-items: center !important;
  gap: 20px !important;
  padding: 0 !important;
}

.brand-logo {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: fit-content !important;
  min-width: 0 !important;
  letter-spacing: 0 !important;
}

.brand-logo img {
  display: block !important;
  height: 48px !important;
  width: auto !important;
  max-width: 210px !important;
  object-fit: contain !important;
}

.brand-logo .brand-fallback {
  display: none !important;
  font-weight: 950 !important;
  letter-spacing: .16em !important;
  color: var(--blue-dark) !important;
}

.nav-links {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 34px !important;
  font-size: 15px !important;
  font-weight: 800 !important;
}

.nav-actions {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 12px !important;
  flex-wrap: nowrap !important;
}

.site-header .nav-actions .btn {
  width: auto !important;
  min-height: 48px !important;
  padding: 12px 25px !important;
  border-radius: 999px !important;
  font-size: 14px !important;
}

/* Mobile */
@media (max-width: 900px) {
  .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 100 !important;
    background: rgba(255, 253, 248, .86) !important;
    backdrop-filter: blur(18px) !important;
  }

  .site-header .container.nav {
    width: calc(100% - 28px) !important;
  }

  .nav {
    height: 62px !important;
    min-height: 62px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .brand-logo img {
    height: 36px !important;
    max-width: 136px !important;
  }

  .nav-links {
    display: none !important;
  }

  .nav-actions {
    margin-left: auto !important;
  }

  .site-header .nav-actions .btn-secondary {
    display: none !important;
  }

  .site-header .nav-actions .btn-primary {
    display: inline-flex !important;
    min-height: 38px !important;
    padding: 9px 16px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 420px) {
  .brand-logo img {
    height: 32px !important;
    max-width: 120px !important;
  }

  .site-header .nav-actions .btn-primary {
    min-height: 36px !important;
    padding: 8px 13px !important;
    font-size: 12px !important;
  }
}

/* =========================================================
   VILIANTE BIGGER LOGO FIX V1
   Makes header logo visible and premium.
   ========================================================= */

@media (min-width: 901px) {
  .nav {
    height: 86px !important;
    min-height: 86px !important;
    grid-template-columns: 300px 1fr 360px !important;
  }

  .brand-logo img {
    height: 68px !important;
    max-width: 260px !important;
    width: auto !important;
    object-fit: contain !important;
  }

  .site-header .container.nav {
    width: min(1580px, calc(100% - 64px)) !important;
  }
}

@media (max-width: 900px) {
  .brand-logo img {
    height: 42px !important;
    max-width: 150px !important;
  }
}

@media (max-width: 420px) {
  .brand-logo img {
    height: 38px !important;
    max-width: 136px !important;
  }
}

/* =========================================================
   VILIANTE FLOATING GLASS HEADER V1
   Replaces the heavy white top bar with a premium floating header.
   ========================================================= */

/* Header sits over hero, not as a big white block */
.site-header {
  position: fixed !important;
  top: 18px !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 200 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

/* Floating pill container */
.site-header .container.nav {
  width: min(1380px, calc(100% - 72px)) !important;
  height: 76px !important;
  min-height: 76px !important;
  margin: 0 auto !important;
  padding: 0 16px 0 22px !important;
  display: grid !important;
  grid-template-columns: 210px 1fr auto !important;
  align-items: center !important;
  gap: 18px !important;

  background: rgba(255, 253, 248, .72) !important;
  border: 1px solid rgba(255, 255, 255, .74) !important;
  border-radius: 999px !important;
  box-shadow: 0 18px 54px rgba(8, 12, 20, .14) !important;
  backdrop-filter: blur(22px) saturate(145%) !important;
}

/* Logo area */
.brand-logo {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: fit-content !important;
  min-width: 0 !important;
}

.brand-logo img {
  display: block !important;
  height: 58px !important;
  width: auto !important;
  max-width: 190px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 6px 14px rgba(8, 12, 20, .08)) !important;
}

.brand-logo .brand-fallback {
  display: none !important;
}

/* Desktop nav */
.nav-links {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 30px !important;
  font-size: 14px !important;
  font-weight: 850 !important;
  color: #263244 !important;
}

.nav-links a {
  padding: 10px 2px !important;
  transition: color .18s ease, transform .18s ease !important;
}

.nav-links a:hover {
  color: var(--blue-dark) !important;
  transform: translateY(-1px) !important;
}

/* Actions */
.nav-actions {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 10px !important;
  flex-wrap: nowrap !important;
}

.site-header .nav-actions .btn {
  width: auto !important;
  min-height: 48px !important;
  padding: 12px 24px !important;
  border-radius: 999px !important;
  font-size: 14px !important;
  white-space: nowrap !important;
}

.site-header .nav-actions .btn-secondary {
  background: rgba(255, 255, 255, .78) !important;
  border-color: rgba(19, 87, 183, .22) !important;
}

.site-header .nav-actions .btn-primary {
  box-shadow: 0 12px 28px rgba(19, 87, 183, .22) !important;
}

/* Hero should start from top because header floats above it */
.hero-showcase {
  margin-top: 0 !important;
}

/* Desktop spacing: content should not sit under floating header */
.hero-showcase-content {
  padding-top: 86px !important;
}

/* Tablet */
@media (max-width: 1100px) {
  .site-header .container.nav {
    width: min(100% - 36px, 1040px) !important;
    grid-template-columns: 180px 1fr auto !important;
  }

  .brand-logo img {
    height: 50px !important;
    max-width: 160px !important;
  }

  .nav-links {
    gap: 20px !important;
    font-size: 13px !important;
  }

  .site-header .nav-actions .btn {
    padding: 11px 18px !important;
  }
}

/* Mobile: compact glass bar */
@media (max-width: 900px) {
  .site-header {
    top: 12px !important;
  }

  .site-header .container.nav {
    width: calc(100% - 24px) !important;
    height: 58px !important;
    min-height: 58px !important;
    padding: 0 10px 0 14px !important;
    display: flex !important;
    justify-content: space-between !important;
    gap: 10px !important;
    border-radius: 999px !important;
  }

  .brand-logo img {
    height: 42px !important;
    max-width: 132px !important;
  }

  .nav-links {
    display: none !important;
  }

  .nav-actions {
    margin-left: auto !important;
  }

  .site-header .nav-actions .btn-secondary {
    display: none !important;
  }

  .site-header .nav-actions .btn-primary {
    min-height: 38px !important;
    padding: 9px 15px !important;
    font-size: 12px !important;
  }

  .hero-showcase-content {
    padding-top: 82px !important;
  }
}

/* Very small phones */
@media (max-width: 420px) {
  .brand-logo img {
    height: 38px !important;
    max-width: 116px !important;
  }

  .site-header .nav-actions .btn-primary {
    min-height: 36px !important;
    padding: 8px 13px !important;
    font-size: 12px !important;
  }
}

/* =========================================================
   VILIANTE MOBILE FINAL LAYOUT V1
   Mobile header becomes two small floating pills.
   Hero image fills the screen cleanly.
   ========================================================= */

@media (max-width: 900px) {
  /* Header itself should not be a full white bar */
  .site-header {
    position: fixed !important;
    top: 14px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 300 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
  }

  /* Remove the large glass container */
  .site-header .container.nav {
    width: calc(100% - 24px) !important;
    height: 54px !important;
    min-height: 54px !important;
    padding: 0 !important;
    margin: 0 auto !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
  }

  .nav {
    height: 54px !important;
    min-height: 54px !important;
  }

  .nav-links {
    display: none !important;
  }

  /* Logo becomes its own small floating glass pill */
  .brand-logo {
    width: 58px !important;
    height: 58px !important;
    min-width: 58px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: rgba(255, 253, 248, .82) !important;
    border: 1px solid rgba(255,255,255,.68) !important;
    border-radius: 999px !important;
    box-shadow: 0 12px 34px rgba(8, 12, 20, .12) !important;
    backdrop-filter: blur(18px) saturate(140%) !important;
    overflow: hidden !important;
  }

  .brand-logo img {
    height: 42px !important;
    width: 42px !important;
    max-width: 42px !important;
    object-fit: contain !important;
  }

  .brand-logo .brand-fallback {
    display: none !important;
  }

  /* Header right side: only compact Order button */
  .nav-actions {
    margin-left: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 0 !important;
  }

  .site-header .nav-actions .btn-secondary {
    display: none !important;
  }

  .site-header .nav-actions .btn-primary {
    width: auto !important;
    min-height: 44px !important;
    padding: 10px 18px !important;
    border-radius: 999px !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    box-shadow: 0 12px 32px rgba(19, 87, 183, .25) !important;
  }

  .site-header .btn {
    width: auto !important;
  }

  /* Hero mobile should be one full visual, not image + blank block */
  .hero-showcase {
    min-height: 100svh !important;
    height: 100svh !important;
    max-height: 820px !important;
    margin-top: 0 !important;
    overflow: hidden !important;
  }

  .hero-slider,
  .hero-slide,
  .hero-slide-bg {
    min-height: 100% !important;
    height: 100% !important;
  }

  .hero-slide-bg {
    background-size: cover !important;
    background-position: center top !important;
    transform: none !important;
    animation: none !important;
  }

  /* Less white fog on mobile. Keep image visible. */
  .hero-slide::after {
    background:
      linear-gradient(180deg, rgba(8,12,20,.10) 0%, rgba(8,12,20,.08) 38%, rgba(8,12,20,.70) 100%) !important;
  }

  .hero-shade {
    background: transparent !important;
  }

  .hero-showcase-content {
    min-height: 100svh !important;
    height: 100svh !important;
    max-height: 820px !important;
    justify-content: flex-end !important;
    align-items: flex-start !important;
    padding-top: 86px !important;
    padding-bottom: 72px !important;
  }

  .hero-showcase .eyebrow {
    font-size: 10px !important;
    padding: 7px 11px !important;
    max-width: 96% !important;
    background: rgba(255,255,255,.88) !important;
    color: var(--blue-dark) !important;
    box-shadow: 0 8px 22px rgba(8,12,20,.10) !important;
  }

  .hero-showcase h1 {
    font-size: clamp(42px, 13vw, 62px) !important;
    line-height: .86 !important;
    letter-spacing: -.065em !important;
    max-width: 96% !important;
    margin: 14px 0 10px !important;
    text-shadow: 0 12px 32px rgba(8,12,20,.40) !important;
  }

  .hero-showcase p {
    font-size: 15px !important;
    line-height: 1.36 !important;
    max-width: 94% !important;
    text-shadow: 0 10px 26px rgba(8,12,20,.46) !important;
  }

  .hero-showcase .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 18px 0 0 !important;
  }

  .hero-showcase .hero-actions .btn {
    width: 100% !important;
    min-height: 48px !important;
    padding: 12px 14px !important;
    font-size: 14px !important;
  }

  .hero-showcase .hero-actions .hero-ghost {
    display: none !important;
  }

  .hero-product-float {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }

  .hero-slider-dots {
    bottom: 24px !important;
  }

  .hero-slider-dots span {
    width: 26px !important;
    height: 4px !important;
  }
}

@media (max-width: 420px) {
  .brand-logo {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
  }

  .brand-logo img {
    height: 38px !important;
    width: 38px !important;
    max-width: 38px !important;
  }

  .site-header .nav-actions .btn-primary {
    min-height: 40px !important;
    padding: 9px 15px !important;
    font-size: 12px !important;
  }

  .hero-showcase h1 {
    font-size: clamp(38px, 13vw, 54px) !important;
  }

  .hero-showcase-content {
    padding-bottom: 68px !important;
  }
}
