/* =====================================================
   AQUASOFT — Delivery & Payment Page
   (hero-trust-row shared styles are in aquasoft.css)
   ===================================================== */

/* HERO */
.del-hero {
  background: linear-gradient(135deg, var(--deep) 0%, #0a5e57 100%);
  position: relative;
  overflow: hidden;
  padding: 28px 24px 26px;
  text-align: center;
}
.del-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8,164,147,.22) 0%, transparent 70%);
  pointer-events: none;
}
.del-hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,.12) 0%, transparent 70%);
  pointer-events: none;
}
.del-hero h1 {
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  position: relative;
  z-index: 1;
}

/* PAGE */
.del-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 18px 64px;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  color: #111827;
}

/* FEATURE CARDS */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
@media (max-width: 900px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .feat-grid { grid-template-columns: 1fr; } }

.feat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px 18px;
  box-shadow: 0 3px 16px rgba(8,164,147,.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: transform .15s, box-shadow .15s;
}
.feat-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(8,164,147,.12); }

.feat-icon {
  width: 56px; height: 56px;
  border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feat-icon.teal   { background: linear-gradient(135deg, #e0f5f3, #bde9e4); }
.feat-icon.green  { background: linear-gradient(135deg, #e0f5ea, #b8edd0); }
.feat-icon.blue   { background: linear-gradient(135deg, #e0eeff, #bcd5fd); }
.feat-icon.orange { background: linear-gradient(135deg, #fff0e8, #ffd4bc); }

.feat-title { font-size: .97rem; font-weight: 800; color: var(--deep); margin-bottom: 2px; }
.feat-sub { font-size: .82rem; color: var(--muted); line-height: 1.5; }

/* CONTENT GRID */
.del-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 22px;
  align-items: start;
}
@media (max-width: 860px) { .del-grid { grid-template-columns: 1fr; } }

/* SECTIONS */
.del-sections { display: flex; flex-direction: column; gap: 16px; }

.del-card {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--teal);
  border-radius: var(--r);
  padding: 22px 22px 22px 20px;
  box-shadow: 0 3px 16px rgba(8,164,147,.07);
}
.del-card h2 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--deep);
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.del-card h2 .h2-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--light);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.del-card p, .del-card li {
  font-size: .92rem;
  color: #374151;
  line-height: 1.65;
  margin: 0 0 6px;
}
.del-card ul { padding-left: 20px; margin: 0; }
.del-card li { margin-bottom: 6px; }

/* PRICE TABLES */
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  margin-top: 14px;
  border-radius: 10px;
  overflow: hidden;
}
.price-table thead tr { background: var(--deep); }
.price-table th {
  text-align: left;
  padding: 11px 14px;
  color: rgba(255,255,255,.92);
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.price-table tbody tr:nth-child(even) { background: var(--light); }
.price-table tbody tr:nth-child(odd) { background: #fff; }
.price-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: #374151;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table td:last-child { font-weight: 700; color: var(--deep); white-space: nowrap; }
.price-free { color: #059669 !important; font-weight: 800 !important; }

/* PAYMENT GRID */
.pay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}
@media (max-width: 600px) { .pay-grid { grid-template-columns: 1fr; } }

.pay-item {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: border-color .15s, box-shadow .15s;
}
.pay-item:hover { border-color: var(--teal); box-shadow: 0 4px 14px rgba(8,164,147,.10); }
.pay-icon-wrap {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pay-icon-wrap.teal   { background: linear-gradient(135deg, #e0f5f3, #bde9e4); }
.pay-icon-wrap.green  { background: linear-gradient(135deg, #e0f5ea, #b8edd0); }
.pay-icon-wrap.blue   { background: linear-gradient(135deg, #e0eeff, #bcd5fd); }
.pay-icon-wrap.orange { background: linear-gradient(135deg, #fff0e8, #ffd4bc); }
.pi-title { font-weight: 800; font-size: .9rem; color: var(--deep); margin-bottom: 4px; }
.pi-desc { font-size: .82rem; color: var(--muted); line-height: 1.5; }

/* RETURNS */
.ret-card {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: var(--r);
  padding: 22px 22px 22px 20px;
  box-shadow: 0 3px 16px rgba(8,164,147,.07);
}
.ret-card h2 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--deep);
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ret-card .h2-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #fff0e8, #ffd4bc);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ret-card > p {
  font-size: .9rem;
  color: #374151;
  margin: 0 0 18px;
}
.ret-card a { color: var(--teal); font-weight: 600; }
.ret-section {
  margin-bottom: 16px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.ret-section:last-child { margin-bottom: 0; }
.ret-section-head {
  padding: 10px 14px;
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ret-section-head.teal   { background: linear-gradient(90deg, #e0f5f3, #f4fbfa); color: var(--teal-d); }
.ret-section-head.green  { background: linear-gradient(90deg, #e0f5ea, #f4fbfa); color: #059669; }
.ret-section-head.orange { background: linear-gradient(90deg, #fff0e8, #fff8f5); color: #c2410c; }
.ret-section-head.blue   { background: linear-gradient(90deg, #e0eeff, #f4f8ff); color: #1d4ed8; }
.ret-section-body { padding: 12px 14px; background: #fff; }
.ret-section-body ul { padding-left: 18px; margin: 0; }
.ret-section-body li {
  font-size: .88rem;
  color: #374151;
  margin-bottom: 5px;
  line-height: 1.55;
}
.ret-section-body p {
  font-size: .88rem;
  color: #374151;
  margin: 0 0 4px;
}

/* SIDEBAR */
.del-sidebar { display: flex; flex-direction: column; gap: 16px; }

.sidebar-card {
  position: sticky;
  top: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px;
  box-shadow: 0 3px 16px rgba(8,164,147,.07);
}
.sidebar-title {
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--teal);
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.toc-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f7f5;
  text-decoration: none;
  color: #374151;
  font-size: .88rem;
  font-weight: 500;
  transition: color .15s, padding-left .15s;
}
.toc-link:last-child { border-bottom: none; }
.toc-link:hover { color: var(--teal); text-decoration: none; padding-left: 4px; }
.toc-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  opacity: .5;
}
.toc-link:hover .toc-dot { opacity: 1; }

.sc-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid #f0f7f5;
  font-size: .88rem;
}
.sc-row:last-child { border-bottom: none; }
.sc-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sc-icon.teal   { background: linear-gradient(135deg, #e0f5f3, #bde9e4); }
.sc-icon.green  { background: linear-gradient(135deg, #e0f5ea, #b8edd0); }
.sc-icon.orange { background: linear-gradient(135deg, #fff0e8, #ffd4bc); }
.sc-label { color: var(--muted); font-size: .76rem; font-weight: 500; }
.sc-val { font-weight: 700; color: #111827; text-decoration: none; }

/* CTA */
.del-cta {
  margin-top: 24px;
  background: linear-gradient(135deg, var(--deep) 0%, #0a5e57 100%);
  border-radius: var(--r);
  padding: 34px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.del-cta::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  pointer-events: none;
}
.del-cta h3 { color: #fff; font-size: 1.2rem; font-weight: 800; margin: 0 0 4px; }
.del-cta p  { color: rgba(255,255,255,.72); font-size: .9rem; margin: 0; }
.btn-cta-del {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, #FF7A45, #FF6B35);
  color: #fff;
  padding: 15px 30px;
  border-radius: 12px;
  font-weight: 800;
  font-size: .97rem;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 6px 22px rgba(255,107,53,.4);
  transition: transform .15s, box-shadow .15s;
  flex-shrink: 0;
}
.btn-cta-del:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255,107,53,.5);
  color: #fff;
  text-decoration: none;
}

@media (max-width: 860px) {
  .del-sidebar { display: none; }
}
