/* ============================================================
   MORPHOSONICA — Design System v3
   Light · Minimal · Professional
   Paleta: Blanco · Gris Suave · Negro · Verde Sónico
   ============================================================ */

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

/* ─── Variables ─── */
:root {
  /* Colors */
  --green:        #1EDB1E;
  --green-dark:   #16b816;
  --green-light:  #f0fff0;
  --green-border: rgba(30,219,30,0.18);

  --black:        #0D0D0D;
  --gray-900:     #111111;
  --gray-800:     #222222;
  --gray-700:     #444444;
  --gray-500:     #717171;
  --gray-400:     #999999;
  --gray-200:     #e5e5e5;
  --gray-100:     #f2f2f2;
  --gray-50:      #f8f8f8;
  --white:        #ffffff;

  /* Typography */
  --font-display: 'Montserrat', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Sizing */
  --max-w:        1200px;
  --px:           1.5rem;
  --radius:       10px;
  --radius-lg:    16px;
  --radius-xl:    24px;

  /* Transitions */
  --ease: cubic-bezier(0.25,0.46,0.45,0.94);
  --dur:  220ms;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; outline: none; }

/* ─── Container ─── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }
@media (min-width: 1800px) { .container { padding: 0 2rem; } }

.section-py { padding: 5rem 0; }
.section-py-sm { padding: 3.5rem 0; }

/* ─── Section Labels ─── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}
.label::before {
  content: '';
  display: block;
  width: 18px; height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.heading-xl {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--black);
}
.heading-lg {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--black);
}
.heading-md {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--black);
}
.text-muted { color: var(--gray-500); }
.text-green { color: var(--green-dark); }
.accent { color: var(--green-dark); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  padding: 0.65rem 1.375rem;
  border-radius: var(--radius);
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}
.btn svg { flex-shrink: 0; }

/* Primary — Green */
.btn-primary {
  background: var(--green);
  color: var(--black);
  font-weight: 700;
  border: 1.5px solid var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(30,219,30,0.3);
}

/* Secondary — White border */
.btn-secondary {
  background: var(--white);
  color: var(--black);
  border: 1.5px solid var(--gray-200);
}
.btn-secondary:hover {
  border-color: var(--black);
  transform: translateY(-1px);
}

/* Ghost — Transparent + dark border */
.btn-ghost {
  background: transparent;
  color: var(--gray-700);
  border: 1.5px solid var(--gray-200);
}
.btn-ghost:hover {
  border-color: var(--gray-700);
  color: var(--black);
}

/* Black */
.btn-dark {
  background: var(--black);
  color: var(--white);
  border: 1.5px solid var(--black);
}
.btn-dark:hover {
  background: var(--gray-800);
  transform: translateY(-1px);
}

/* Small */
.btn-sm { font-size: 0.75rem; padding: 0.5rem 1rem; }
/* Large */
.btn-lg { font-size: 0.875rem; padding: 0.8125rem 1.75rem; }

