/* ==========================================================
   Homepage-specific styles
   ========================================================== */

/* -------------------- Hero -------------------- */
.hero {
  padding: 8px 16px 0;
  margin-top: 0;
}
.hero-card {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  min-height: calc(100vh - 16px);
  display: flex;
  flex-direction: column;
  color: var(--white);
  background:
    url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=2400&q=80') center 50%/cover,
    var(--ink);
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 18% 28%, rgba(20, 28, 30, 0.55) 0%, transparent 60%),
    linear-gradient(135deg, rgba(46, 66, 70, 0.86) 0%, rgba(46, 66, 70, 0.6) 50%, rgba(46, 66, 70, 0.38) 100%),
    linear-gradient(180deg, rgba(46, 66, 70, 0) 40%, rgba(20, 28, 30, 0.6) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(191, 170, 130, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(191, 170, 130, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}
.hero-body {
  position: relative;
  z-index: 2;
  padding: 210px 6vw 200px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 40px;
  width: fit-content;
}
.hero-label::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 36px;
  width: fit-content;
}
.hero-label::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.hero-content { max-width: 960px; position: relative; z-index: 2; }
.hero h1 {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(50px, 5.8vw, 88px);
  line-height: 1.22;
  letter-spacing: -0.03em;
  margin: 0;
  word-spacing: 0.04em;
  padding-bottom: 0.08em;
}
.hero h1 .italic {
  display: inline;
  margin-top: 0;
  line-height: 1.22;
}
.hero h1 .italic {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.hero-sub {
  margin-top: 48px;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 60px;
  flex-wrap: wrap;
  align-items: center;
}

/* Proof / credibility bar (inside the hero, slim icon strip) */
.hero-proof-band {
  display: none;
}
.hero-proof {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 26px 6vw;
  background: linear-gradient(180deg, rgba(20, 28, 30, 0.0) 0%, rgba(20, 28, 30, 0.5) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.hero-proof-item {
  position: relative;
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 16px;
  padding: 4px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.10);
}
.hero-proof-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(191, 170, 130, 0.14);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-proof-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
[dir="rtl"] .hero-proof-item { border-right: none; border-left: 1px solid rgba(255, 255, 255, 0.10); }
[dir="rtl"] .hero-proof-item:last-child { border-left: none; }
.hero-proof-item:first-child { padding-left: 0; }
[dir="rtl"] .hero-proof-item:first-child { padding-right: 0; padding-left: 28px; }
.hero-proof-item:last-child { border-right: none; padding-right: 0; }
[dir="rtl"] .hero-proof-item:last-child { padding-left: 0; padding-right: 28px; }
.hero-proof-num {
  display: none;
}
.hero-proof-label {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.hero-proof-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.4;
  margin-top: 0;
}

/* Scroll indicator: subtle and centered above the slim proof strip */
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 130px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  pointer-events: none;
}
[dir="rtl"] .hero-scroll {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}
.hero-scroll > span:first-child {
  writing-mode: horizontal-tb;
}
.hero-scroll .scroll-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  writing-mode: horizontal-tb;
  transform: none;
}
[dir="rtl"] .hero-scroll { left: 50%; right: auto; transform: translateX(-50%); }
.hero-scroll .scroll-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero-scroll .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(191,170,130,0) 100%);
  transform-origin: top center;
  animation: hero-scroll-line 1.8s ease-in-out infinite;
}
.hero-scroll .chev {
  color: var(--gold);
  opacity: 0.85;
  animation: hero-scroll-chev 1.8s ease-in-out infinite;
}
@keyframes hero-scroll-line {
  0%   { transform: scaleY(0); opacity: 0.4; }
  50%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom center; opacity: 0.4; }
}
@keyframes hero-scroll-chev {
  0%, 100% { transform: translateY(-2px); opacity: 0.5; }
  50%      { transform: translateY(2px);  opacity: 1;   }
}

