/* ============================================================
   FRONT-PAGE STYLES — CriszoneSport
   Theme: Dark Neon Sport — #0b0f0b bg / #3AE000 accent
   ============================================================ */

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── Container ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Shared section spacing ── */
section { padding: 80px 0; }

/* ── Section header ── */
.section-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 48px;
  position: relative;
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.text-accent { color: var(--bg); }
.section-link {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  border-bottom: 1px solid var(--primary);
  padding-bottom: 1px;
  transition: opacity var(--trans);
  align-self: flex-end;
}
.section-link:hover { opacity: 0.7; }

/* ──────────────────────────────────────
   HERO BANNER
────────────────────────────────────── */
.hero-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.05);
  animation: hero-zoom 8s ease forwards;
}
@keyframes hero-zoom { to { transform: scale(1); } }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0,0,0,0.85) 40%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}
.hero-scanlines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.06) 3px,
    rgba(0,0,0,0.06) 4px
  );
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 24px 0 clamp(24px, 6vw, 100px);
  max-width: 720px;
}
.hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-dim);
  border: 1px solid rgba(58,224,0,0.3);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -2px;
  margin-bottom: 20px;
  color: var(--white);
}
.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #0b0f0b;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: background var(--trans), transform var(--trans);
}
.btn-primary-hero:hover { background: #5af520; transform: translateY(-2px); }
.btn-arrow { font-size: 16px; transition: transform var(--trans); }
.btn-primary-hero:hover .btn-arrow { transform: translateX(4px); }

.btn-ghost-hero {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.25);
  transition: border-color var(--trans), color var(--trans);
}
.btn-ghost-hero:hover { border-color: var(--primary); color: var(--primary); }

.hero-stats {
  position: absolute;
  bottom: 48px;
  left: clamp(24px, 6vw, 100px);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 16px 28px;
}
.hero-stat { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.stat-num { font-family: var(--font-display); font-size: 28px; font-weight: 900; color: var(--primary); line-height: 1; }
.stat-label { font-size: 11px; color: var(--white); letter-spacing: 0.5px; text-transform: uppercase; }
.hero-stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.12); }

.hero-scroll-hint {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--primary));
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse { 0%,100%{opacity:.3;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.1)} }
.scroll-text { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); writing-mode: vertical-rl; }

/* ──────────────────────────────────────
   TICKER
────────────────────────────────────── */
.ticker-wrap {
  background: var(--primary);
  overflow: hidden;
  padding: 11px 0;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}
@keyframes ticker-scroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #0b0f0b;
  padding: 0 28px;
  white-space: nowrap;
}

/* ──────────────────────────────────────
   CATEGORIES
────────────────────────────────────── */
.section-categories { background: var(--bg2); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  cursor: pointer;
  transition: transform var(--trans);
}
.cat-card:hover { transform: translateY(-6px); }
.cat-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.cat-card:hover .cat-card-img { transform: scale(1.08); }
.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 30%, rgba(0,0,0,0.2) 100%);
  transition: opacity var(--trans);
}
.cat-card:hover .cat-card-overlay { opacity: 0.85; }
.cat-card-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 16px;
  width: 100%;
}
.cat-icon { font-size: 24px; margin-bottom: 6px; }
.cat-name { font-family: var(--font-display); font-size: 18px; font-weight: 800; text-transform: uppercase; line-height: 1.1; letter-spacing: 0.3px; margin-bottom: 4px; }
.cat-count { font-size: 11px; color: var(--muted); }
.cat-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: #0b0f0b;
  font-size: 14px;
  font-weight: 900;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--trans), transform var(--trans);
}
.cat-card:hover .cat-arrow { opacity: 1; transform: translateY(0); }

