/* ============================================================
   ALANS FIT JERSEY FACTORY — Main Stylesheet
   ============================================================ */

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

/* ── CSS Variables ── */
:root {
  --yellow: #FACC15;
  --yellow-hover: #EAB308;
  --black: #000000;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --trucos-red: #BC202E;
  --trucos-navy: #161038;
  --container: 1280px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #111;
  line-height: 1.5;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 4px; }

/* ── Utilities ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── HEADER ── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}
#site-header.scrolled {
  background: #fff;
  border-bottom: 1px solid var(--gray-100);
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  padding: 0;
}
#site-header.transparent {
  background: transparent;
  padding: 0;
}
#site-header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 2rem;
  max-width: var(--container);
  margin: 0 auto;
}
.nav-logo img {
  height: 40px;
  width: auto;
  transition: filter 0.3s;
}
#site-header.scrolled .nav-logo img { filter: brightness(0); }
#site-header.transparent .nav-logo img { filter: brightness(0) invert(1); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: color 0.2s;
  padding: 6px 0;
  position: relative;
}
#site-header.scrolled .nav-links a { color: #000; }
#site-header.transparent .nav-links a { color: #fff; }
.nav-links a:hover { color: var(--yellow) !important; }
.nav-links a.active {
  color: var(--yellow) !important;
  border-bottom: 2px solid var(--yellow);
}
.nav-links a.trucos-link { color: var(--trucos-red) !important; }
.nav-links a.trucos-link.active { border-bottom-color: var(--trucos-red); }

.nav-cta {
  background: var(--yellow);
  color: #000 !important;
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all 0.2s;
}
.nav-cta:hover { background: #000 !important; color: #fff !important; }

.nav-mobile-toggle {
  display: none;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.2s;
}
#site-header.scrolled .nav-mobile-toggle { background: var(--gray-100); color: #000; }
#site-header.transparent .nav-mobile-toggle { background: rgba(255,255,255,.1); color: #fff; }
.nav-mobile-toggle svg { display: block; }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 999;
  padding: 2rem;
  flex-direction: column;
  gap: 1.5rem;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
@media (min-width: 769px) {
  .mobile-nav { display: none !important; }
}
.mobile-nav a {
  font-size: 2.5rem;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: #000;
  border-bottom: 1px solid var(--gray-50);
  padding-bottom: 1rem;
  transition: color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--yellow); }
.mobile-nav a.trucos-link { color: var(--trucos-red) !important; }
.mobile-nav .mobile-cta {
  margin-top: auto;
  background: var(--yellow);
  color: #000;
  text-align: center;
  padding: 20px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-style: normal;
  border-bottom: none;
}
.mobile-nav .mobile-cta:hover { background: #000; color: #fff; }

/* ── HERO SLIDER ── */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide .overlay { position: absolute; inset: 0; background: rgba(0,0,0,.5); }

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
  padding: 0 2rem;
  animation: heroFadeUp 0.6s ease;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-block;
  padding: 4px 16px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #000;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin-bottom: 1.5rem;
}
.hero-desc {
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 600;
  max-width: 42rem;
  margin: 0 auto 3rem;
  opacity: 0.9;
  letter-spacing: -0.01em;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: #fff;
  color: #000;
  padding: 18px 40px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all 0.3s;
  display: inline-block;
}
.btn-primary:hover { background: var(--yellow); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 18px 40px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all 0.3s;
  display: inline-block;
}
.btn-outline:hover { background: #fff; color: #000; }

/* Hero navigation */
.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.hero-nav-btn:hover { background: rgba(255,255,255,.25); }
.hero-prev { left: 2rem; }
.hero-next { right: 2rem; }
.hero-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 0.75rem;
}
.hero-dot {
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.3);
  transition: all 0.5s;
  width: 48px;
}
.hero-dot.active { background: var(--yellow); width: 96px; }
.hero-scroll-indicator {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  display: none;
}
@media (min-width: 768px) { .hero-scroll-indicator { display: block; } }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.3);
  position: relative;
}
.scroll-line::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 16px;
  background: var(--yellow);
}

