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

:root {
  --nav-bg: #ffffff;
  --nav-border: rgba(0,0,0,0.06);
  --body-bg: #fafaf8;
  --text-color: #111;
  --text-muted: #777;
  --shadow-light: rgba(0, 0, 0, 0.06);
  --shadow-card: 0 2px 20px rgba(0,0,0,0.07);
  --shadow-card-hover: 0 12px 40px rgba(0,0,0,0.12);
  --dropdown-padding: 40px 100px;
  --gap-nav: 48px;
  --gallery-gap: 130px;
  --gallery-padding: 60px;
  --img-height: 420px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 16px;
  --accent: #1a1a2e;
  --accent-green: #1a7a3a;
}
 
* { box-sizing: border-box; }
 
body {
  background-color: var(--body-bg);
  margin: 0;
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
  color: var(--text-color);
  -webkit-font-smoothing: antialiased;
}

/* Page transitions handled by animations.js */

/* ===========================
   ניווט
   =========================== */
.navbar {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background-color: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--nav-border);
  z-index: 1002;
  min-height: 64px;
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}
.navbar-scrolled {
  padding: 10px 24px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.nav-links {
  display: flex;
  gap: var(--gap-nav);
  flex-direction: row-reverse;
  align-items: center;
}
 
/* ===========================
   Dropdown
   =========================== */
.dropdown {
  position: static;
  padding-bottom: 20px;
  margin-bottom: -20px;
}
 
.dropbtn {
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-color);
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.3px;
  transition: color 0.2s, opacity 0.2s;
  padding: 4px 0;
  position: relative;
}
.dropbtn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.dropbtn:hover::after {
  width: 100%;
}
.dropbtn:hover {
  color: var(--accent);
}
 
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background-color: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  padding: var(--dropdown-padding);
  z-index: 900;
  margin-top: -1px;
}
 
.dropdown-content::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  background: transparent;
}
 
.dropdown:hover .dropdown-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
 
.dropdown-content img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  cursor: pointer;
  padding: 10px;
  border-radius: 12px;
  transition: all var(--transition);
}
 
.dropdown-content a {
  transition: transform var(--transition);
}
.dropdown-content a:hover {
  transform: translateY(-6px) scale(1.08);
}
.dropdown-content img:hover {
  box-shadow: 0 8px 24px var(--shadow-light);
  background-color: #f8f8f6;
}
 
.arrow {
  display: inline-block;
  margin-left: 6px;
  transition: transform var(--transition);
  font-size: 12px;
}
.dropdown:hover .arrow {
  transform: rotate(180deg);
}
 
/* ===========================
   גלריה
   =========================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 40px 40px 60px;
  max-width: 1800px;
  margin: 0 auto;
}
 
.gallery img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  min-width: 0;
}
 
.gallery img:hover {
  transform: scale(1.02);
}
 
/* ===========================
   כרטיסיית מוצר
   =========================== */
.product-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  min-width: 0;
  max-width: 100%;
  background-color: #fff;
  cursor: pointer;
}
 
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}
 
.img-wrapper {
  position: relative;
  overflow: hidden;
}
 
.product-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover img {
  transform: scale(1.05);
}
 
/* ===========================
   תגית מבצע
   =========================== */
.sale-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, #ff4e00, #ff9500);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 22px;
  box-shadow: 0 3px 12px rgba(255, 100, 0, 0.35);
  letter-spacing: 0.5px;
  animation: pulse-badge 2.5s infinite;
  white-space: nowrap;
  font-family: 'Outfit', sans-serif;
}
 
@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
 
.product-info {
  background-color: #fff;
  padding: 12px 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  text-align: right;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.04);
}
 
.product-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
  text-align: left;
  direction: ltr;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
 
.product-price {
  font-size: 13px;
  color: #fff;
  background: var(--accent-green);
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(26,122,58,0.2);
  align-self: center;
  font-family: 'Outfit', sans-serif;
}

/* ===========================
   תגית Retro
   =========================== */
.retro-badge {
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #6b21a8, #a855f7);
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 1.5px;
  box-shadow: 0 2px 10px rgba(107, 33, 168, 0.3);
  white-space: nowrap;
  display: inline-block;
  flex-shrink: 0;
  font-family: 'Outfit', sans-serif;
}

/* ===========================
   תגית Special
   =========================== */
.special-badge {
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #b8860b, #ffd700);
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 1.5px;
  box-shadow: 0 2px 10px rgba(184, 134, 11, 0.3);
  white-space: nowrap;
  display: inline-block;
  max-width: none;
  overflow: visible;
  text-overflow: clip;
  flex-shrink: 0;
  font-family: 'Outfit', sans-serif;
}

@media (max-width: 1200px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 30px 24px;
  }
}
@media (max-width: 900px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding: 24px 16px;
  }
}
 
/* ===========================
   מובייל
   =========================== */