/* ──────────────────────────────────────
   PRODUCTS
────────────────────────────────────── */
.new-products { background: var(--white); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--trans), transform var(--trans);
}
.product-card:hover {
  border-color: rgba(58,224,0,0.3);
  transform: translateY(-4px);
}
.product-card-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img { transform: scale(1.06); }
.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  background: #141a14;
}
.product-badge-sale {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--primary);
  color: #0b0f0b;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}
.product-card-actions {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--trans), transform var(--trans);
}
.product-card:hover .product-card-actions { opacity: 1; transform: translateY(0); }
.product-btn-cart,
.product-btn-view {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: background var(--trans);
}
.product-btn-cart {
  background: var(--white);
  color: #0b0f0b;
  border: none;
}
.product-btn-cart:hover { background: #5af520; }
.product-btn-view {
  background: rgba(255,255,255,0.1);
  color: var(--primary);
  border: none;
  backdrop-filter: blur(4px);
}
.product-btn-view:hover { background: rgba(255,255,255,0.2); }
.product-card-info { padding: 16px; }
.product-cat-tag { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--primary); margin-bottom: 6px; }
.product-name { font-family: var(--font-display); font-size: 16px; font-weight: 700; text-transform: uppercase; line-height: 1.2; margin-bottom: 10px; }
.product-name a { color: inherit; transition: color var(--trans); }
.product-name a:hover { color: var(--primary); }
.product-price { font-size: 16px; font-weight: 700; color: var(--primary); }
.product-price del { color: var(--muted); font-weight: 400; font-size: 13px; margin-right: 6px; }

/* ──────────────────────────────────────
   PROMO SPLIT
────────────────────────────────────── */
/* ===== WRAPPER ===== */
.promo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 40px 10px;
}

/* ===== CARD ===== */
.promo-half {
  position: relative;
  padding: 60px 50px;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* ===== LEFT (FLASH SALE) ===== */
.promo-left {
  background: linear-gradient(135deg, #3AE000, #2fcc00);
  color: #0b0f0b;
}

/* ===== RIGHT (FREE SHIP) ===== */
.promo-right {
  background: linear-gradient(135deg, #1a1f1a, #0f140f);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
}

/* ===== GLOW EFFECT ===== */
.promo-half::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.2), transparent);
  top: -80px;
  right: -80px;
  filter: blur(40px);
  z-index: 0;
}

/* ===== HOVER EFFECT ===== */
.promo-half:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* ===== CONTENT ===== */
.promo-inner {
  position: relative;
  z-index: 2;
}

/* ===== TAG ===== */
.promo-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.promo-left .promo-tag {
  background: rgba(0,0,0,0.2);
  color: #0b0f0b;
}

.promo-right .promo-tag {
  background: rgba(58,224,0,0.15);
  color: #3AE000;
  border: 1px solid rgba(58,224,0,0.4);
}

/* ===== TITLE ===== */
.promo-title {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ===== BIG NUMBER ===== */
.promo-big {
  font-size: clamp(64px, 7vw, 96px);
  font-weight: 900;
  display: block;
  line-height: 0.9;
}

/* Gradient text cho bên phải */
.promo-right .promo-big {
  background: linear-gradient(90deg, #3AE000, #9bff5a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== DESC ===== */
.promo-desc {
  font-size: 14px;
  margin-bottom: 30px;
  opacity: 0.85;
}

/* ===== BUTTON ===== */
.btn-promo {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 12px 26px;
  border-radius: 999px;

  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;

  background: #0b0f0b;
  color: #3AE000;

  transition: all 0.3s ease;
}

/* hover button */
.btn-promo:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

/* outline button */
.btn-promo--outline {
  background: transparent;
  color: #3AE000;
  border: 1px solid rgba(58,224,0,0.4);
}

.btn-promo--outline:hover {
  background: #3AE000;
  color: #0b0f0b;
}

/* ===== EXTRA DECOR LINE ===== */
.promo-half::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #3AE000, transparent);
  opacity: 0.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .promo-split {
    grid-template-columns: 1fr;
  }
}

/* ──────────────────────────────────────
   FEATURES
────────────────────────────────────── */
.section-features {
  background: linear-gradient(180deg, #f8faf8, #eef5ee);
  position: relative;
  overflow: hidden;
}

/* background glow nhẹ */
.section-features::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(58,224,0,0.15), transparent 70%);
  top: -200px;
  left: -200px;
  z-index: 0;
}

.features-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* CARD */
.feature-card {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 36px 26px;
  border: 1px solid rgba(0,0,0,0.05);

  box-shadow: 
    0 8px 24px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.6);

  transition: all 0.35s cubic-bezier(0.22,1,0.36,1);
  overflow: hidden;
}

