/* ============================================================
   DIGI-TECH SOLUTION — Home Page Styles
   ============================================================ */

/* ===== HERO ===== */
.hero {
  background: linear-gradient(130deg, var(--dark) 0%, #5c2e30 45%, #3d1f21 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fbb349' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero::after {
  content: '';
  position: absolute; right: -150px; top: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(251,179,73,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-wrap {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 70px; align-items: center;
  max-width: 1200px; margin: 0 auto; padding: 90px 28px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(251,179,73,.12);
  border: 1px solid rgba(251,179,73,.25);
  color: var(--gold);
  font-family: var(--font-ui); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 7px 16px; border-radius: 30px; margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 66px);
  font-weight: 900; color: var(--white);
  line-height: 1.08; margin-bottom: 22px;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p { color: rgba(255,255,255,.7); font-size: 17px; line-height: 1.8; margin-bottom: 36px; max-width: 500px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-divider { border: none; border-top: 1px solid rgba(255,255,255,.1); margin-bottom: 32px; }
.hero-stats { display: flex; gap: 36px; }
.hstat-num { font-family: var(--font-ui); font-size: 26px; font-weight: 800; color: var(--gold); line-height: 1; }
.hstat-lbl { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 4px; }

/* Hero visual cards */
.hero-visual { display: flex; flex-direction: column; gap: 16px; }
.hero-card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(251,179,73,.18);
  border-radius: 18px; padding: 24px;
  animation: floatUp 5s ease-in-out infinite;
}
.hero-card:nth-child(2) { animation-delay: 1.5s; animation-name: floatDown; }
@keyframes floatUp  { 0%,100%{transform:translateY(0)}  50%{transform:translateY(-10px)} }
@keyframes floatDown{ 0%,100%{transform:translateY(0)}  50%{transform:translateY(10px)}  }
.hcard-top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.hcard-icon {
  width: 42px; height: 42px; background: var(--gold); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark); font-size: 18px; flex-shrink: 0;
}
.hcard-title { font-family: var(--font-ui); font-weight: 700; color: var(--white); font-size: 14px; }
.hcard-sub   { color: rgba(255,255,255,.45); font-size: 12px; margin-top: 2px; }
.mp-pills    { display: flex; gap: 8px; flex-wrap: wrap; }
.mp-pill {
  background: var(--white); border-radius: 8px; padding: 8px 14px;
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-ui); font-weight: 700; font-size: 13px;
}
.mp-pill.amz { color: #FF9900; }
.mp-pill.ebp { color: #0064D2; }
.hcard-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.hcard-metric { background: rgba(255,255,255,.05); border-radius: 10px; padding: 12px; text-align: center; }
.hcard-mval { font-family: var(--font-ui); font-weight: 800; color: var(--gold); font-size: 20px; }
.hcard-mlbl { color: rgba(255,255,255,.45); font-size: 10px; margin-top: 3px; }

/* ===== SERVICE SECTION ===== */
.service-section { padding: 88px 0; background: var(--bg-light); }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.service-cards { display: flex; flex-direction: column; gap: 16px; }
.scard {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-md);
  transition: var(--transition);
}
.scard:hover { border-color: var(--gold); box-shadow: 0 8px 24px rgba(251,179,73,.15); transform: translateX(6px); }
.scard-icon {
  width: 48px; height: 48px; background: var(--cream); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--brown); flex-shrink: 0; transition: .3s;
}
.scard:hover .scard-icon { background: var(--gold); color: var(--dark); }
.scard h4 { font-family: var(--font-ui); font-weight: 700; font-size: 15px; color: var(--dark); margin-bottom: 5px; }
.scard p  { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; }

/* ===== CATEGORIES ===== */
.cat-section { padding: 88px 0; background: var(--bg-cream); }
.cat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.cat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 18px; text-align: center;
  transition: .3s; cursor: pointer; position: relative; overflow: hidden;
}
.cat-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--light-gold));
  opacity: 0; transition: .3s;
}
.cat-card:hover::after { opacity: .07; }
.cat-card:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: 0 16px 40px rgba(251,179,73,.18); }
.cat-icon {
  width: 62px; height: 62px; background: var(--cream); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; font-size: 26px; transition: .3s;
  color: var(--brown); position: relative; z-index: 1;
}
.cat-card:hover .cat-icon { background: var(--gold); color: var(--dark); }
.cat-name  { font-family: var(--font-ui); font-weight: 700; color: var(--dark); font-size: 14px; margin-bottom: 5px; position: relative; z-index: 1; }
.cat-count { font-size: 12px; color: var(--text-muted); position: relative; z-index: 1; }