/* ── GATEWAY SECTION ── */
.gateway-section {
  padding: 6rem 2rem;
  background: #fff;
}
.gateway-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: var(--container);
  margin: 0 auto;
}
.gateway-card {
  position: relative;
  overflow: hidden;
  height: 700px;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem;
  color: #fff;
  box-shadow: 0 25px 50px rgba(0,0,0,.2);
}
.gateway-card img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.gateway-card:hover img.bg { transform: scale(1.05); }
.gateway-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.9), rgba(0,0,0,.15), transparent);
}
.gateway-card .card-content { position: relative; z-index: 2; }
.gateway-tag {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 1rem;
}
.gateway-logo { height: 56px; width: auto; object-fit: contain; margin-bottom: 1rem; }
.gateway-desc {
  font-size: 1.1rem;
  font-weight: 500;
  color: #d1d5db;
  max-width: 28rem;
  margin-bottom: 2rem;
}
.btn-gateway {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  color: #000;
  padding: 20px 40px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all 0.3s;
}
.btn-gateway.yellow:hover { background: var(--yellow); }
.btn-gateway.red:hover { background: var(--trucos-red); color: #fff; }

/* ── LEGACY SECTION ── */
.legacy-section {
  padding: 8rem 2rem;
  background: #fff;
  text-align: center;
}
.section-tag {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--yellow-hover);
  display: block;
  margin-bottom: 2rem;
}
.legacy-title {
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin-bottom: 3rem;
  color: #000;
}
.legacy-title .outline {
  color: transparent;
  -webkit-text-stroke: 1px #e5e7eb;
}
.legacy-desc {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--gray-400);
  font-weight: 500;
  line-height: 1.7;
  max-width: 48rem;
  margin: 0 auto;
}

/* ── PRODUCT SHOWCASE ── */
.showcase-section {
  padding: 6rem 2rem;
  background: #fff;
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
.showcase-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  cursor: pointer;
}
.showcase-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.showcase-card:hover img { transform: scale(1.1); }
.showcase-card .gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.9), rgba(0,0,0,.4), transparent);
}
.showcase-card-content {
  position: relative;
  z-index: 2;
  transform: translateY(16px);
  transition: transform 0.5s;
}
.showcase-card:hover .showcase-card-content { transform: translateY(0); }
.showcase-card h3 {
  font-size: 1.8rem;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.showcase-card p {
  font-size: 13px;
  color: #9ca3af;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.5s 0.1s;
}
.showcase-card:hover p { opacity: 1; }
.showcase-bar {
  margin-top: 1.5rem;
  height: 4px;
  width: 48px;
  background: var(--yellow);
  border-radius: 2px;
  transition: width 0.5s;
}
.showcase-card:hover .showcase-bar { width: 100%; }

/* ── REVIEWS ── */
.reviews-section {
  padding: 6rem 2rem;
  background: #fff;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.review-card {
  padding: 2.5rem;
  background: rgba(249,250,251,.3);
  border: 2px solid var(--gray-50);
  border-radius: 24px;
  position: relative;
}
.stars { display: flex; gap: 4px; margin-bottom: 1.5rem; }
.star { color: var(--yellow); font-size: 16px; }
.star.empty { opacity: 0.2; }
.review-text {
  font-size: 1.05rem;
  color: var(--gray-700);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.reviewer-name {
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: -0.02em;
  font-size: 1rem;
}
.reviewer-role {
  font-size: 11px;
  color: var(--gray-500);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.quote-icon {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  color: var(--yellow);
  opacity: 0.15;
  font-size: 4rem;
  line-height: 1;
}


.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1100;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.22);
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  color: #fff;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 28px rgba(0,0,0,.28);
}
.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}
/* ── ENQUIRY FORM ── */
.enquiry-section {
  padding: 6rem 2rem;
  background: var(--yellow);
  border-bottom: 8px solid #000;
}
.enquiry-card {
  background: #fff;
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  box-shadow: 0 25px 60px rgba(0,0,0,.2);
  max-width: var(--container);
  margin: 0 auto;
}
.enquiry-left {
  width: 50%;
  background: #000;
  color: #fff;
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.enquiry-tag {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--yellow);
  margin-bottom: 1rem;
}
.enquiry-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
  line-height: 1;
}
.enquiry-desc {
  font-size: 1.1rem;
  color: var(--gray-400);
  font-weight: 500;
  margin-bottom: 3rem;
  line-height: 1.7;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: #111;
  border: 1px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  flex-shrink: 0;
}
.contact-label {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray-500);
}
.contact-value {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}
.enquiry-right {
  width: 50%;
  padding: 5rem;
  background: #fff;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.form-group { margin-bottom: 2rem; }
.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #fff;
  color: #000;
  border: none;
  border-bottom: 2px solid var(--gray-100);
  padding: 12px 0;
  font-size: 1.1rem;
  font-weight: 700;
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color: var(--yellow); }
.form-group textarea { min-height: 120px; resize: vertical; }
.btn-submit {
  width: 100%;
  background: #000;
  color: #fff;
  border: none;
  padding: 20px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}