/* ─── Navbar ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--ease);
}
.navbar.on-light { background: rgba(255,255,255,0); }
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--gray-200);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1.5rem;
}
.navbar__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.navbar__logo-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.0625rem;
  letter-spacing: -0.03em;
  color: var(--black);
}
.navbar__logo-tag {
  font-size: 0.575rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-top: 2px;
}
.navbar__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex: 1;
  justify-content: center;
}
.navbar__link {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: color var(--dur) var(--ease);
}
.navbar__link:hover { color: var(--black); }
.navbar__link.active { color: var(--green-dark); }
.navbar__actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 4.5px;
  padding: 4px;
}
.navbar__hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--black);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}
.navbar__mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  padding: 0.5rem 0;
}
.navbar__mobile.open { display: flex; }
.navbar__mobile-link {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  padding: 0.875rem 1.5rem;
  border-bottom: 1px solid var(--gray-100);
  transition: color var(--dur);
}
.navbar__mobile-link:hover { color: var(--green-dark); }
@media (max-width: 860px) {
  .navbar__links { display: none; }
  .navbar__hamburger { display: flex; }
}


/* ─── Hero ─── */
.hero2 {
  background: #0b0d18;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 52fr 48fr;
  align-items: center;
  gap: 4rem;
  padding: 0 5vw;
  position: relative;
  overflow: hidden;
}
.hero2::before {
  content: '';
  position: absolute;
  top: -15%; right: -5%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(30,219,30,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero2::after {
  content: '';
  position: absolute;
  bottom: -10%; left: 25%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(30,219,30,0.04) 0%, transparent 65%);
  pointer-events: none;
}
@media (max-width: 1024px) {
  .hero2 {
    grid-template-columns: 1fr;
    padding: 8rem 1.5rem 4rem;
    text-align: center;
    gap: 3rem;
    min-height: auto;
  }
}

/* Left */
.hero2__left {
  position: relative;
  z-index: 2;
  padding: 9rem 0 5rem;
}
.hero2__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.75rem;
}
.hero2__eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2.5s ease infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(30,219,30,0.4); }
  50%      { box-shadow: 0 0 0 6px rgba(30,219,30,0); }
}
@media (max-width: 1024px) {
  .hero2__left { padding: 0; }
  .hero2__eyebrow { justify-content: center; }
}
.hero2__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 5.5vw, 4.75rem);
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin-bottom: 1.625rem;
}
.hero2__accent { color: var(--green); }
.hero2__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 430px;
}
@media (max-width: 1024px) { .hero2__sub { margin-left: auto; margin-right: auto; } }
.hero2__ctas {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-bottom: 2.75rem;
}
@media (max-width: 1024px) { .hero2__ctas { justify-content: center; } }

/* Feature row */
.hero2__features {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
@media (max-width: 1024px) { .hero2__features { justify-content: center; } }
.hero2__feature {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Right – visual stack */
.hero2__right {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 5rem 0;
}
@media (max-width: 1024px) { .hero2__right { min-height: auto; padding: 0; } }
.hero2__visual-stack {
  position: relative;
  width: 100%;
  max-width: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}
@media (max-width: 1024px) { .hero2__visual-stack { max-width: 320px; min-height: 380px; } }

/* Main image — centered */
.hero2__img-main {
  position: relative;
  width: 280px;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  background: #151824;
  flex-shrink: 0;
  border: 1.5px solid rgba(30,219,30,0.14);
  box-shadow: 0 32px 80px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,255,255,0.04);
  z-index: 2;
}
.hero2__img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero2__img-main:hover img { transform: scale(1.0); }
@media (max-width: 1024px) { .hero2__img-main { width: 200px; height: 300px; } }

/* Subtle gradient overlay at bottom of main image */
.hero2__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,13,24,0.55) 0%, transparent 55%);
  pointer-events: none;
}

/* Secondary images — floating cards */
.hero2__img-sec {
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.09);
  box-shadow: 0 16px 40px rgba(0,0,0,0.55);
  background: #151824;
}
.hero2__img-sec img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero2__img-sec-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,219,30,0.05) 0%, transparent 60%);
  pointer-events: none;
}
/* Top-right: vinyls */
.hero2__img-sec--tr {
  top: 0;
  right: 0;
  width: 155px;
  height: 140px;
  border-radius: 18px;
  z-index: 3;
  animation: float-sec-tr 5s ease-in-out infinite;
}
@keyframes float-sec-tr {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-8px); }
}
/* Bottom-left: guitar */
.hero2__img-sec--bl {
  bottom: 0;
  left: 0;
  width: 140px;
  height: 140px;
  border-radius: 18px;
  z-index: 3;
  animation: float-sec-bl 6s ease-in-out 1s infinite;
}
@keyframes float-sec-bl {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-6px); }
}
@media (max-width: 1024px) {
  .hero2__img-sec--tr { width: 110px; height: 100px; top: 0; right: 0; }
  .hero2__img-sec--bl { width: 100px; height: 100px; bottom: 0; left: 0; }
}