/* -------------------- About Preview -------------------- */
.about-preview { padding: var(--pad-section) 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.about-text h2 { font-weight: 500; }
.about-text .lead { margin-top: 28px; }
.about-bullets {
  list-style: none;
  padding: 0;
  margin: 40px 0 44px;
  display: grid;
  gap: 18px;
}
.about-bullets li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ink-12);
}
.about-bullets li:last-child { border-bottom: none; }
.about-bullets .num {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0;
}
.about-bullets strong {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.about-bullets span {
  font-size: 14px;
  color: var(--ink-70);
  line-height: 1.55;
}

.about-visual {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  aspect-ratio: 5 / 6;
  background:
    linear-gradient(160deg, rgba(20,28,30,0.55) 0%, transparent 60%),
    url('https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&w=1800&q=80') center bottom/cover,
    var(--ink);
}
.about-visual .float {
  position: absolute;
  left: 28px; bottom: 28px;
  background: rgba(248, 246, 227, 0.92);
  backdrop-filter: blur(10px);
  border-radius: var(--r-md);
  padding: 18px 22px;
  max-width: 240px;
  border: 1px solid rgba(255,255,255,0.4);
}
.about-visual .float .num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1;
}
.about-visual .float .lbl {
  font-size: 12px;
  color: var(--ink-70);
  margin-top: 8px;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

/* -------------------- Floating WhatsApp FAB -------------------- */
.fab-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 70;
  background: #25D366;
  color: var(--white);
  padding: 12px 22px 12px 12px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.005em;
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.22);
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: transform 320ms cubic-bezier(.34,1.56,.64,1), opacity 240ms ease, box-shadow 240ms ease, background 200ms ease;
}
.fab-whatsapp.is-visible { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
.fab-whatsapp:hover { background: #1ebe5d; box-shadow: 0 20px 48px rgba(37, 211, 102, 0.55); }
.fab-whatsapp .fab-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 220ms ease;
  animation: wa-pulse 2.4s ease-in-out infinite;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45); }
  50%      { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
}
.fab-whatsapp:hover .fab-icon { transform: scale(1.06); }
[dir="rtl"] .fab-whatsapp { right: auto; left: 24px; }
@media (max-width: 600px) {
  .fab-whatsapp { bottom: 16px; right: 16px; padding: 10px 18px 10px 10px; font-size: 13px; }
  .fab-whatsapp .fab-icon { width: 32px; height: 32px; }
  [dir="rtl"] .fab-whatsapp { left: 16px; }
}

/* -------------------- Download button extras (pulse + arrow shake) -------------------- */
.btn-download .btn-arrow {
  background: var(--gold) !important;
  color: var(--ink) !important;
  animation: download-pulse 2.4s ease-in-out infinite;
}
@keyframes download-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(191, 170, 130, 0.55); }
  50%      { box-shadow: 0 0 0 8px rgba(191, 170, 130, 0); }
}
.btn-download:hover .btn-arrow { animation: none; }

/* -------------------- Spaces Gallery -------------------- */
.spaces-gallery {
  padding: var(--pad-section) 0;
  background: var(--ivory);
}
.spaces-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 8px;
}
.space-card { aspect-ratio: 3 / 4; }
.space-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  text-decoration: none;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 8px 24px rgba(20, 28, 30, 0.08);
  transition: transform 360ms cubic-bezier(.22,1,.36,1), box-shadow 360ms ease;
}
.space-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.22,1,.36,1), filter 400ms ease;
  filter: brightness(0.78) saturate(1.05);
}
.space-card:hover img { transform: scale(1.08); filter: brightness(0.62) saturate(1.15); }
.space-card:hover { transform: translateY(-4px); box-shadow: 0 18px 48px rgba(20, 28, 30, 0.22); }
.space-card-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 22px 20px;
  z-index: 2;
  background: linear-gradient(180deg, rgba(20,28,30,0) 0%, rgba(20,28,30,0.65) 60%, rgba(20,28,30,0.85) 100%);
}
.space-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.space-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.015em;
  margin: 0;
  line-height: 1.25;
}
@media (max-width: 1100px) {
  .spaces-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .spaces-grid { grid-template-columns: 1fr; gap: 12px; }
  .space-card { aspect-ratio: 4/3; }
  .space-card-body { padding: 18px; }
}