/* gradient glow border */
.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent, rgba(58,224,0,0.5), transparent);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
}

.feature-card:hover::after {
  opacity: 1;
}

/* hover nâng cấp */
.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 
    0 20px 50px rgba(0,0,0,0.12),
    0 0 20px rgba(58,224,0,0.15);
}

/* ICON */
.feature-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;

  background: linear-gradient(135deg, #3ae000, #14a333);
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 24px;
  margin-bottom: 20px;

  box-shadow: 0 10px 20px rgba(58,224,0,0.25);

  transition: all 0.35s ease;
}

/* icon animation */
.feature-card:hover .feature-icon-wrap {
  transform: rotate(-5deg) scale(1.1);
  box-shadow: 0 15px 30px rgba(58,224,0,0.4);
}

/* TITLE */
.feature-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #111;

  transition: color 0.3s;
}

.feature-card:hover .feature-title {
  color: #14a333;
}

/* DESC */
.feature-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* subtle shine effect */
.feature-card::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -50%;
  width: 200%;
  height: 300%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );
  transform: rotate(25deg);
  transition: 0.6s;
  opacity: 0;
}

.feature-card:hover::before {
  top: 100%;
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ──────────────────────────────────────
   POSTS
────────────────────────────────────── */
/* ===============================
   BLOG POSTS - CLEAN PREMIUM UI
=============================== */

.new-posts {
  background: linear-gradient(180deg, #ffffff, #f7faf7);
  position: relative;
}

/* GRID */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARD */
.post-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);

  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.35s ease;

  /* 🔥 QUAN TRỌNG */
  display: flex;
  flex-direction: column;
}

/* hover */
.post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* IMAGE */
.post-card-img-wrap {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.post-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.post-card:hover img {
  transform: scale(1.06);
}

/* CATEGORY */
.post-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;

  background: #3ae000;
  color: #fff;

  padding: 5px 10px;
  border-radius: 999px;
}

/* BODY (🔥 FIX CHÍNH Ở ĐÂY) */
.post-card-body {
  padding: 20px;

  /* 🔥 đảm bảo không bị collapse */
  position: relative;
  z-index: 2;
  background: #fff;
}

/* DATE */
.post-date {
  font-size: 11px;
  color: #999;
}

/* TITLE */
.post-title {
  font-size: 18px;
  font-weight: 700;
  margin: 8px 0;
}

.post-title a {
  color: #111;
  text-decoration: none;
}

.post-title a:hover {
  color: #14a333;
}

/* EXCERPT */
.post-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 14px;
}

/* READ MORE */
.post-read-more {
  font-size: 13px;
  font-weight: 600;
  color: #3ae000;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .posts-grid {
    grid-template-columns: 1fr;
  }
}

/* ──────────────────────────────────────
   TESTIMONIALS - PREMIUM
────────────────────────────────────── */
.section-testimonials {
  background: linear-gradient(180deg, #f8fbf8, #ffffff);
  position: relative;
  overflow: hidden;
}

/* glow background */
.section-testimonials::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(58,224,0,0.12), transparent 70%);
  top: -150px;
  left: -150px;
}