/* Floating glassmorphism card — center-right of main image */
.hero2__float-card {
  position: absolute;
  bottom: 5.5rem;
  right: -1.5rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
  z-index: 4;
  animation: float-card 4s ease-in-out 0.5s infinite;
}
@keyframes float-card {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@media (max-width: 1024px) { .hero2__float-card { right: -0.5rem; bottom: 4rem; } }
.hero2__float-card-icon {
  width: 38px; height: 38px;
  background: rgba(30,219,30,0.12);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid rgba(30,219,30,0.25);
}
.hero2__float-card-num {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.hero2__float-card-label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Decorative scroll indicator dots */
.hero2__scroll-hint {
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media (max-width: 1024px) { .hero2__scroll-hint { display: none; } }
.hero2__scroll-hint span {
  display: block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(30,219,30,0.35);
}
.hero2__scroll-hint span:nth-child(2) { background: var(--green); }

/* Hero outline button */
a.btn-hero-outline,
.hero2 .btn-hero-outline {
  background: rgba(255,255,255,0.06) !important;
  color: #ffffff !important;
  border: 1.5px solid rgba(255,255,255,0.3) !important;
  opacity: 1 !important;
}
a.btn-hero-outline:hover,
.hero2 .btn-hero-outline:hover {
  background: rgba(255,255,255,0.12) !important;
  border-color: rgba(255,255,255,0.55) !important;
}
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 3rem 0;
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  /* divider handled by border-right on each item */
}
@media (max-width: 1024px) { .trust-bar__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .trust-bar__grid { grid-template-columns: 1fr 1fr; gap: 1px; background: var(--gray-200); } }
.trust-bar__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 2rem;
  border-right: 1px solid var(--gray-100);
  transition: background var(--dur) var(--ease);
}
.trust-bar__item:last-child { border-right: none; }
.trust-bar__item:hover { background: var(--gray-50); }
@media (max-width: 540px) { .trust-bar__item { background: var(--white); border: none; padding: 1rem; } }
.trust-bar__icon {
  width: 38px; height: 38px;
  background: var(--green-light);
  border-radius: 9px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.trust-bar__title {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.2rem;
}
.trust-bar__desc { font-size: 0.785rem; color: var(--gray-500); line-height: 1.5; }

/* ─── About / Bento ─── */
.about { background: var(--white); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 860px) { .about__grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.about__img {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}
.about__img:hover img { transform: scale(1.04); }
.about__img-badge {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem;
  background: var(--green);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  letter-spacing: 0.05em;
}
.about__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.about__card {
  padding: 1.25rem;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  transition: border-color var(--dur), transform var(--dur);
}
.about__card:hover { border-color: var(--green-border); transform: translateY(-2px); }
.about__card-icon {
  width: 32px; height: 32px;
  background: var(--green-light);
  border-radius: 8px;
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
}
.about__card h4 {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.3rem;
}
.about__card p { font-size: 0.785rem; color: var(--gray-500); line-height: 1.55; }

/* ─── Services ─── */
.services { background: var(--gray-50); }
.services__header { text-align: center; max-width: 560px; margin: 0 auto 3rem; }
.services__header .label { justify-content: center; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 860px) { .services__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .services__grid { grid-template-columns: 1fr; } }
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--dur) var(--ease);
}
.service-card:hover {
  border-color: var(--green-border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}
.service-card__icon {
  width: 44px; height: 44px;
  background: var(--green-light);
  border-radius: 11px;
  display: grid;
  place-items: center;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--black);
}
.service-card p { font-size: 0.845rem; color: var(--gray-500); line-height: 1.6; flex: 1; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-dark);
  transition: gap var(--dur);
}
.service-card:hover .service-card__link { gap: 0.625rem; }