.btn-submit:hover { background: var(--yellow); color: #000; }
.btn-submit:active { transform: scale(0.98); }

/* ── FOOTER ── */
.site-footer {
  background: #000;
  color: #fff;
  padding: 6rem 2rem 3rem;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 4fr 2fr 2fr 4fr;
  gap: 4rem;
  margin-bottom: 6rem;
}
.footer-brand-logo { height: 48px; width: auto; filter: brightness(0) invert(1); margin-bottom: 2rem; }
.footer-brand-desc {
  color: var(--gray-400);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  max-width: 24rem;
  margin-bottom: 2rem;
}
.footer-socials { display: flex; gap: 1rem; }
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s;
}
.social-btn:hover { background: var(--yellow); color: #000; }
.footer-section-title {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gray-500);
  margin-bottom: 2rem;
}
.footer-links { display: flex; flex-direction: column; gap: 1rem; }
.footer-links a {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--yellow); }
.footer-contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.footer-contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  flex-shrink: 0;
}
.footer-contact-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-contact-value { font-size: 12px; color: var(--gray-500); margin-top: 2px; line-height: 1.6; }
.footer-bottom {
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-copy {
  font-size: 10px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
}
.footer-copy a { color: inherit; transition: color 0.2s; }
.footer-copy a:hover { color: var(--yellow); }
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray-500);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--yellow); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative;
  background: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.page-hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 2rem 4rem;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.page-hero-tag {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--yellow);
  display: block;
  margin-bottom: 1rem;
}
.page-hero-title {
  font-size: clamp(3.5rem, 10vw, 9rem);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.85;
  margin-bottom: 1.5rem;
}
.page-hero-title .outline { color: transparent; -webkit-text-stroke: 2px #fff; }
.page-hero-desc { font-size: clamp(1rem, 2vw, 1.4rem); color: var(--gray-400); font-weight: 700; font-style: italic; max-width: 36rem; }

/* ── SERVICES PAGE ── */
.pillars-section { padding: 6rem 2rem; background: #fff; }
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.pillar-card {
  padding: 2.5rem;
  border-radius: 32px;
  border: 1px solid var(--gray-100);
  transition: transform 0.5s;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.pillar-card:hover { transform: translateY(-8px); }
.pillar-card:nth-child(even) { background: #fffef0; }
.pillar-card:nth-child(odd) { background: var(--gray-50); }
.pillar-icon {
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  color: #000;
  transition: background 0.3s;
}
.pillar-card:hover .pillar-icon { background: var(--yellow); }
.pillar-title {
  font-size: 1.4rem;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  line-height: 1;
}
.pillar-desc { font-size: 13px; color: var(--gray-900); font-weight: 700; line-height: 1.7; }

.categories-section { padding: 6rem 2rem; background: var(--gray-50); border-top: 1px solid var(--gray-100); }
.section-title {
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.9;
}
.section-title .outline { color: transparent; -webkit-text-stroke: 1px #000; }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.category-card {
  background: #fff;
  border-radius: 32px;
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: all 0.5s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.category-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,.1); }
.category-img-wrap { width: 100%; aspect-ratio: 1; overflow: hidden; border-radius: 16px; background: var(--gray-50); margin-bottom: 2rem; }
.category-img-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 1rem; transition: transform 0.7s; }
.category-card:hover .category-img-wrap img { transform: scale(1.1); }
.category-title { font-size: 1.4rem; font-weight: 900; font-style: italic; text-transform: uppercase; letter-spacing: -0.03em; color: #000; line-height: 1.1; }
.category-bar { width: 48px; height: 4px; background: var(--yellow); border-radius: 2px; margin: 1rem auto 0; transition: width 0.5s; }
.category-card:hover .category-bar { width: 100%; }
.category-card.featured { grid-column: span 2; flex-direction: row; text-align: left; gap: 2rem; }
.category-card.featured .category-img-wrap { width: 50%; aspect-ratio: 16/10; flex-shrink: 0; margin-bottom: 0; }
.category-card.featured .category-bar { margin: 1rem 0 0; }

/* Brand Process */
.process-section { padding: 8rem 2rem; background: #000; color: #fff; border-top: 1px solid #111; }
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2rem; }
.process-step {
  background: rgba(255,255,255,.03);
  border: 1px solid #222;
  border-radius: 40px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: border-color 0.5s;
}
.process-step:hover { border-color: var(--yellow); }
.process-icon { color: var(--yellow); margin-bottom: 2rem; transition: transform 0.5s; }
.process-step:hover .process-icon { transform: scale(1.1); }
.process-step-title {
  font-size: 1.4rem;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  line-height: 1;
}
.process-step-desc { font-size: 13px; color: var(--gray-500); font-weight: 500; line-height: 1.7; }

/* Customization Specs */
.specs-section { padding: 6rem 2rem; background: var(--gray-50); border-top: 1px solid var(--gray-100); }
.specs-subsection { margin-bottom: 6rem; }
.specs-subsection-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 2.5rem; }
.specs-subsection-header h3 { font-size: 1.3rem; font-weight: 900; font-style: italic; text-transform: uppercase; letter-spacing: -0.02em; white-space: nowrap; }
.specs-subsection-header .line { flex-grow: 1; height: 1px; background: var(--gray-200); }
.specs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.spec-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s;
}
.spec-card:hover { border-color: var(--yellow); }
.spec-img-wrap { height: 224px; overflow: hidden; }
.spec-img-wrap img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transition: all 0.7s; }
.spec-card:hover .spec-img-wrap img { filter: grayscale(0); transform: scale(1.1); }
.spec-img-wrap.contain img { object-fit: contain; padding: 1rem; }
.spec-card p { padding: 2rem; font-size: 1.1rem; font-weight: 900; font-style: italic; text-transform: uppercase; letter-spacing: -0.02em; text-align: center; }