.testimonials-grid {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;

  border: 1px solid rgba(0,0,0,0.05);

  box-shadow: 
    0 10px 30px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.7);

  transition: all 0.35s cubic-bezier(0.22,1,0.36,1);

  position: relative;
  overflow: hidden;
}

/* hover nâng cấp */
.testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 
    0 20px 50px rgba(0,0,0,0.12),
    0 0 20px rgba(58,224,0,0.15);
}

/* shine effect */
.testimonial-card::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -50%;
  width: 200%;
  height: 300%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );
  transform: rotate(25deg);
  opacity: 0;
  transition: 0.6s;
}

.testimonial-card:hover::before {
  top: 100%;
  opacity: 1;
}

/* STARS */
.testi-stars {
  color: #facc15;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

/* TEXT */
.testi-text {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 22px;
  font-style: italic;
  position: relative;
}

/* dấu ngoặc quote */
.testi-text::before {
  content: "“";
  font-size: 40px;
  position: absolute;
  left: -10px;
  top: -10px;
  color: rgba(58,224,0,0.15);
}

.testi-text::after {
  content: "”";
  font-size: 40px;
  position: absolute;
  right: -10px;
  bottom: -20px;
  color: rgba(58,224,0,0.15);
}

/* AUTHOR */
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* avatar gradient */
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;

  background: linear-gradient(135deg, #3ae000, #14a333);
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 12px;
  font-weight: 800;

  box-shadow: 0 6px 12px rgba(58,224,0,0.3);
}

.testi-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #111;
}

.testi-role {
  font-size: 12px;
  color: #888;
}

/* ──────────────────────────────────────
   CTA STRIP - SUPER PREMIUM
────────────────────────────────────── */
.cta-strip {
  padding: 80px 0;
  position: relative;
  overflow: hidden;

  background: linear-gradient(135deg, #0b0f0b, #111);
}

/* glow nền */
.cta-strip::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(58,224,0,0.25), transparent 70%);
  top: -200px;
  right: -200px;
}

/* gradient border */
.cta-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(58,224,0,0.2);
  pointer-events: none;
}

/* INNER */
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;

  position: relative;
  z-index: 2;
}

/* TEXT */
.cta-strip-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.2;
}

.cta-strip-sub {
  font-size: 14px;
  color: #aaa;
}

/* BUTTON */
.btn-primary-hero {
  background: linear-gradient(135deg, #3ae000, #14a333);
  color: #fff;

  padding: 14px 32px;
  border-radius: 999px;

  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  box-shadow: 0 10px 25px rgba(58,224,0,0.3);

  transition: all 0.3s ease;
}

/* hover button */
.btn-primary-hero:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 40px rgba(58,224,0,0.4);
}

.btn-arrow {
  transition: transform 0.3s;
}

.btn-primary-hero:hover .btn-arrow {
  transform: translateX(6px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cta-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ──────────────────────────────────────
   SCROLL REVEAL
────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  animation: reveal-up 0.7s cubic-bezier(0.22,1,0.36,1) forwards;
}
@keyframes reveal-up { to { opacity:1; transform:translateY(0); } }

.section-reveal .cat-card,
.section-reveal .product-card,
.section-reveal .feature-card,
.section-reveal .post-card,
.section-reveal .testimonial-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.section-reveal.in-view .cat-card,
.section-reveal.in-view .product-card,
.section-reveal.in-view .feature-card,
.section-reveal.in-view .post-card,
.section-reveal.in-view .testimonial-card {
  opacity: 1;
  transform: translateY(0);
}

/* ──────────────────────────────────────
   RESPONSIVE
────────────────────────────────────── */
@media (max-width: 1100px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 800px) {
  section { padding: 56px 0; }
  .hero-banner { max-height: 600px; }
  .hero-stats { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .posts-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .promo-split { grid-template-columns: 1fr; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  section { padding: 40px 0; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .promo-half { padding: 40px 24px; }
  .hero-scroll-hint { display: none; }
}