/* =====================================================
   Ahmad Print Shop — Homepage Redesign CSS
   Full cinematic, image-first, modern layout
   ===================================================== */

/* ─── HERO ──────────────────────────────────────────── */
.hp-hero {
  position: relative;
  min-height: 96vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #060f1e;
}

.hp-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hp-hero-bg-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.5;
  animation: orbFloat 8s ease-in-out infinite alternate;
}
.hp-hero-bg-orb1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #1a56b0 0%, transparent 70%);
  top: -100px; left: -100px;
  animation-delay: 0s;
}
.hp-hero-bg-orb2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #ff6b00 0%, transparent 70%);
  top: 20%; right: -80px;
  opacity: 0.35;
  animation-delay: 2s;
}
.hp-hero-bg-orb3 {
  width: 400px; height: 470px;
  background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
  bottom: -100px; left: 40%;
  opacity: 0.3;
  animation-delay: 4s;
}
@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.1); }
}
.hp-hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hp-hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 42px;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
  flex: 1;
}

/* LEFT TEXT */
.hp-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  padding: 6px 14px; border-radius: 50px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.05em; margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.hp-eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.3);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(74,222,128,0.3); }
  50% { box-shadow: 0 0 0 6px rgba(74,222,128,0.1); }
}
.hp-eyebrow-live {
  background: rgba(239,68,68,0.2); color: #f87171;
  padding: 2px 8px; border-radius: 4px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.1em;
}
.hp-eyebrow-live i { font-size: 8px; animation: blink 1.2s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }

.hp-hero-h1 {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  display: flex; flex-direction: column; gap: 4px;
}
.hp-h1-line1, .hp-h1-line3 { color: #fff; }
.hp-h1-gradient {
  background: linear-gradient(135deg, #ff6b00 0%, #ffd700 50%, #ff6b00 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; background-size: 200%;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
  from { background-position: 0%; }
  to   { background-position: 200%; }
}

.hp-hero-desc {
  color: rgba(255,255,255,0.65);
  font-size: 17px; line-height: 1.7;
  margin-bottom: 28px;
  max-width: 420px;
}

.hp-feature-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 32px;
}
.hp-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  padding: 6px 14px; border-radius: 50px;
  font-size: 13px; font-weight: 600;
  backdrop-filter: blur(8px);
  transition: all .2s;
}
.hp-pill:hover {
  background: rgba(255,107,0,0.2);
  border-color: rgba(255,107,0,0.5);
  color: #fff;
  transform: translateY(-2px);
}
.hp-pill i { font-size: 11px; color: #ff6b00; }

/* CTA Buttons */
.hp-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hp-cta-primary {
  display: inline-flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, #ff6b00, #ff9f43);
  color: white; padding: 16px 28px;
  border-radius: 14px; font-size: 15px; font-weight: 800;
  box-shadow: 0 8px 32px rgba(255,107,0,0.4);
  transition: all .3s; text-decoration: none;
  border: none; cursor: pointer;
}
.hp-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(255,107,0,0.5);
  color: white;
}
.hp-cta-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.hp-cta-arrow { transition: transform .3s; }
.hp-cta-primary:hover .hp-cta-arrow { transform: translateX(4px); }

.hp-cta-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: white; padding: 16px 28px;
  border-radius: 14px; font-size: 15px; font-weight: 700;
  backdrop-filter: blur(8px);
  transition: all .3s; text-decoration: none;
}
.hp-cta-secondary:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
  color: white;
}

