/* ============================================
   HOME WIZARDYLAB - Estilo "índice visual"
   Variables base reutilizadas de landingFichaje.css
   ============================================ */

/* === RESET Y BASE === */
.home-page {
  background: #1a1a1f;
  color: white;
  font-family: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.home-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* === HEADER (igual que landings) === */
.home-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(26, 26, 31, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.home-header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home-header.scrolled {
  background: rgba(21, 21, 26, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.home-header-logo img { height: 48px; width: auto; }

/* Header right (idioma + CTA) */
.home-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Dropdown idioma */
.home-lang-dropdown .home-lang-btn {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, border-color 0.2s;
}

.home-lang-dropdown .home-lang-btn:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.25);
}

.home-lang-dropdown .home-lang-btn::after {
  margin-left: 4px;
  border-top-color: rgba(255, 255, 255, 0.5);
}

.home-lang-dropdown .dropdown-menu {
  background: #1a1a1f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 8px;
  min-width: auto;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.home-lang-dropdown .dropdown-item {
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.home-lang-dropdown .dropdown-item:hover {
  background: rgba(55, 100, 237, 0.15);
  color: white;
}

.home-nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.home-nav-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.home-nav-links a:hover { color: white; }

.home-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #3764ed;
  color: white;
  padding: 12px 22px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(55, 100, 237, 0.3);
}

.home-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(55, 100, 237, 0.45);
  color: white;
}

.home-nav-cta svg { width: 16px; height: 16px; }

/* === HERO RESPIRADO === */
.home-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  position: relative;
  background: #1a1a1f;
}

.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(55, 100, 237, 0.08) 0%, transparent 70%);
}

.home-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.home-hero-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: rgba(55, 100, 237, 1);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 32px;
  padding: 8px 20px;
  border: 1px solid rgba(55, 100, 237, 0.3);
  border-radius: 100px;
  background: rgba(55, 100, 237, 0.05);
}

.home-hero h1 {
  font-size: clamp(44px, 6.5vw, 84px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: white;
  margin: 0 0 32px;
}

.home-hero h1 .accent {
  color: #3764ed;
}

.home-hero-sub {
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  max-width: 720px;
  margin: 0 auto 48px;
  font-weight: 400;
}

.home-hero-sub strong { color: white; font-weight: 700; }

.home-hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.home-hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #3764ed;
  color: white;
  padding: 18px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(55, 100, 237, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.home-hero-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(55, 100, 237, 0.5);
  color: white;
}

.home-hero-cta-primary svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: white;
  stroke-width: 2.5;
}

.home-hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  padding: 18px 24px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.2s;
}

.home-hero-cta-secondary:hover { color: white; }

.home-hero-cta-secondary svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  transition: transform 0.2s;
}

.home-hero-cta-secondary:hover svg { transform: translateY(2px); }

/* === SECCIÓN GENÉRICA === */
.home-section {
  padding: 120px 0;
  position: relative;
}

.home-section-header {
  text-align: center;
  margin-bottom: 80px;
}

.home-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #3764ed;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}

.home-section-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: white;
  margin: 0 0 16px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.home-section-header h2 .accent {
  color: #3764ed;
  font-style: italic;
}

.home-section-sub {
  font-size: 19px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  max-width: 640px;
  margin: 0 auto;
}

/* === PRODUCTOS — CARDS GRANDES CON MINI-VISUALES === */
.home-products {
  background: #1a1a1f;
}

.home-products-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.home-product {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 56px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 32px;
  transition: transform 0.4s, border-color 0.4s, background 0.4s;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.home-product:hover {
  transform: translateY(-4px);
  border-color: rgba(55, 100, 237, 0.35);
  background: rgba(55, 100, 237, 0.04);
  color: inherit;
}

/* Alternancia: el segundo invierte */
.home-product:nth-child(even) {
  grid-template-columns: 1fr 1.2fr;
}

.home-product:nth-child(even) .home-product-text {
  order: 2;
}

.home-product:nth-child(even) .home-product-visual {
  order: 1;
}

.home-product-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #3764ed;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
  padding: 6px 12px;
  background: rgba(55, 100, 237, 0.1);
  border-radius: 100px;
}

.home-product h3 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: white;
  margin: 0 0 16px;
  line-height: 1.1;
}

.home-product-desc {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 24px;
}