/* ─── Products ─── */
.products { background: var(--white); }
.products__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.products__filters { display: flex; gap: 0.375rem; flex-wrap: wrap; margin-bottom: 2rem; }
.filter-pill {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  border: 1.5px solid var(--gray-200);
  color: var(--gray-600);
  background: var(--white);
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  letter-spacing: 0.01em;
}
.filter-pill:hover { border-color: var(--black); color: var(--black); }
.filter-pill.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1200px) { .products__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .products__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .products__grid { grid-template-columns: 1fr; } }

/* Product card */
.pcard {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--dur) var(--ease);
}
.pcard:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  transform: translateY(-3px);
  border-color: var(--gray-300, #d0d0d0);
}
.pcard__thumb {
  aspect-ratio: 1;
  background: var(--gray-50);
  display: grid;
  place-items: center;
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
}
.pcard__svg-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px; height: 72px;
  background: var(--green-light);
  border-radius: 20px;
  transition: transform var(--dur) var(--ease);
}
.pcard:hover .pcard__svg-wrap { transform: scale(1.08); }
.pcard__badge {
  position: absolute;
  top: 0.6rem; left: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--green);
  color: var(--black);
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
}
.pcard__cat {
  position: absolute;
  top: 0.6rem; right: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--gray-700);
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
  border: 1px solid var(--gray-200);
}
.pcard__body { padding: 1rem 1.125rem 1.125rem; flex: 1; display: flex; flex-direction: column; }
.pcard__name {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}
.pcard__desc {
  font-size: 0.79rem;
  color: var(--gray-500);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1rem;
}
.pcard__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
}
.pcard__price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.025em;
}
.pcard__price-service {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-500);
}
.pcard__cta {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.45rem 0.875rem;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  transition: all var(--dur) var(--ease);
  letter-spacing: 0.02em;
}
.pcard__cta:hover { background: var(--gray-800); transform: translateY(-1px); }
.products__view-all { text-align: center; margin-top: 2.5rem; }

/* ─── Process ─── */
.process { background: var(--gray-50); }
.process__header { text-align: center; max-width: 500px; margin: 0 auto 3.5rem; }
.process__header .label { justify-content: center; }
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.process__steps::before {
  content: '';
  position: absolute;
  top: 1.75rem;
  left: 12.5%; right: 12.5%;
  height: 1px;
  background: var(--gray-200);
}
@media (max-width: 860px) {
  .process__steps { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .process__steps::before { display: none; }
}
@media (max-width: 480px) { .process__steps { grid-template-columns: 1fr; } }
.process__step { text-align: center; }
.process__step-num {
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  display: grid;
  place-items: center;
  margin: 0 auto 1.25rem;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--black);
  position: relative;
  z-index: 1;
  transition: all var(--dur);
}
.process__step:hover .process__step-num {
  background: var(--green);
  border-color: var(--green);
}
.process__step h4 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.4rem;
}
.process__step p { font-size: 0.8rem; color: var(--gray-500); line-height: 1.55; }

/* ─── Testimonials ─── */
.testimonials { background: var(--white); }
.testimonials__header { max-width: 480px; margin-bottom: 3rem; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1024px) { .testimonials__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .testimonials__grid { grid-template-columns: 1fr; } }
.tcard {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--dur);
}
.tcard:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-color: var(--green-border);
  transform: translateY(-2px);
}
.tcard__stars { color: var(--green-dark); font-size: 0.75rem; letter-spacing: 2px; }
.tcard__quote {
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.tcard__author { display: flex; align-items: center; gap: 0.75rem; padding-top: 0.75rem; border-top: 1px solid var(--gray-100); }
.tcard__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--black);
  flex-shrink: 0;
}
.tcard__name { font-family: var(--font-display); font-size: 0.8125rem; font-weight: 700; color: var(--black); }
.tcard__city { font-size: 0.75rem; color: var(--gray-500); }
.tcard__service { font-family: var(--font-display); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-dark); margin-top: 2px; }

