:root {
    --dark: #111827;
    --muted: #6b7280;
    --border: #e5e7eb;
    --bg-light: #f9fafb;
    --danger: #e63946;
    --success: #16a34a;
    --primary: #2563eb;
}
body {
  background: #ffffff;
}
.bg-soft {
  background: #f8fafc;
}
.bg-auction {
  background: #f1f5f9;
}
.card {
  background: #ffffff;
}
.bg-cta {
  background: #2563eb;
  color: #ffffff;
}
section {
  padding: 64px 0;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-sub {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 40px;
}
/* ================= Slider ================= */
.intro-slide {
  min-height: 480px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.intro-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.85),
    rgba(255,255,255,0.6)
  );
}

.intro-content {
  position: relative;
  z-index: 2;
}
.intro-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.hero-trust span {
    display: inline-block;
    font-size: 13px;
    margin-right: 12px;
    color: #444;
}

.intro-title {
    max-width: 480px;
}


/* ================= How It Works ================= */
.how-ziikat-works {
    background: #f8fafc;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.how-item {
    background: #fff;
    padding: 32px 24px;
    border-radius: 12px;
    position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.how-step {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 48px;
    font-weight: 700;
    color: #e5e7eb;
}

.how-icon {
    font-size: 42px;
    margin-bottom: 15px;
}

.how-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.how-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* ================= why ziikat ================= */

/* Section base */
.section-style {
    padding: 60px 0;
    background: #f9f9f9;
}


.section-title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-title::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #ff8800;
    display: block;
    margin: 8px auto 16px;
    border-radius: 2px;
}

.section-sub {
    font-size: 15px;
    color: #777;
    margin-bottom: 40px;
}

/* Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

/* Cards */
.why-ziikat {
  background: #f8fafc;
}
.why-card {
   background: #fff;
  padding: 32px 24px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.why-card:hover {
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    border-color: transparent;
    transform: translateY(-6px);
}

/* Icon */
.why-icon {
    font-size: 32px;
    color: #2563eb;
    margin-bottom: 16px;
}
.why-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* ================= condition guide ================= */

.condition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.condition-card {
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    transition: all .3s ease;
}

.condition-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    border-color: transparent;
}

.condition-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.condition-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}
.condition-card.new { background: #eaf9ff; }
.condition-card.open-box { background: #fef9e9; }
.condition-card.refurbished { background: #f5faff; }
.condition-card.used { background: #fcf8f8; }

/***** final CTA *****/
.final-cta {
    padding: 60px 20px;
    border-top: 1px solid #eee;
}

.final-cta h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 12px;
}

.final-cta p {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

.cta-actions a {
    margin: 0 8px;
}

@media (max-width: 767px) {
    .intro-slide {
     min-height: 360px;
  }

  .intro-title {
    font-size: 28px;
  }

   /* how it works*/
   .how-grid, .why-grid,
    .condition-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .how-step {
        font-size: 36px;
    }
    

}