@media (max-width: 600px) {
  .dropdown-content {
    padding: 20px 10px;
    flex-wrap: wrap;
    gap: 15px;
  }
  .dropdown-content img {
    width: 60px;
    height: 60px;
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    padding: 12px 10px;
    gap: 10px;
    justify-items: center;
  }
  .gallery img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
  }
  .product-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    border-radius: 12px;
  }
  .product-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
  }
  .product-info {
    padding: 8px 8px;
  }
  .product-price {
    font-size: 11px;
    padding: 3px 10px;
  }
  .retro-badge, .special-badge {
    font-size: 9px;
    padding: 3px 7px;
    letter-spacing: 0.5px;
  }
  .special-badge {
    font-size: 7.5px;
    padding: 3px 5px;
    letter-spacing: 0.3px;
  }
  .price-row {
    gap: 4px;
    flex-wrap: nowrap;
  }
}

a.dropbtn {
  text-decoration: none;
}

/* ===========================
   נב — לוגו + המבורגר
   =========================== */
.nav-logo {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 40px;
  width: auto;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--text-color);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===========================
   בר וואטסאפ
   =========================== */
.whatsapp-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #111;
  padding: 0 20px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.2s ease;
  border-bottom: none;
  min-height: 48px;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.3px;
}
.whatsapp-bar:hover { background-color: #222; }
.whatsapp-bar img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
  filter: invert(1);
}

@media (max-width: 600px) {
  .whatsapp-bar {
    font-size: 11px;
    padding: 8px 12px;
    gap: 8px;
    min-height: 42px;
  }
  .whatsapp-bar img {
    width: 22px;
    height: 22px;
  }
}

/* ===========================
   מובייל נב
   =========================== */
.desktop-only-logo {
  display: inline-flex !important;
}
.nav-home-mobile {
  display: none;
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .navbar::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-image: url("https://i.ibb.co/JR14jRSP/1-1-3.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 6px;
    pointer-events: none;
  }
  .desktop-only-logo { display: none !important; }
  .nav-home-btn { display: none !important; }
  .nav-home-mobile {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-color);
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(0,0,0,0.06);
    flex-direction: column;
    align-items: center;
    padding: 20px 24px;
    gap: 18px;
    z-index: 1000;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links .dropbtn { font-size: 17px; }
  .nav-links .dropdown { width: 100%; text-align: center; padding-bottom: 0; margin-bottom: 0; }
  .dropdown .dropdown-content { display: none !important; position: static; box-shadow: none; padding: 10px 0 0 0; flex-wrap: wrap; gap: 8px; }
  .dropdown.mobile-open .dropdown-content { display: flex !important; justify-content: center; }
  .arrow { display: none; }
}

/* ===========================
   כפתור רכישה בווצאפ
   =========================== */
.wa-buy-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  background: #f5f5f3;
  width: 100%;
}
.wa-buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 22px;
  z-index: 5;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.3px;
  direction: rtl;
  font-family: 'Outfit', sans-serif;
}
.wa-buy-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.wa-buy-btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  border-radius: 0;
  box-shadow: none;
}
@media (max-width: 600px) {
  .wa-buy-btn { font-size: 11px; padding: 5px 14px; }
  .wa-buy-btn img { width: 16px; height: 16px; }
}

/* ===========================
   לוגו קבוצה
   =========================== */
.team-logo-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  background: #f8f8f6;
  width: 100%;
}
.team-logo-bar img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}
@media (max-width: 600px) {
  .team-logo-bar { padding: 6px 0; }
  .team-logo-bar img { width: 28px; height: 28px; }
}

/* ===========================
   מודל תמונה מוגדלת
   =========================== */
.product-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 20px;
  backdrop-filter: blur(8px);
  animation: modalFadeIn 0.3s ease;
}
.product-modal-overlay.active { display: flex; }
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.product-modal {
  background: #fff;
  border-radius: 20px;
  max-width: 460px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  position: relative;
  animation: modalSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes modalSlideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.product-modal-close {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}
.product-modal-close:hover { background: rgba(0,0,0,0.75); }
.product-modal img {
  width: 100%;
  border-radius: 20px 20px 0 0;
  display: block;
  max-height: 55vh;
  object-fit: cover;
}
.product-modal-info {
  padding: 18px 22px 20px;
  direction: rtl;
  text-align: right;
}
.product-modal-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.product-modal-season {
  font-size: 19px;
  font-weight: 700;
  color: #111;
  font-family: 'Outfit', sans-serif;
}
.product-modal-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-family: 'Outfit', sans-serif;
}
.product-modal-desc span {
  display: block;
  margin-bottom: 4px;
}
.product-modal-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 14px;
  border-radius: 0 0 20px 20px;
  transition: background 0.2s;
  direction: rtl;
  font-family: 'Outfit', sans-serif;
}
.product-modal-wa:hover { background: #1fb855; }
.product-modal-wa img {
  width: 22px;
  height: 22px;
  border-radius: 0;
  max-height: none;
}

@media (max-width: 600px) {
  .product-modal {
    max-width: 95%;
    border-radius: 16px;
  }
  .product-modal img {
    border-radius: 16px 16px 0 0;
    max-height: 45vh;
  }
  .product-modal-season { font-size: 16px; }
  .product-modal-badges .product-price { font-size: 14px; padding: 6px 14px; }
  .product-modal-badges .retro-badge,
  .product-modal-badges .special-badge { font-size: 12px; padding: 5px 12px; }
  .product-modal-wa { border-radius: 0 0 16px 16px; font-size: 13px; }
}

/* ===========================
   שורת מידע מוצר
   =========================== */
.product-info-right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.product-info-center {
  flex: 1;
  display: flex;
  justify-content: center;
}
.season-info {
  font-size: 16px;
  color: #111;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 1;
  min-width: 0;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.2px;
}

@media (max-width: 600px) {
  .season-info {
    font-size: clamp(8px, 2.5vw, 12px);
  }
  .product-info {
    padding: 8px 8px;
  }
}

/* ===========================
   כפתור נגישות
   =========================== */
#accessibility-widget-toggle,
.accessibility-toggle,
[id*="accessibility"] button:first-of-type {
  bottom: 12px !important;
  top: auto !important;
}

/* ===========================
   Hidden heading
   =========================== */
.mpj-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===========================
   Section titles
   =========================== */
.section-title-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.section-title-line {
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,0.08);
}
.section-title-text {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  white-space: nowrap;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.5px;
}