/* ─── CTA Strip ─── */
.cta-strip {
  background: var(--black);
  padding: 4.5rem 0;
}
.cta-strip__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 768px) { .cta-strip__inner { grid-template-columns: 1fr; gap: 2rem; } }
.cta-strip__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}
.cta-strip__label::before { content: ''; display: block; width: 18px; height: 1.5px; background: var(--green); }
.cta-strip__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.cta-strip__perks {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-strip__perk {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
}
.cta-strip__perk-dot { color: var(--green); font-size: 0.9rem; }
.cta-strip__btns { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; flex-shrink: 0; }

/* ─── Contact Section ─── */
.contact { background: var(--white); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 860px) { .contact__grid { grid-template-columns: 1fr; gap: 3rem; } }
.contact__info { display: flex; flex-direction: column; gap: 2rem; }
.contact__detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  transition: border-color var(--dur);
}
.contact__detail:hover { border-color: var(--green-border); }
.contact__detail-icon {
  width: 38px; height: 38px;
  background: var(--green-light);
  border-radius: 9px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact__detail-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.25rem;
}
.contact__detail-value { font-size: 0.875rem; color: var(--gray-800); line-height: 1.55; }
.contact__form { display: flex; flex-direction: column; gap: 1rem; }
.contact__form-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.25rem;
}
.contact__form-sub { font-size: 0.875rem; color: var(--gray-500); margin-bottom: 0.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gray-700);
  letter-spacing: 0.04em;
}
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--dur), box-shadow var(--dur);
}
.form-input::placeholder { color: var(--gray-400); }
.form-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(30,219,30,0.1);
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
}
.form-select option { background: var(--white); }
.form-textarea { min-height: 110px; resize: vertical; }
.form-submit { padding: 0.8125rem; font-size: 0.875rem; }
.form-note { font-size: 0.75rem; color: var(--gray-400); text-align: center; }
.success-msg { display: none; padding: 0.875rem; background: var(--green-light); border: 1px solid var(--green-border); border-radius: var(--radius); color: var(--green-dark); font-size: 0.875rem; text-align: center; }
.success-msg.show { display: block; }

/* ─── Newsletter ─── */
.newsletter {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.newsletter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) { .newsletter__inner { grid-template-columns: 1fr; gap: 2rem; } }
.newsletter__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}
.newsletter__desc { font-size: 0.875rem; color: var(--gray-500); line-height: 1.65; }
.newsletter__form { display: flex; gap: 0.625rem; }
@media (max-width: 480px) { .newsletter__form { flex-direction: column; } }
.newsletter__input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--black);
  transition: border-color var(--dur);
}
.newsletter__input::placeholder { color: var(--gray-400); }
.newsletter__input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(30,219,30,0.1); }
.newsletter__note { font-size: 0.72rem; color: var(--gray-400); margin-top: 0.625rem; }

/* ─── Footer ─── */
.footer { background: var(--white); border-top: 1px solid var(--gray-100); padding: 4rem 0 2rem; }
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--gray-100);
}
@media (max-width: 1024px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 600px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
.footer__logo-name { font-family: var(--font-display); font-weight: 900; font-size: 1rem; letter-spacing: -0.025em; color: var(--black); }
.footer__logo-tag { font-size: 0.575rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green-dark); margin-bottom: 0.875rem; }
.footer__desc { font-size: 0.8125rem; color: var(--gray-500); line-height: 1.7; max-width: 240px; margin-bottom: 1.25rem; }
.footer__socials { display: flex; gap: 0.5rem; }
.footer__social {
  width: 32px; height: 32px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--gray-500);
  transition: all var(--dur);
}
.footer__social:hover { border-color: var(--black); color: var(--black); background: var(--gray-50); }
.footer__col-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 1rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__link { font-size: 0.8125rem; color: var(--gray-500); transition: color var(--dur); }
.footer__link:hover { color: var(--black); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.75rem;
  flex-wrap: wrap;
}
.footer__copy { font-size: 0.78rem; color: var(--gray-400); }
.footer__bottom-links { display: flex; gap: 1.25rem; }
.footer__bottom-link { font-size: 0.78rem; color: var(--gray-400); transition: color var(--dur); }
.footer__bottom-link:hover { color: var(--black); }