/* Stats */
.hp-hero-stats { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hp-stat-sep { width: 1px; height: 36px; background: rgba(255,255,255,0.2); }
.hp-stat-val { font-size: 28px; font-weight: 900; color: #fff; line-height: 1; }
.hp-stat-lbl { font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 500; margin-top: 4px; }

/* ─── RIGHT MOSAIC ──────────────────────────────── */
.hp-hero-mosaic {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 240px 210px;
  gap: 10px;
  height: 400px;
}

.hp-mosaic-card {
  border-radius: 16px; overflow: hidden;
  position: relative; cursor: pointer;
  transition: transform .3s, box-shadow .3s;
}
.hp-mosaic-card:hover { transform: scale(1.03); box-shadow: 0 20px 60px rgba(0,0,0,0.5); z-index: 2; }
.hp-mosaic-card img { width: 100%; height: 100%; object-fit: cover; }
.hp-mosaic-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  display: flex; align-items: flex-end; padding: 12px;
  opacity: 0; transition: opacity .3s;
}
.hp-mosaic-card:hover .hp-mosaic-overlay { opacity: 1; }
.hp-mosaic-tag {
  color: white; font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 50px;
}

/* Grid placement */
.hp-mosaic-lg { grid-column: 1 / 3; grid-row: 1; }
.hp-mosaic-c2 { grid-column: 3; grid-row: 1; }
.hp-mosaic-c3 { grid-column: 1; grid-row: 2; }
.hp-mosaic-c4 { grid-column: 2; grid-row: 2; }
.hp-mosaic-c5 { grid-column: 3; grid-row: 2; }
.hp-mosaic-c6 { display: none; }

/* Floating badges on mosaic */
.hp-mosaic-float {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.95);
  padding: 6px 12px; border-radius: 50px;
  font-size: 12px; font-weight: 700; color: #0f172a;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.hp-float-tl { top: 12px; left: 12px; }

/* Floating cards */
.hp-mosaic-float-card {
  position: absolute; z-index: 10;
  background: rgba(255,255,255,0.95);
  border-radius: 12px; padding: 10px 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  backdrop-filter: blur(10px);
  font-size: 12px; font-weight: 700; color: #0f172a;
  display: flex; align-items: center; gap: 8px;
  animation: floatAnim 3s ease-in-out infinite alternate;
}
@keyframes floatAnim {
  from { transform: translateY(0); }
  to   { transform: translateY(-8px); }
}
.hp-float-rating { bottom: -20px; left: -30px; flex-direction: column; align-items: flex-start; gap: 2px; }
.hp-float-stars { color: #f59e0b; font-size: 14px; letter-spacing: 2px; }
.hp-float-text { font-size: 11px; color: #64748b; font-weight: 500; }
.hp-float-order { top: -18px; right: -20px; }
.hp-float-order i { color: #16a34a; }

/* Scroll hint */
.hp-scroll-hint {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 11px;
  z-index: 2;
}
.hp-scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px; display: flex;
  justify-content: center; padding: 6px 0;
}
.hp-scroll-wheel {
  width: 4px; height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ─── TRUST BAR ──────────────────────────────────── */
.hp-trust-bar {
  background: #fff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  overflow: hidden;
  position: relative;
}
.hp-trust-ticker {
  display: flex; gap: 0;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.hp-trust-ticker:hover { animation-play-state: paused; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.hp-trust-item {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 36px;
  border-right: 1px solid #e2e8f0;
  white-space: nowrap;
}
.hp-trust-ico {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.hp-trust-title { font-size: 13px; font-weight: 700; color: #0f172a; }
.hp-trust-sub { font-size: 11px; color: #64748b; }

/* ─── SECTIONS COMMON ────────────────────────────── */
.hp-section { padding: 80px 0; }
.hp-section-header {
  text-align: center; margin-bottom: 48px;
}
.hp-section-header h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900; color: #0f172a; margin-bottom: 10px;
}
.hp-section-header p { font-size: 16px; color: #64748b; }
.hp-section-kicker {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, #ff6b0015, #1a56b015);
  color: #ff6b00; padding: 6px 14px; border-radius: 50px;
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 12px;
}
.hp-gradient-text {
  background: linear-gradient(135deg, #ff6b00, #1a56b0);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hp-sh-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  text-align: left; gap: 16px; margin-bottom: 32px;
}
.hp-sh-row h2 { margin-bottom: 4px; }
.hp-link-btn {
  display: inline-flex; align-items: center; gap: 6px;
  color: #1a56b0; font-size: 14px; font-weight: 700;
  text-decoration: none; white-space: nowrap;
  transition: gap .2s;
}
.hp-link-btn:hover { gap: 10px; }
.hp-section-cta { text-align: center; margin-top: 36px; }

/* ─── CATEGORIES GRID ───────────────────────────── */
.hp-categories-section { background: #f8fafc; }
.hp-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hp-cat-card {
  position: relative; border-radius: 20px; overflow: hidden;
  height: 200px; display: flex; align-items: flex-end;
  text-decoration: none; transition: transform .3s, box-shadow .3s;
  background: #0f172a;
}
.hp-cat-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.15); }
.hp-cat-bg {
  position: absolute; inset: 0;
}
.hp-cat-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.75; }
.hp-cat-bg-gradient { width: 100%; height: 100%; }
.hp-cat-icon-wrap {
  position: absolute; top: 16px; right: 16px;
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.hp-cat-content {
  position: relative; z-index: 1;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  width: 100%;
}
.hp-cat-content h3 { font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 2px; }
.hp-cat-content span { font-size: 12px; color: rgba(255,255,255,0.7); }
.hp-cat-arrow {
  position: absolute; right: 20px; bottom: 20px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 12px;
  transition: background .2s, transform .2s;
}
.hp-cat-card:hover .hp-cat-arrow { background: #ff6b00; transform: rotate(-45deg); }

/* ─── FEATURE BANNERS ───────────────────────────── */
.hp-banners-section { padding: 0 0 80px; }
.hp-banner-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 16px;
}
.hp-banner-card {
  border-radius: 20px; overflow: hidden;
  position: relative; display: flex;
  text-decoration: none; transition: transform .3s;
  background: #0f172a;
}
.hp-banner-card:hover { transform: scale(1.02); }
.hp-banner-0 { grid-row: 1 / 3; }
.hp-banner-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.65; }
.hp-banner-placeholder { position: absolute; inset: 0; background: linear-gradient(135deg, #1a56b0, #7c3aed); opacity: 0.8; }
.hp-banner-body {
  position: relative; z-index: 1; margin-top: auto;
  padding: 24px; width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}
.hp-banner-body h3 { font-size: 20px; font-weight: 900; color: #fff; margin-bottom: 4px; }
.hp-banner-body p { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 12px; }
.hp-banner-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: #ff6b00; color: white; padding: 8px 18px;
  border-radius: 50px; font-size: 13px; font-weight: 700;
  transition: background .2s;
}
.hp-banner-card:hover .hp-banner-btn { background: #e05e00; }

/* ─── PRODUCTS SCROLL ───────────────────────────── */
.hp-products-section { background: white; }
.hp-products-scroll {
  display: flex; gap: 20px;
  overflow-x: auto; padding-bottom: 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin; scrollbar-color: #e2e8f0 transparent;
  -webkit-overflow-scrolling: touch;
}
.hp-products-scroll::-webkit-scrollbar { height: 4px; }
.hp-products-scroll::-webkit-scrollbar-track { background: transparent; }
.hp-products-scroll::-webkit-scrollbar-thumb { background: #e2e8f0; border-radius: 4px; }

.hp-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hp-product-card {
  background: white; border-radius: 18px;
  border: 1px solid #e2e8f0; overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  scroll-snap-align: start;
  min-width: 240px; flex-shrink: 0;
}
.hp-product-card-grid { min-width: unset; flex-shrink: unset; }
.hp-product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(15,23,42,0.12); }
.hp-product-img {
  position: relative; overflow: hidden;
  aspect-ratio: 1; background: #f8fafc;
}
.hp-product-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s;
}
.hp-product-card:hover .hp-product-img img { transform: scale(1.08); }
.hp-product-overlay {
  position: absolute; inset: 0;
  background: rgba(15,23,42,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.hp-product-card:hover .hp-product-overlay { opacity: 1; }
.hp-product-customize-btn {
  background: #ff6b00; color: white;
  padding: 10px 20px; border-radius: 50px;
  font-size: 13px; font-weight: 700;
  text-decoration: none; display: flex; align-items: center; gap: 6px;
  transform: translateY(10px); transition: transform .3s;
}
.hp-product-card:hover .hp-product-customize-btn { transform: translateY(0); }
.hp-product-wishlist {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none; color: #64748b; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.hp-product-wishlist:hover { background: white; color: #dc2626; transform: scale(1.1); }
.hp-product-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  padding: 4px 10px; border-radius: 50px;
  font-size: 11px; font-weight: 700; color: white;
}
.hp-badge-sale { background: #dc2626; }
.hp-badge-new { background: #1a56b0; }

.hp-product-info { padding: 16px; }
.hp-product-cat { font-size: 11px; color: #1a56b0; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.hp-product-info h3 { font-size: 15px; font-weight: 800; color: #0f172a; margin-bottom: 6px; line-height: 1.3; }
.hp-product-stars { font-size: 12px; color: #f59e0b; margin-bottom: 6px; }
.hp-product-stars span { color: #64748b; font-size: 11px; }
.hp-product-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 12px; }
.hp-price-main { font-size: 13px; font-weight: 800; color: #64748b; }
.hp-price-main strong { font-size: 22px; font-weight: 900; color: #0f172a; }
.hp-price-range { font-size: 13px; color: #64748b; }
.hp-product-btn {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  background: linear-gradient(135deg, #1a56b0, #2563eb);
  color: white; padding: 10px 16px; border-radius: 10px;
  font-size: 13px; font-weight: 700; text-decoration: none;
  transition: all .2s; width: 100%;
}
.hp-product-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,86,176,0.35); color: white; }

/* ─── PROCESS ────────────────────────────────────── */
.hp-process-section { background: #f8fafc; }
.hp-process-track {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
  margin-top: 20px;
}
.hp-process-line {
  position: absolute; top: 52px; left: 12.5%; right: 12.5%;
  height: 3px;
  background: linear-gradient(90deg, #ff6b00, #1a56b0, #7c3aed, #16a34a);
  border-radius: 3px; z-index: 0;
}
.hp-process-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 20px; position: relative; z-index: 1;
}
.hp-process-num {
  position: absolute; top: -8px; left: 50%;
  transform: translateX(-50%);
  font-size: 10px; font-weight: 900; color: white;
  background: #ff6b00; width: 20px; height: 20px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.hp-process-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: white; border: 3px solid #e2e8f0;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: #1a56b0; margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(26,86,176,0.12);
  transition: all .3s;
}
.hp-process-step:hover .hp-process-icon {
  background: linear-gradient(135deg, #1a56b0, #2563eb);
  color: white; border-color: #1a56b0;
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(26,86,176,0.3);
}
.hp-process-step:nth-child(2) .hp-process-icon { color: #ff6b00; }
.hp-process-step:nth-child(2):hover .hp-process-icon { background: linear-gradient(135deg, #ff6b00, #ff9f43); border-color: #ff6b00; color: white; }
.hp-process-step:nth-child(3) .hp-process-icon { color: #7c3aed; }
.hp-process-step:nth-child(3):hover .hp-process-icon { background: linear-gradient(135deg, #7c3aed, #a78bfa); border-color: #7c3aed; color: white; }
.hp-process-step:nth-child(4) .hp-process-icon { color: #16a34a; }
.hp-process-step:nth-child(4):hover .hp-process-icon { background: linear-gradient(135deg, #16a34a, #4ade80); border-color: #16a34a; color: white; }
.hp-process-step h3 { font-size: 15px; font-weight: 800; color: #0f172a; margin-bottom: 8px; }
.hp-process-step p { font-size: 13px; color: #64748b; line-height: 1.5; }

/* ─── BESTSELLERS ────────────────────────────────── */
.hp-bs-section { background: #f8fafc; }

/* ─── TESTIMONIALS ───────────────────────────────── */
.hp-testimonials-section { padding: 80px 0; position: relative; }
.hp-testimonials-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #060f1e 0%, #0f2744 50%, #1a0833 100%);
}
.hp-testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hp-testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 28px;
  backdrop-filter: blur(10px);
  transition: transform .3s, background .3s;
}
.hp-testimonial-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.1); }
.hp-testi-stars { color: #ffd700; font-size: 16px; letter-spacing: 3px; margin-bottom: 14px; }
.hp-testimonial-card p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.hp-testi-author { display: flex; align-items: center; gap: 12px; }
.hp-testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #ff6b00, #ffd700);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 900; color: white; flex-shrink: 0;
}
.hp-testi-author strong { font-size: 14px; color: white; font-weight: 700; display: block; }
.hp-testi-author span { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ─── BOTTOM CTA ─────────────────────────────────── */
.hp-bottom-cta { padding: 80px 0; }
.hp-bottom-cta-inner {
  position: relative; overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, #060f1e, #1a0833);
  padding: 60px 40px; text-align: center;
}
.hp-cta-blob {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: 0.4;
}
.hp-cta-blob1 { width: 400px; height: 400px; background: #1a56b0; top: -100px; left: -100px; }
.hp-cta-blob2 { width: 300px; height: 300px; background: #ff6b00; bottom: -80px; right: -60px; }
.hp-bottom-cta-content { position: relative; z-index: 1; }
.hp-bottom-cta-content h2 { font-size: clamp(26px,3vw,42px); font-weight: 900; color: white; margin-bottom: 12px; }
.hp-bottom-cta-content p { font-size: 16px; color: rgba(255,255,255,0.6); margin-bottom: 32px; }
.hp-bottom-cta-btns { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.hp-cta-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: white;
  padding: 16px 28px; border-radius: 14px;
  font-size: 15px; font-weight: 800;
  text-decoration: none; transition: all .3s;
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}
.hp-cta-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(37,211,102,0.4); color: white; }

/* ─── SCROLL ANIMATIONS ──────────────────────────── */
.hp-animate { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.hp-visible { opacity: 1; transform: translateY(0); }

/* Stagger children */
.hp-products-scroll .hp-product-card:nth-child(1) { transition-delay: 0.05s; }
.hp-products-scroll .hp-product-card:nth-child(2) { transition-delay: 0.1s; }
.hp-products-scroll .hp-product-card:nth-child(3) { transition-delay: 0.15s; }
.hp-products-scroll .hp-product-card:nth-child(4) { transition-delay: 0.2s; }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1100px) {
  .hp-products-grid { grid-template-columns: repeat(3, 1fr); }
  .hp-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hp-hero-inner { grid-template-columns: 1fr; padding-top: 80px; gap: 30px; }
  .hp-hero-text { order: 2; }
  .hp-hero-mosaic { order: 1; height: 340px; }
  .hp-process-track { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .hp-process-line { display: none; }
  .hp-products-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-banner-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .hp-banner-0 { grid-row: auto; height: 300px; }
  .hp-banner-card { height: 220px; }
}
@media (max-width: 640px) {
  .hp-hero { min-height: unset; }
  .hp-hero-desc { font-size: 14px; line-height: 1.6; }
  .hp-feature-pills { margin-bottom: 20px; }
  .hp-hero-ctas { margin-bottom: 24px; }
  .hp-hero-mosaic { grid-template-columns: 1fr 1fr; height: 280px; }
  .hp-mosaic-c5, .hp-mosaic-c6 { display: none; }
  .hp-mosaic-c4 { display: none; }
  .hp-hero-stats { gap: 16px; }
  .hp-cat-grid { grid-template-columns: 1fr 1fr; }
  .hp-products-grid { grid-template-columns: 1fr 1fr; }
  .hp-testimonials-grid { grid-template-columns: 1fr; }
  .hp-process-track { grid-template-columns: 1fr 1fr; }
  .hp-section { padding: 50px 0; }
  .hp-bottom-cta-inner { padding: 40px 24px; }
}