/* ===== MARKETPLACE ===== */
.mp-section { background: var(--dark); padding: 88px 0; position: relative; overflow: hidden; }
.mp-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fbb349' fill-opacity='0.025'%3E%3Ccircle cx='40' cy='40' r='20'/%3E%3C/g%3E%3C/svg%3E");
}
.mp-inner { position: relative; z-index: 1; }
.mp-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 52px; }
.mp-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(251,179,73,.14);
  border-radius: var(--radius-lg); padding: 38px;
  transition: .3s; position: relative; overflow: hidden;
}
.mp-card::before {
  content: ''; position: absolute; bottom: -60px; right: -60px;
  width: 180px; height: 180px; border-radius: 50%;
  background: rgba(251,179,73,.05);
}
.mp-card:hover { border-color: rgba(251,179,73,.35); transform: translateY(-5px); box-shadow: 0 24px 56px rgba(0,0,0,.3); }
.mp-logo { font-family: var(--font-ui); font-size: 34px; font-weight: 800; margin-bottom: 14px; letter-spacing: -1px; }
.mp-logo.amz { color: #FF9900; }
.mp-logo .e{color:#E53238} .mp-logo .b{color:#0064D2} .mp-logo .a2{color:#F5AF02} .mp-logo .y{color:#86B817}
.mp-pill-badge {
  position: absolute; top: 22px; right: 22px;
  font-family: var(--font-ui); font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 12px; border-radius: 20px;
}
.mp-pill-badge.prim { background: rgba(251,179,73,.15); color: var(--gold); }
.mp-pill-badge.sec  { background: rgba(0,100,210,.15); color: #6ab0e8; }
.mp-card h3  { font-family: var(--font-ui); font-weight: 700; font-size: 20px; color: var(--white); margin-bottom: 12px; }
.mp-card p   { color: rgba(255,255,255,.6); font-size: 14.5px; line-height: 1.75; margin-bottom: 26px; }
.mp-numbers  { display: flex; gap: 28px; }
.mpn-val { font-family: var(--font-ui); font-weight: 800; font-size: 22px; color: var(--gold); }
.mpn-lbl { font-size: 11px; color: rgba(255,255,255,.45); margin-top: 3px; }
.mp-store-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--dark);
  font-family: var(--font-ui); font-weight: 700; font-size: 13px;
  padding: 11px 22px; border-radius: 8px; text-decoration: none;
  transition: .25s; margin-top: 24px;
}
.mp-store-btn:hover { background: var(--white); color: var(--dark); }

/* ===== HOW IT WORKS ===== */
.hiw-section { padding: 88px 0; background: var(--bg-light); }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; margin-top: 60px; }
.steps::before {
  content: ''; position: absolute; top: 34px; left: 12.5%; width: 75%; height: 2px;
  background: linear-gradient(to right, var(--gold), var(--cream), var(--gold)); z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; padding: 0 16px; }
.step-circle {
  width: 68px; height: 68px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-family: var(--font-ui); font-size: 20px; font-weight: 800;
  color: var(--dark); border: 4px solid var(--white); box-shadow: 0 4px 20px rgba(251,179,73,.35);
}
.step h4 { font-family: var(--font-ui); font-weight: 700; color: var(--dark); font-size: 15px; margin-bottom: 8px; }
.step p  { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ===== TESTIMONIALS ===== */
.testi-section { padding: 88px 0; background: var(--bg-cream); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 52px; }
.testi-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 18px; padding: 28px; transition: .3s;
}
.testi-card:hover { border-color: var(--gold); box-shadow: 0 12px 36px rgba(251,179,73,.15); transform: translateY(-5px); }
.testi-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-quote { color: var(--text-muted); font-size: 14px; line-height: 1.8; font-style: italic; margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 40px; height: 40px; border-radius: 50%; background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-ui); font-weight: 800; color: var(--brown); font-size: 14px;
}
.testi-name { font-family: var(--font-ui); font-weight: 700; font-size: 13.5px; color: var(--dark); }
.testi-role { font-size: 12px; color: var(--text-muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero-wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .service-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .mp-cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
}