/* ─── WhatsApp Float ─── */
.wa-float {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 999;
}
.wa-float__btn {
  width: 46px; height: 46px;
  background: #25D366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(37,211,102,0.4);
  transition: all var(--dur) var(--ease);
  color: white;
}
.wa-float__btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
}

/* ─── Catalog Page ─── */
.page-header {
  background: var(--black);
  padding: 7rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-header__bg {
  position: absolute; inset: 0;
  background-image: url('hero-bg.png');
  background-size: cover;
  background-position: center top;
  opacity: 0.2;
}
.page-header__inner { position: relative; z-index: 2; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-bottom: 1rem; }
.breadcrumb a { color: var(--green); }
.breadcrumb__sep { opacity: 0.4; }

.catalog-body { background: var(--gray-50); padding: 2.5rem 0 5rem; }
.catalog-toolbar {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}
.catalog-search {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}
.catalog-search svg {
  position: absolute;
  left: 0.875rem;
  color: var(--gray-400);
  pointer-events: none;
}
.catalog-search__input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--black);
  transition: border-color var(--dur);
}
.catalog-search__input::placeholder { color: var(--gray-400); font-weight: 500; }
.catalog-search__input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(30,219,30,0.1); }
.catalog-search__suggestions {
  position: absolute;
  top: calc(100% + 4px); left: 0; right: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  z-index: 50;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  display: none;
}
.catalog-search__suggestions.show { display: block; }
.catalog-suggest-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  cursor: pointer;
  font-size: 0.8125rem;
  color: var(--gray-800);
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--dur);
}
.catalog-suggest-item:last-child { border-bottom: none; }
.catalog-suggest-item:hover { background: var(--gray-50); }
.catalog-suggest-price {
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green-dark);
}
.catalog-filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.catalog-filters__pills { display: flex; gap: 0.375rem; flex-wrap: wrap; }
.catalog-filters__controls { display: flex; gap: 0.75rem; align-items: center; flex-shrink: 0; flex-wrap: wrap; }
.catalog-select {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.45rem 2rem 0.45rem 0.875rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--gray-700);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.625rem center;
  cursor: pointer;
  transition: border-color var(--dur);
}
.catalog-select:focus { border-color: var(--green); }
.catalog-select option { background: var(--white); }
.price-ctl { display: flex; flex-direction: column; gap: 0.15rem; }
.price-ctl label { font-family: var(--font-display); font-size: 0.68rem; font-weight: 700; color: var(--gray-500); }
.price-ctl input[type="range"] { accent-color: var(--green); width: 130px; cursor: pointer; }
.catalog-tags { display: flex; gap: 0.375rem; flex-wrap: wrap; margin-top: 1rem; }
.tag-pill {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  border: 1.5px solid var(--gray-200);
  color: var(--gray-500);
  background: var(--white);
  cursor: pointer;
  transition: all var(--dur);
}
.tag-pill:hover { border-color: var(--black); color: var(--black); }
.tag-pill.active { background: var(--green); color: var(--black); border-color: var(--green); }
.catalog-count { font-size: 0.8125rem; color: var(--gray-500); margin-bottom: 1.25rem; }
.catalog-count strong { color: var(--black); font-weight: 700; }
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1024px) { .catalog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .catalog-grid { grid-template-columns: 1fr; } }
.no-results { grid-column: 1/-1; text-align: center; padding: 4rem 2rem; color: var(--gray-500); }
.no-results span { font-size: 2.5rem; display: block; margin-bottom: 0.875rem; }
.no-results a { color: var(--green-dark); font-weight: 700; }

/* ─── Scroll Reveal ─── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
