/* ================= OFFERS PAGE ================= */

.offers-page {
  padding: 170px 0 100px;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.10), transparent 35%),
    linear-gradient(180deg, #f8fafc 0%, #eef4f8 100%);
}

.offers-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 55px;
}

.offers-header h1 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.offers-header p {
  color: #475569;
  font-size: 1.1rem;
}

/* ================= GRID ================= */

.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: stretch;
}

/* ================= CARD ================= */

.offer-card {
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.14);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 42px 100px rgba(15, 23, 42, 0.20);
}

/* ================= IMAGE - FULL NOT CROPPED ================= */

.offer-image {
  width: 100%;
  background: #ffffff;
  padding: 0;
  border-bottom: 1px solid #e5e7eb;
}

.offer-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ================= OFFER TAG ================= */

.offer-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, var(--danger), #ef4444);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 9px 16px;
  border-radius: 999px;
  z-index: 3;
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.35);
}

/* ================= CONTENT ================= */

.offer-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.offer-content h2 {
  font-size: 1.65rem;
  line-height: 1.25;
  color: var(--black);
  margin: 0 0 14px;
}

.offer-price {
  margin-bottom: 18px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.offer-price del {
  color: #64748b;
  font-size: 1rem;
}

.offer-price strong {
  color: var(--danger);
  font-size: 1.55rem;
  font-weight: 800;
}

.offer-note {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* ================= FEATURES ================= */

.offer-features {
  list-style: none;
  padding: 0;
  margin: 18px 0 26px;
}

.offer-features li {
  padding: 10px 0;
  color: #334155;
  border-bottom: 1px solid #e5e7eb;
}

.offer-features li::before {
  content: "✓";
  color: var(--danger);
  font-weight: 900;
  margin-right: 9px;
}

.offer-features li:last-child {
  border-bottom: none;
}

/* ================= BUTTONS ================= */

.offer-actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.offer-actions a {
  min-height: 56px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  font-size: 1rem;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.offer-actions .btn-main {
  width: auto;
  padding: 0 22px;
  background: linear-gradient(135deg, #2563eb, #1e3a8a);
  color: #ffffff;
  border: 2px solid var(--primary);
  box-shadow: 0 12px 30px rgba(30, 58, 138, 0.28);
}

.offer-actions .btn-outline-dark {
  padding: 0 22px;
  background: #ffffff;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.offer-actions .btn-main:hover,
.offer-actions .btn-outline-dark:hover {
  transform: translateY(-3px);
}

.offer-actions .btn-main:hover {
  box-shadow: 0 18px 45px rgba(30, 58, 138, 0.42);
}

.offer-actions .btn-outline-dark:hover {
  background: var(--primary);
  color: #ffffff;
}

/* ================= CUSTOM QUOTE ================= */

.custom-offer-box {
  margin-top: 80px;
  text-align: center;
  background: #ffffff;
  padding: 55px 25px;
  border-radius: 30px;
  box-shadow: 0 22px 65px rgba(15, 23, 42, 0.10);
}

.custom-offer-box h2 {
  color: var(--black);
  font-size: 2rem;
  margin-bottom: 14px;
}

.custom-offer-box p {
  color: #475569;
  margin-bottom: 25px;
}

.custom-offer-box .btn-main {
  display: inline-flex;
  width: auto;
  min-width: 230px;
  justify-content: center;
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {
  .offers-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .offers-page {
    padding: 130px 0 70px;
  }

  .offers-header h1 {
    font-size: 2.2rem;
  }

  .offers-header p {
    font-size: 1rem;
  }

  .offer-content {
    padding: 24px;
  }

  .offer-actions {
    grid-template-columns: 1fr;
  }

  .offer-actions a {
    width: 100%;
  }

  .custom-offer-box {
    margin-top: 50px;
    padding: 35px 20px;
  }
}