/* -------------------- Inside Tracecool strip -------------------- */
.inside-strip {
  padding: var(--pad-section) 0;
  background: var(--white);
  overflow: hidden;
}
.inside-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
  padding: 0 32px;
}
.inside-text .lead { margin-top: 22px; }
.inside-stats {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  border-top: 1px solid var(--ink-08);
  padding-top: 28px;
}
.inside-stat { display: flex; flex-direction: column; gap: 6px; }
.inside-stat strong {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1;
}
.inside-stat span {
  font-size: 13px;
  color: var(--ink-70);
  line-height: 1.45;
}
.inside-media {
  position: relative;
  height: 540px;
}
.inside-img {
  position: absolute;
  border-radius: var(--r-lg);
  object-fit: cover;
  box-shadow: 0 22px 60px rgba(20, 28, 30, 0.14);
  transition: transform 600ms cubic-bezier(.22,1,.36,1);
}
.inside-img--a { width: 56%; height: 60%; top: 0; left: 0; z-index: 1; }
.inside-img--b { width: 50%; height: 52%; bottom: 0; right: 0; z-index: 2; }
.inside-img--c { width: 38%; height: 38%; top: 30%; right: 12%; z-index: 3; }
.inside-strip.active .inside-img--a { transform: translateY(-8px); }
.inside-strip.active .inside-img--c { transform: translateY(8px); }
@media (max-width: 1100px) {
  .inside-grid { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
  .inside-media { height: 420px; }
}
@media (max-width: 600px) {
  .inside-media { height: 320px; }
  .inside-stats { grid-template-columns: 1fr; gap: 16px; }
  .inside-stat strong { font-size: 30px; }
}

/* -------------------- Two Pillars -------------------- */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.pillar-card {
  background: var(--white);
  border: 1px solid var(--ink-08);
  border-radius: var(--r-xl);
  padding: 40px 36px 36px;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 220ms ease, transform 280ms cubic-bezier(.22,1,.36,1), box-shadow 280ms ease;
  position: relative;
  overflow: hidden;
}
.pillar-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(20, 28, 30, 0.10);
}
.pillar-card .pillar-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.2;
}
.pillar-card .pillar-tag {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-55);
  font-weight: 600;
  margin: 0;
}
.pillar-card > p:not(.pillar-tag) {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-70);
  margin: 0;
}
.pillar-card .pillar-cta {
  margin-top: auto;
  padding-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  transition: gap 220ms ease;
}
.pillar-card:hover .pillar-cta { gap: 16px; color: var(--gold); }
.pillar-tagline {
  margin: 56px 0 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink-55);
  letter-spacing: 0.04em;
}
.pillar-tagline::before, .pillar-tagline::after {
  content: "—";
  margin: 0 16px;
  color: var(--gold);
}
@media (max-width: 880px) {
  .pillars-grid { grid-template-columns: 1fr; gap: 16px; }
  .pillar-card { padding: 28px 24px 26px; }
  .pillar-card h3 { font-size: 22px; }
  .pillar-tagline { font-size: 16px; margin-top: 36px; }
  .pillar-tagline::before, .pillar-tagline::after { display: none; }
}

/* -------------------- VRF Explainer -------------------- */
.vrf-explainer {
  padding: var(--pad-section-sm) 0 var(--pad-section);
  background: var(--white);
}
.vrf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.vrf-card {
  background: var(--ivory);
  border: 1px solid var(--ink-08);
  border-radius: var(--r-lg);
  padding: 28px 26px 30px;
  transition: border-color 200ms ease, transform 200ms ease;
}
.vrf-card:hover { border-color: var(--gold-30); transform: translateY(-3px); }
.vrf-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.vrf-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 0 0 12px;
}
.vrf-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-70);
  margin: 0;
}
@media (max-width: 1100px) { .vrf-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .vrf-grid { grid-template-columns: 1fr; } }

/* -------------------- Products Preview -------------------- */
.products-preview {
  padding: var(--pad-section-sm) 0 var(--pad-section);
  background: var(--white);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--ivory);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 280ms ease, box-shadow 280ms ease;
  cursor: pointer;
  border: 1px solid var(--ink-08);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(35, 27, 16, 0.08);
}
.product-card .product-img {
  aspect-ratio: 4 / 3;
  position: relative;
  background: linear-gradient(135deg, #DED6B2 0%, #F8F6E3 100%);
  overflow: hidden;
}
.product-card .product-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(0deg, transparent 95%, rgba(46, 66, 70, 0.06) 95%),
    linear-gradient(90deg, transparent 95%, rgba(46, 66, 70, 0.06) 95%);
  background-size: 36px 36px;
  pointer-events: none;
}
.product-card .product-img svg {
  position: absolute;
  inset: 0; margin: auto;
  width: 64%; height: 64%;
}
.product-card .product-img.teal { background: linear-gradient(135deg, rgba(46, 66, 70, 0.12) 0%, var(--ivory) 100%); }
.product-card .product-img.dark { background: linear-gradient(135deg, #2E4246 0%, #1d2a2c 100%); }
.product-card .product-img.dark::before {
  background-image:
    linear-gradient(0deg, transparent 95%, rgba(191, 170, 130, 0.10) 95%),
    linear-gradient(90deg, transparent 95%, rgba(191, 170, 130, 0.10) 95%);
}

.product-card .badge {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ink);
  padding: 7px 12px;
  border-radius: var(--r-pill);
  text-transform: uppercase;
  z-index: 1;
}
.product-card .body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.product-card .cat {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
}
.product-card h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 4px 0 0;
  line-height: 1.25;
}
.product-card .spec {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink-70);
  margin: 8px 0 0;
}
.product-card .pc-model {
  display: block;
  font-size: 11px;
  color: var(--ink-55);
  letter-spacing: 0.04em;
  margin-top: 6px;
  text-transform: uppercase;
}
.product-card .pc-model strong { color: var(--ink); font-weight: 600; letter-spacing: 0; text-transform: none; font-size: 12.5px; }