/* ── GALLERY PAGE ── */
.gallery-page { padding-top: 80px; min-height: 100vh; background: #fff; }
.gallery-header { padding: 4rem 2rem 2rem; text-align: center; max-width: var(--container); margin: 0 auto; }
.gallery-title { font-size: clamp(2.5rem, 7vw, 6rem); font-weight: 900; font-style: italic; text-transform: uppercase; letter-spacing: -0.04em; margin-bottom: 1rem; }
.gallery-subtitle { color: var(--gray-500); font-weight: 500; max-width: 30rem; margin: 0 auto 3rem; }
.gallery-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-bottom: 4rem; }
.filter-btn {
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: 2px solid var(--gray-100);
  color: var(--gray-400);
  background: transparent;
  transition: all 0.3s;
  cursor: pointer;
}
.filter-btn:hover { border-color: var(--yellow); color: #000; }
.filter-btn.active { background: #000; color: #fff; border-color: #000; transform: scale(1.05); box-shadow: 0 4px 12px rgba(0,0,0,.15); }
.gallery-grid {
  columns: 4;
  column-gap: 1.5rem;
  padding: 0 2rem 4rem;
  max-width: var(--container);
  margin: 0 auto;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(229,231,235,.6);
  background: #f9fafb;
  transition: all 0.5s;
  cursor: pointer;
}
.gallery-item:hover { box-shadow: 0 20px 40px rgba(0,0,0,.15); transform: translateY(-4px); }
.gallery-item img { width: 100%; height: auto; object-fit: cover; display: block; transition: transform 0.7s; }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0,0,0,.8);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: 1px solid rgba(255,255,255,.1);
}
.gallery-item-title {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.3s;
  z-index: 2;
}
.gallery-item:hover .gallery-item-title { opacity: 1; transform: translateY(0); }
.gallery-empty {
  text-align: center;
  padding: 5rem 2rem;
  background: var(--gray-50);
  border-radius: 32px;
  border: 2px dashed var(--gray-100);
  margin: 0 2rem 4rem;
}
.gallery-empty p { color: var(--gray-400); font-weight: 700; margin-bottom: 0.5rem; }
.gallery-empty small { color: var(--gray-200); font-size: 12px; }