.home-product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.home-product-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.home-product-features svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #3764ed;
  stroke-width: 3;
  flex-shrink: 0;
}

.home-product-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #3764ed;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.home-product-cta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  transition: transform 0.3s;
}

.home-product:hover .home-product-cta svg {
  transform: translateX(6px);
}

/* === MINI-VISUAL: FICHAJE (reloj) === */
.home-visual-fichaje {
  position: relative;
  aspect-ratio: 1;
  max-width: 380px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-visual-fichaje-clock {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(55, 100, 237, 0.15) 0%, rgba(55, 100, 237, 0.03) 100%);
  border: 2px solid rgba(55, 100, 237, 0.2);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 80px rgba(55, 100, 237, 0.08);
}

.home-visual-fichaje-time {
  font-size: 56px;
  font-weight: 900;
  color: white;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  line-height: 1;
}

.home-visual-fichaje-time .colon {
  color: #3764ed;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.3; }
}

.home-visual-fichaje-label {
  position: absolute;
  bottom: 28%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
}

.home-visual-fichaje-check {
  position: absolute;
  top: 18%;
  right: 18%;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.4);
  transform: rotate(-8deg);
}

.home-visual-fichaje-check svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: white;
  stroke-width: 3;
}

/* Marcas de horas en el reloj */
.home-visual-fichaje-marks {
  position: absolute;
  inset: 16px;
  border-radius: 50%;
}

.home-visual-fichaje-marks::before,
.home-visual-fichaje-marks::after {
  content: '';
  position: absolute;
  background: rgba(55, 100, 237, 0.4);
  border-radius: 2px;
}

.home-visual-fichaje-marks::before {
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 12px;
}

.home-visual-fichaje-marks::after {
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 12px;
}

/* === MINI-VISUAL: TPV (ticket con QR) === */
.home-visual-tpv {
  max-width: 320px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  padding: 24px 20px;
  position: relative;
  font-family: 'Courier New', monospace;
  color: #242424;
  transform: rotate(-3deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.home-visual-tpv::before,
.home-visual-tpv::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 10px;
}

.home-visual-tpv::before {
  top: -5px;
  background: radial-gradient(circle at 5px 0, transparent 4px, white 4px) 0 0/10px 10px;
}

.home-visual-tpv::after {
  bottom: -5px;
  background: radial-gradient(circle at 5px 10px, transparent 4px, white 4px) 0 0/10px 10px;
}

.home-visual-tpv-title {
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.home-visual-tpv-meta {
  text-align: center;
  font-size: 9px;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.15);
}

.home-visual-tpv-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  padding: 3px 0;
  font-weight: 500;
}

.home-visual-tpv-total {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px dashed rgba(0, 0, 0, 0.15);
  font-size: 14px;
  font-weight: 800;
}