/* Photo-based product card */
.product-card--photo .product-img--photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ivory);
  min-height: 180px; /* fallback for browsers without aspect-ratio */
}
@supports (aspect-ratio: 4/3) {
  .product-card--photo .product-img--photo { min-height: 0; }
}
.product-card--photo .product-img--photo::before { display: none; }
.product-card--photo .product-img--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 600ms cubic-bezier(.22,1,.36,1);
}
.product-card--photo:hover .product-img--photo img { transform: scale(1.06); }
.product-card--photo .badge {
  z-index: 2;
}

/* Hidden categories (temporarily off the catalog) */
.catalog-section[data-cat="minisplit"] { display: none !important; }

/* Categorized catalog sections */
.catalog-section {
  margin-top: 40px;
  padding-top: 24px;
}
.catalog-section:first-child { margin-top: 0; padding-top: 0; }
.catalog-section-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.catalog-section-title .dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.catalog-section-title .count-pill {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink-55);
  background: var(--ink-08);
  padding: 5px 11px;
  border-radius: var(--r-pill);
  margin-left: auto;
}
.product-card .foot {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-card .more {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.product-card .more .arr {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms ease;
}
.product-card:hover .more .arr { background: var(--ink); color: var(--white); }

/* Illustration stroke colors */
.illo .s-ink { stroke: var(--ink); }
.illo .s-gold { stroke: var(--gold); }
.illo .f-ink { fill: var(--ink); }
.illo .f-gold { fill: var(--gold); }
.product-img.dark .illo .s-ink { stroke: var(--gold); }
.product-img.dark .illo .s-gold { stroke: var(--white-70); }
.product-img.dark .illo .f-ink { fill: var(--gold); }
.product-img.dark .illo .f-gold { fill: var(--white-70); }

/* -------------------- Services Preview -------------------- */
.services-preview {
  padding: var(--pad-section) 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 280ms ease;
  border: 1px solid var(--ink-08);
}
.service-card:hover { transform: translateY(-4px); }
.service-card .svc-img {
  aspect-ratio: 16 / 11;
  background-size: cover;
  background-position: center;
  position: relative;
}
.service-card .svc-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,28,30,0) 50%, rgba(20,28,30,0.5) 100%);
}
.service-card .num {
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--white);
  letter-spacing: 0.06em;
  z-index: 2;
}
.service-card .body {
  padding: 32px 32px 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.service-card p {
  color: var(--ink-70);
  font-size: 16px;
  line-height: 1.65;
  margin: 14px 0 28px;
  flex: 1;
}
.service-card .svc-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 8px;
}
.service-card .svc-bullets li {
  font-size: 14px;
  color: var(--ink-70);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-card .svc-bullets li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* -------------------- Why Us / Stats -------------------- */
.why-us {
  background: var(--ink);
  color: var(--white);
  padding: var(--pad-section) 0;
  border-radius: var(--r-2xl) var(--r-2xl) 0 0;
  margin-top: 40px;
}
.why-us .eyebrow { color: var(--gold); }
.why-us .eyebrow::before { background: var(--gold); }
.why-us h2 { color: var(--white); font-weight: 500; }
.why-us .lead { color: var(--white-70); }

.why-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid var(--white-12);
}
.why-stat {
  padding: 0 32px 0 0;
  border-right: 1px solid var(--white-12);
}
.why-stat:last-child { border-right: none; padding-right: 0; }
.why-stat .num {
  font-family: var(--font-display);
  font-size: clamp(54px, 6vw, 88px);
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.035em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.why-stat .num sup {
  font-size: 0.32em;
  color: var(--gold);
  font-weight: 500;
  top: -1.3em;
}
.why-stat .lbl {
  margin-top: 20px;
  font-size: 15px;
  color: var(--white-70);
  line-height: 1.55;
  max-width: 220px;
  letter-spacing: 0;
}

.why-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 80px;
}
.why-pillar {
  background: var(--white-08);
  border: 1px solid var(--white-12);
  border-radius: var(--r-lg);
  padding: 32px;
}
.why-pillar .ico {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(191, 170, 130, 0.18);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.why-pillar h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
}
.why-pillar p {
  color: var(--white-70);
  font-size: 15px;
  line-height: 1.65;
  margin: 12px 0 0;
}