/* ── ALANS FIT PAGE ── */
.alans-overview-section { padding: 6rem 2rem; background: rgba(250,251,252,.5); border-bottom: 1px solid var(--gray-100); }
.alans-overview-grid { display: grid; grid-template-columns: 7fr 5fr; gap: 5rem; align-items: center; max-width: var(--container); margin: 0 auto; }
.alans-overview-title { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 900; font-style: italic; text-transform: uppercase; letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 2rem; }
.alans-overview-title span { color: var(--yellow-hover); font-style: normal; font-weight: 300; letter-spacing: 0.05em; display: block; margin-top: 0.25rem; font-size: 0.6em; text-transform: none; }
.alans-overview-text-primary { font-size: 1.1rem; font-weight: 700; color: #1a1a1a; line-height: 1.7; margin-bottom: 1.5rem; }
.alans-overview-text { font-size: 14px; color: var(--gray-500); line-height: 1.8; }
.alans-img-wrap { position: relative; aspect-ratio: 4/5; border-radius: 36px; overflow: hidden; border: 1px solid var(--gray-200); box-shadow: 0 20px 50px rgba(0,0,0,.06); }
.alans-img-wrap img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transition: all 1s; }
.alans-img-wrap:hover img { filter: grayscale(0); transform: scale(1.05); }

.usps-section { padding: 6rem 2rem; background: #fff; }
.usps-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
.usp-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  height: 320px;
  background: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  border: 1px solid #111;
  transition: transform 0.5s;
}
.usp-card:hover { transform: translateY(-6px); }
.usp-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.35; transition: transform 1s; }
.usp-card:hover img { transform: scale(1.1); }
.usp-card .usp-overlay { position: absolute; inset: 0; background: linear-gradient(to top, #0a0a0e, rgba(15,15,25,.9), transparent); }
.usp-card-content { position: relative; z-index: 2; }
.usp-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  margin-bottom: 1rem;
  transition: background 0.3s;
}
.usp-card:hover .usp-icon { background: var(--yellow); color: #000; }
.usp-title { font-size: 1rem; font-weight: 900; font-style: italic; text-transform: uppercase; letter-spacing: -0.02em; color: #fff; margin-bottom: 0.5rem; transition: color 0.3s; }
.usp-card:hover .usp-title { color: var(--yellow); }
.usp-desc { font-size: 12px; color: rgba(200,200,200,.8); font-weight: 500; line-height: 1.6; }

.action-section { padding: 6rem 2rem; background: var(--gray-50); border-top: 1px solid var(--gray-100); }
.action-grid { columns: 5; column-gap: 1.5rem; margin-bottom: 4rem; }
.action-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(229,231,235,.8);
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
  transition: all 0.7s;
  background: #111;
}
.action-item:hover { box-shadow: 0 20px 40px rgba(0,0,0,.15); transform: translateY(-6px); }
.action-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.action-item:hover img { transform: scale(1.1); }
.action-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.8), rgba(0,0,0,.05), transparent); }
.action-label { position: absolute; bottom: 1.25rem; left: 1.25rem; right: 1.25rem; z-index: 2; transform: translateY(4px); transition: transform 0.5s; }
.action-item:hover .action-label { transform: translateY(0); }
.action-label-tag { font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.15em; color: var(--yellow); display: block; margin-bottom: 2px; }
.action-label-name { font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.1em; color: #fff; }

.stats-banner {
  background: #000;
  border-radius: 40px;
  padding: 4rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,.2);
}
.stats-banner::before,
.stats-banner::after {
  content: '';
  position: absolute;
  width: 384px;
  height: 384px;
  background: var(--yellow);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.1;
}
.stats-banner::before { top: 0; left: 0; }
.stats-banner::after { bottom: 0; right: 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
  text-align: center;
}
.stat-item { padding: 0 1rem; }
.stat-item:not(:last-child) { border-right: 1px solid rgba(255,255,255,.1); }
.stat-number { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; font-style: italic; color: var(--yellow); display: block; margin-bottom: 0.5rem; }
.stat-label { font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gray-400); }