.home-visual-tpv-verifactu {
  margin-top: 14px;
  padding: 12px;
  background: linear-gradient(135deg, #3764ed 0%, #2548b8 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-visual-tpv-qr {
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 4px;
  flex-shrink: 0;
  padding: 4px;
}

.home-visual-tpv-qr svg {
  width: 100%;
  height: 100%;
}

.home-visual-tpv-vfinfo {
  color: white;
  flex: 1;
  font-family: -apple-system, sans-serif;
}

.home-visual-tpv-vflabel {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
  margin-bottom: 2px;
}

.home-visual-tpv-vfhash {
  font-size: 9px;
  font-family: 'Courier New', monospace;
  opacity: 0.95;
  word-break: break-all;
}

/* === MINI-VISUAL: SOFTWARE A MEDIDA (ecuación) === */
.home-visual-software {
  position: relative;
  aspect-ratio: 1;
  max-width: 380px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: linear-gradient(145deg, rgba(55, 100, 237, 0.08) 0%, rgba(55, 100, 237, 0.02) 100%);
  border: 1px solid rgba(55, 100, 237, 0.15);
  border-radius: 32px;
  text-align: center;
  overflow: hidden;
}

.home-visual-software::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(55, 100, 237, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55, 100, 237, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.home-visual-software-eq {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

.home-visual-software-eq .row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.home-visual-software-eq .symbol {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
}

.home-visual-software-eq .you {
  color: white;
}

.home-visual-software-eq .us {
  color: #3764ed;
  font-style: italic;
  font-weight: 800;
}

.home-visual-software-eq .result {
  color: white;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* === GARANTÍAS — STAMPS CIRCULARES === */
.home-stamps {
  background: #15151a;
  position: relative;
}

.home-stamps::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(55, 100, 237, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 75% 75%, rgba(55, 100, 237, 0.04) 0%, transparent 40%);
  pointer-events: none;
}

.home-stamps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}

.home-stamp {
  text-align: center;
  position: relative;
}

.home-stamp-circle {
  width: 140px;
  height: 140px;
  margin: 0 auto 24px;
  border-radius: 50%;
  border: 2px dashed rgba(55, 100, 237, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: rgba(55, 100, 237, 0.03);
  transition: transform 0.4s, border-color 0.4s;
}

.home-stamp:hover .home-stamp-circle {
  transform: rotate(-6deg) scale(1.05);
  border-color: rgba(55, 100, 237, 0.7);
}

.home-stamp-circle::before,
.home-stamp-circle::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(55, 100, 237, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.home-stamp-circle::before {
  inset: 8px;
}

.home-stamp-circle::after {
  inset: -10px;
  border-style: dotted;
  opacity: 0.5;
}

.home-stamp-num {
  font-size: 14px;
  font-weight: 800;
  color: #3764ed;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  font-family: 'Courier New', monospace;
}

.home-stamp-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-stamp-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: white;
  stroke-width: 1.8;
}

.home-stamp h4 {
  font-size: 17px;
  font-weight: 800;
  color: white;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.home-stamp p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin: 0;
  max-width: 220px;
  margin: 0 auto;
}

/* === OTROS SERVICIOS — CINTA HORIZONTAL === */
.home-other {
  padding: 80px 0;
  background: #1a1a1f;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.home-other-content {
  text-align: center;
}

.home-other-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 20px;
}

.home-other-list {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: -0.02em;
  line-height: 1.4;
  max-width: 920px;
  margin: 0 auto 32px;
}

.home-other-list .sep {
  color: #3764ed;
  margin: 0 12px;
  font-weight: 300;
}

.home-other-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #3764ed;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.home-other-cta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  transition: transform 0.2s;
}

.home-other-cta:hover { color: #5a82f5; }
.home-other-cta:hover svg { transform: translateX(4px); }

/* === QUIÉNES SOMOS BREVE === */
.home-about {
  padding: 100px 0;
  background: #1a1a1f;
}

.home-about-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.home-about-content h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: white;
  margin: 0 0 24px;
  line-height: 1.1;
}

.home-about-content p {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 16px;
}

.home-about-content p strong {
  color: white;
  font-weight: 700;
}

/* === CTA FINAL — TONO INSTITUCIONAL === */
.home-cta {
  padding: 120px 0;
  background: #15151a;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.home-cta-content {
  max-width: 640px;
  margin: 0 auto;
}

.home-cta h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: white;
  margin: 0 0 20px;
  line-height: 1.05;
}

.home-cta p {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 40px;
}

.home-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #3764ed;
  color: white;
  padding: 20px 36px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(55, 100, 237, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.home-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(55, 100, 237, 0.55);
  color: white;
}

.home-cta-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: white;
  stroke-width: 2.5;
}

.home-cta-note {
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
}

/* === FOOTER === */
.home-footer {
  background: #15151a;
  padding: 60px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.home-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.home-footer-brand img {
  height: 48px;
  margin-bottom: 16px;
}

.home-footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin: 0;
}

.home-footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0 0 20px;
}

.home-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.home-footer-col li { margin-bottom: 10px; }

.home-footer-col a, .home-footer-col span {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.home-footer-col a:hover { color: white; }

.home-footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

/* === RESPONSIVE === */
@media (max-width: 968px) {
  .home-nav-links { display: none; }

  .home-hero { padding: 100px 0 60px; min-height: auto; }

  .home-section { padding: 80px 0; }

  .home-product {
    grid-template-columns: 1fr !important;
    gap: 40px;
    padding: 36px;
  }

  .home-product:nth-child(even) .home-product-text { order: 1; }
  .home-product:nth-child(even) .home-product-visual { order: 2; }

  .home-stamps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }

  .home-stamp-circle { width: 120px; height: 120px; }

  .home-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .home-hero-ctas { flex-direction: column; }
}

@media (max-width: 600px) {
  .home-stamps-grid { grid-template-columns: 1fr; }
  .home-footer-grid { grid-template-columns: 1fr; }
  .home-other-list { font-size: 18px; }
}