/* -------------------- Contact CTA -------------------- */
.contact-cta {
  padding: var(--pad-section) 0;
  background: var(--ivory);
}
.contact-card {
  background: var(--white);
  border-radius: var(--r-2xl);
  padding: 90px 80px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  border: 1px solid var(--ink-08);
}
.contact-card h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.8vw, 68px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: var(--ink);
}
.contact-card h2 .italic { color: var(--gold); }
.contact-card .lead { margin-top: 24px; max-width: 480px; }
.contact-card .actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.contact-quick {
  display: grid;
  gap: 12px;
}
.quick-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  background: var(--ivory);
  border-radius: var(--r-md);
  border: 1px solid var(--ink-08);
  transition: all 200ms ease;
}
.quick-item:hover {
  border-color: var(--gold-30);
  transform: translateX(2px);
}
.quick-item .qico {
  width: 44px; height: 44px;
  background: var(--ink);
  color: var(--gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.quick-item .qlbl {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.quick-item .qval {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--ink);
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: -0.01em;
}

/* -------------------- Responsive -------------------- */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-stats { grid-template-columns: 1fr 1fr; gap: 40px 32px; padding-top: 40px; }
  .why-stat { border-right: none; padding-right: 0; border-bottom: 1px solid var(--white-12); padding-bottom: 32px; }
  .why-stat:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0; }
  .why-pillars { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  .hero { padding: 6px 12px 0; }
  .hero-card { min-height: auto; border-radius: 28px; display: flex; flex-direction: column; }
  .hero-body { padding: 120px 28px 60px; }
  .hero-scroll { display: none; }
  .hero h1 { font-size: clamp(38px, 7vw, 56px); line-height: 1.18; }
  .hero-sub { margin-top: 24px; font-size: 16.5px; line-height: 1.6; }
  .hero-actions { margin-top: 36px; }
  .hero-label { margin-bottom: 22px; }
  .hero-proof {
    position: static;
    grid-template-columns: 1fr 1fr;
    padding: 22px 24px;
    gap: 18px 0;
    background: rgba(20, 28, 30, 0.55);
  }
  .hero-proof-item { padding: 0 14px; }
  .hero-proof-item:nth-child(2) { border-right: none; }
  [dir="rtl"] .hero-proof-item:nth-child(2) { border-left: none; }
  .about-preview { padding: 72px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { aspect-ratio: 4 / 3; }
  .about-visual .float { left: 20px; bottom: 20px; padding: 14px 18px; max-width: 220px; }
  .about-visual .float .num { font-size: 26px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card .body { padding: 26px 24px 28px; }
  .service-card h3 { font-size: 24px; }
  .contact-card { padding: 40px 28px; grid-template-columns: 1fr; gap: 32px; }
  .contact-card .actions { gap: 10px; }
  .why-pillar { padding: 24px; }
  .why-stat { padding-right: 0; padding-bottom: 28px; }
  .why-stat .num { font-size: clamp(42px, 9vw, 64px); }
  .footer-newsletter { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .hero { padding: 4px 8px 0; }
  .hero-card { border-radius: 22px; }
  .hero-body { padding: 108px 22px 44px; }
  .hero h1 { font-size: clamp(34px, 9vw, 44px); line-height: 1.2; }
  .hero-sub { font-size: 15.5px; }
  .hero-actions .btn { font-size: 13px; padding: 13px 18px 13px 20px; }
  .hero-proof { grid-template-columns: 1fr; padding: 18px 20px; gap: 0; }
  .hero-proof-item { padding: 14px 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.10); }
  .hero-proof-item:last-child { border-bottom: none; }
  .hero-proof-label { font-size: 14px; }
  .products-grid { grid-template-columns: 1fr; }
  .product-card h4 { font-size: 19px; }
  .why-stats { grid-template-columns: 1fr; }
  .why-stat { border-bottom: 1px solid var(--white-12); padding-bottom: 28px; }
  .why-stat:last-child { border-bottom: none; }
  .why-pillars { grid-template-columns: 1fr; }
  .contact-card { padding: 32px 22px; }
  .contact-card h2 { font-size: clamp(32px, 8vw, 44px); }
}