/* ── CONTACT PAGE ── */
.contact-info-section { padding: 6rem 2rem; background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; max-width: var(--container); margin: 0 auto; }
.contact-details { display: flex; flex-direction: column; gap: 3rem; }
.contact-detail-item {}
.contact-detail-icon-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.contact-detail-icon {
  background: var(--yellow);
  padding: 12px;
  border-radius: 16px;
  color: #000;
  display: flex;
}
.contact-detail-title { font-size: 1.4rem; font-weight: 900; font-style: italic; text-transform: uppercase; letter-spacing: -0.02em; }
.contact-detail-text { font-size: 1.1rem; font-weight: 700; color: var(--gray-600); line-height: 1.7; }
.hours-list li { display: flex; justify-content: space-between; font-size: 1.1rem; font-weight: 700; color: var(--gray-600); margin-bottom: 0.5rem; }
.hours-list li.closed { color: #ef4444; }
.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #000;
  color: #fff;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 1.5rem;
  transition: all 0.3s;
}
.btn-directions:hover { background: var(--yellow); color: #000; }
.map-wrap {
  border-radius: 48px;
  overflow: hidden;
  border: 8px solid var(--gray-50);
  box-shadow: 0 25px 50px rgba(0,0,0,.1);
  position: relative;
  min-height: 500px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) contrast(1.2); min-height: 500px; transition: filter 1s; }
.map-wrap:hover iframe { filter: none; }
.map-tooltip {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: #000;
  color: #fff;
  padding: 1.5rem;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
  max-width: 180px;
  opacity: 0;
  transition: opacity 0.5s;
}
.map-wrap:hover .map-tooltip { opacity: 1; }
.map-tooltip-tag { font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.15em; color: var(--yellow); margin-bottom: 0.5rem; }
.map-tooltip-text { font-size: 13px; font-weight: 700; line-height: 1.4; }

/* ── TRUCOS PAGE ── */
.trucos-page { background: var(--trucos-navy); color: #fff; }
.trucos-hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; overflow: hidden; }
.trucos-hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.6; transform: scale(1.05); }
.trucos-hero .gradient { position: absolute; inset: 0; background: linear-gradient(to top, var(--trucos-navy), rgba(22,16,56,.6), transparent); }
.trucos-hero-content { position: relative; z-index: 2; padding: 2rem 2rem 4rem; max-width: var(--container); margin: 0 auto; width: 100%; }
.trucos-wordmark { font-size: clamp(3rem, 8vw, 7rem); font-weight: 900; font-style: italic; letter-spacing: -0.04em; line-height: 0.9; color: #fff; margin-bottom: 0.5rem; }
.trucos-retail-tag { font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.5em; color: var(--trucos-red); display: block; margin-bottom: 3rem; }
.trucos-red-line { display: inline-block; height: 2px; width: 48px; background: var(--trucos-red); vertical-align: middle; margin-right: 0.75rem; }
.trucos-section-tag { font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.4em; color: var(--trucos-red); display: inline-block; }
.trucos-hero-title {
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: #fff;
  margin-bottom: 1.5rem;
}
.trucos-hero-title .outline-red { color: transparent; -webkit-text-stroke: 2px var(--trucos-red); }
.trucos-hero-desc { font-size: 1.2rem; font-weight: 700; color: #d1d5db; font-style: italic; max-width: 36rem; margin-bottom: 2.5rem; }
.btn-trucos-shop {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--trucos-red);
  color: #fff;
  padding: 16px 40px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all 0.3s;
  box-shadow: 0 10px 20px rgba(188,32,46,.25);
}
.btn-trucos-shop:hover { background: #fff; color: #000; }

.trucos-brand-section { padding: 6rem 2rem; background: #0d091a; text-align: center; }
.trucos-divider { height: 1px; width: 128px; background: var(--trucos-red); margin: 0 auto; }
.trucos-usps-section { padding: 6rem 2rem; border-top: 1px solid rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.05); }
.trucos-usps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem; }
.trucos-usp { display: flex; flex-direction: column; gap: 1rem; }
.trucos-usp-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(188,32,46,.1);
  color: var(--trucos-red);
}
.trucos-usp-title { font-size: 1.2rem; font-weight: 900; font-style: italic; text-transform: uppercase; letter-spacing: -0.02em; }
.trucos-usp-desc { font-size: 13px; font-weight: 700; color: #71717a; }

.trucos-collection-section { padding: 6rem 2rem; background: #0d091a; }
.trucos-collection-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.trucos-product-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  aspect-ratio: 4/5;
  background: #18181b;
  border: 1px solid rgba(255,255,255,.05);
}
.trucos-product-card img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; transition: all 0.7s; }
.trucos-product-card:hover img { opacity: 1; transform: scale(1.1); }
.trucos-product-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(22,16,56,.9), rgba(22,16,56,.2), transparent); display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem; }
.trucos-product-title { font-size: 1.4rem; font-weight: 900; font-style: italic; text-transform: uppercase; letter-spacing: -0.02em; color: #fff; margin-bottom: 1rem; }
.trucos-product-items { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; transform: translateY(16px); opacity: 0; transition: all 0.5s; }
.trucos-product-card:hover .trucos-product-items { transform: translateY(0); opacity: 1; }
.trucos-product-items li { font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.1em; color: var(--trucos-red); display: flex; align-items: center; gap: 0.5rem; }
.trucos-product-items li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--trucos-red); }