/* ===========================
   Leagues section
   =========================== */
.leagues-section {
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.leagues-bar-wrapper {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.leagues-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}
.leagues-logo-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  padding: 12px;
}
.leagues-logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.leagues-bar a:hover .leagues-logo-circle {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

@media (max-width: 768px) {
  .leagues-section { padding: 12px 10px; }
  .leagues-bar { gap: 10px; }
  .leagues-logo-circle { width: 60px; height: 60px; padding: 8px; }
  .section-title-text { font-size: 14px; }
}

/* ===========================
   HOME — Stats Counter
   =========================== */
.home-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 48px 40px;
  background: #111;
  color: #fff;
  font-family: 'Outfit', sans-serif;
}
.home-stats-item {
  text-align: center;
}
.home-stats-num {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -1px;
  display: inline;
}
.home-stats-plus {
  font-size: 36px;
  font-weight: 900;
  opacity: 0.5;
}
.home-stats-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  letter-spacing: 0.5px;
}
.home-stats-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.12);
}
@media (max-width: 768px) {
  .home-stats { gap: 16px; padding: 32px 16px; flex-wrap: wrap; }
  .home-stats-num { font-size: 32px; }
  .home-stats-plus { font-size: 24px; }
  .home-stats-label { font-size: 11px; }
  .home-stats-divider { height: 36px; }
}

/* ===========================
   HOME — Scrolling Marquee
   =========================== */
.home-marquee {
  overflow: hidden;
  background: #111;
  padding: 18px 0;
  white-space: nowrap;
}
.home-marquee-track {
  display: inline-flex;
  gap: 32px;
  animation: marquee-scroll 20s linear infinite;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: rgba(255,255,255,0.25);
  letter-spacing: 4px;
  text-transform: uppercase;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
  .home-marquee { padding: 14px 0; }
  .home-marquee-track { font-size: 13px; gap: 20px; letter-spacing: 3px; }
}

/* ===========================
   HOME — Why laminlo
   =========================== */
.home-features {
  padding: 60px 40px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Outfit', sans-serif;
}
.home-features-title {
  font-size: 32px;
  font-weight: 900;
  color: #111;
  margin-bottom: 36px;
  letter-spacing: -0.5px;
}
.home-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.home-feature-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  padding: 32px 20px;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s cubic-bezier(0.4,0,0.2,1);
}
.home-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.home-feature-icon {
  font-size: 40px;
  margin-bottom: 14px;
}
.home-feature-name {
  font-size: 18px;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
}
.home-feature-desc {
  font-size: 14px;
  color: #888;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .home-features { padding: 40px 16px; }
  .home-features-title { font-size: 24px; margin-bottom: 24px; }
  .home-features-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .home-feature-card { padding: 22px 14px; border-radius: 14px; }
  .home-feature-icon { font-size: 30px; margin-bottom: 10px; }
  .home-feature-name { font-size: 15px; }
  .home-feature-desc { font-size: 12px; }
}

/* ===========================
   HOME — Big CTA
   =========================== */
.home-cta {
  text-align: center;
  padding: 64px 40px;
  background: #111;
  color: #fff;
  font-family: 'Outfit', sans-serif;
}
.home-cta-text {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}
.home-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.home-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.3px;
}
.home-cta-btn-primary {
  background: #fff;
  color: #111;
}
.home-cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255,255,255,0.15);
}
.home-cta-btn-wa {
  background: #25d366;
  color: #fff;
}
.home-cta-btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.3);
}
@media (max-width: 768px) {
  .home-cta { padding: 44px 20px; }
  .home-cta-text { font-size: 24px; margin-bottom: 20px; }
  .home-cta-btn { padding: 14px 28px; font-size: 14px; }
}