.trucos-science-section { padding: 6rem 2rem; border-top: 1px solid rgba(255,255,255,.05); }
.trucos-science-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.trucos-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.trucos-stat-card { border-radius: 32px; padding: 2rem; display: flex; flex-direction: column; justify-content: center; text-align: center; aspect-ratio: 1; }
.trucos-stat-card.dark { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.05); }
.trucos-stat-card.red { background: var(--trucos-red); }
.trucos-stat-number { font-size: 2.5rem; font-weight: 900; font-style: italic; color: #fff; margin-bottom: 0.5rem; }
.trucos-stat-label { font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.15em; }
.trucos-stat-card.dark .trucos-stat-label { color: #71717a; }
.trucos-stat-card.red .trucos-stat-label { color: rgba(255,255,255,.6); }
.science-feature { display: flex; gap: 1.5rem; margin-bottom: 2rem; }
.science-feature-icon { flex-shrink: 0; width: 48px; height: 48px; background: rgba(255,255,255,.05); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--trucos-red); }
.science-feature-title { font-size: 1.2rem; font-weight: 900; font-style: italic; text-transform: uppercase; letter-spacing: -0.02em; color: #fff; margin-bottom: 0.5rem; }
.science-feature-desc { font-size: 13px; font-weight: 500; color: #71717a; }

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 5rem; }
.section-header .section-tag { display: block; margin-bottom: 1rem; }
.section-header .section-title { margin: 0 auto; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid, .usps-grid { grid-template-columns: repeat(2, 1fr); }
  .trucos-collection-grid, .trucos-usps-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .action-grid { columns: 3; }
  .specs-grid { grid-template-columns: repeat(3, 1fr); }
  .category-card.featured { grid-column: span 2; }
}
@media (max-width: 900px) {
  .pillars-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .categories-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-card.featured { grid-column: span 1; flex-direction: column; }
  .category-card.featured .category-img-wrap { width: 100%; aspect-ratio: 1; }
}
@media (max-width: 768px) {
  .pillars-section {
    padding-left: 0;
    padding-right: 0;
  }
  .pillars-section .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .pillars-grid {
    grid-template-columns: repeat(2, minmax(0, 50%));
    gap: 0.75rem;
  }
  .pillar-card {
    padding: 1rem;
    border-radius: 18px;
    min-height: 0;
    width: 100%;
  }
  .pillar-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 1rem;
  }
  .pillar-title {
    font-size: 1rem;
    line-height: 1.1;
    margin-bottom: 0.75rem;
  }
  .pillar-desc {
    font-size: 11px;
    line-height: 1.5;
  }
  .specs-section {
    padding-left: 0;
    padding-right: 0;
  }
  .specs-section .container {
    max-width: none;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .specs-grid {
    gap: 0.75rem;
  }
  .spec-card {
    min-height: 0;
  }
  .spec-card p {
    padding: 1rem 0.75rem 1.25rem;
    font-size: 1rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    word-break: normal;
    overflow-wrap: anywhere;
  }
  .categories-section {
    padding: 2rem 20px;
  }
  .categories-section .container {
    padding-left: 0;
    padding-right: 0;
  }
  .categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
    margin-top: 0;
  }
  .category-card {
    padding: 0.5rem;
    border-radius: 16px;
  }
  .category-img-wrap {
    margin-bottom: 0.5rem;
    border-radius: 10px;
    aspect-ratio: 1;
  }
  .category-title {
    font-size: 0.72rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
  }
  .category-bar {
    margin-top: 0.4rem;
    width: 22px;
    height: 3px;
  }
  .section-header {
    margin-bottom: 1.2rem;
  }

  #site-header nav {
    height: 64px;
    padding: 0 1rem;
  }
  .nav-logo img { height: 32px; }
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-toggle { display: flex; }
  .hero-section {
    min-height: 760px;
    height: 100vh;
  }
  .hero-content {
    padding: 0 3.25rem;
    max-width: 100%;
  }
  .hero-badge {
    font-size: 10px;
    letter-spacing: 0.12em;
    padding: 5px 14px;
    margin-bottom: 1rem;
  }
  .hero-title {
    font-size: clamp(2.3rem, 12.5vw, 4.8rem);
    line-height: 0.86;
    margin-bottom: 1rem;
    max-width: 10.5ch;
    margin-left: auto;
    margin-right: auto;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .hero-desc {
    font-size: 1rem;
    margin: 0 auto 2rem;
    max-width: 23rem;
  }
  .hero-btns {
    flex-direction: column;
    gap: 0.9rem;
    align-items: center;
  }
  .btn-primary,
  .btn-outline,
  .btn-gateway {
    width: min(100%, 280px);
    justify-content: center;
    text-align: center;
    padding-inline: 24px;
  }
  .hero-nav-btn {
    width: 38px;
    height: 38px;
    top: auto;
    bottom: 7rem;
    transform: none;
    opacity: 0.9;
  }
  .hero-prev { left: 1rem; }
  .hero-next { right: 1rem; }
  .hero-dot {
    width: 28px;
  }
  .hero-dot.active { width: 60px; }
  .gateway-section,
  .legacy-section,
  .showcase-section,
  .reviews-section,
  .enquiry-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .process-section {
    padding-left: 0;
    padding-right: 0;
  }
  .process-section .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }
  .process-step {
    padding: 1rem;
    border-radius: 20px;
    width: 100%;
    max-width: 100%;
  }
  .process-icon {
    margin-bottom: 1rem;
  }
  .process-step-title {
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }
  .process-step-desc {
    font-size: 11px;
    line-height: 1.5;
  }
  .gateway-grid, .reviews-grid, .alans-overview-grid,
  .contact-grid, .trucos-science-grid, .stats-grid { grid-template-columns: 1fr; }
  .reviews-grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
  }
  .reviews-grid::-webkit-scrollbar { display: none; }
  .reviews-grid .review-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    padding: 1.5rem;
  }
  .gateway-card {
    height: 430px;
    border-radius: 24px;
    padding: 1.5rem;
  }
  .gateway-logo { height: 42px; }
  .gateway-desc {
    font-size: 0.98rem;
    margin-bottom: 1.5rem;
  }
  .enquiry-card { flex-direction: column; }
  .enquiry-left, .enquiry-right { width: 100%; padding: 2.5rem; }
  .enquiry-left { padding: 3rem 2.5rem; }
  .showcase-grid { grid-template-columns: 1fr 1fr; }
  .categories-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .trucos-collection-grid, .trucos-usps-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
  .category-card {
    padding: 1rem;
  }
  .category-title {
    font-size: 1.05rem;
    line-height: 1.15;
  }
  .action-grid { columns: 2; }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .category-card.featured { grid-column: span 1; flex-direction: column; }
  .category-card.featured .category-img-wrap { width: 100%; aspect-ratio: 1; }
}
@media (max-width: 480px) {
  .hero-section {
    min-height: 700px;
  }
  .hero-content {
    padding: 0 1.25rem;
  }
  .hero-badge {
    font-size: 9px;
  }
  .hero-title {
    font-size: clamp(2rem, 15vw, 3.3rem);
    max-width: 9.5ch;
  }
  .hero-desc {
    font-size: 0.95rem;
  }
  .hero-nav-btn {
    display: none;
  }
  .gallery-grid { columns: 1; }
  .action-grid { columns: 1; }
  .showcase-grid { grid-template-columns: 1fr; }
  .trucos-stat-grid { grid-template-columns: 1fr 1fr; }
  .gateway-card { height: 380px; }
  .showcase-card { height: 420px; }
}
