@font-face {
  font-family: "IRANSans";
  src: url("../fonts/IRANSansXV.woff2") format("woff2"),
       url("../fonts/IRANSansXV.woff") format("woff");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #fff8ec;
  --tomato: #dc4f31;
  --herb: #2f7d54;
  --olive: #6b8e23;
  --card: rgba(255, 255, 255, 0.82);
  --text: #1f2d1f;
  --muted: #4d5c4e;
  --shadow: 0 24px 70px rgba(28, 56, 32, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "IRANSans", Tahoma, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 20%, #ffdda8 0%, transparent 42%),
    radial-gradient(circle at 90% 10%, #c8f0d5 0%, transparent 40%),
    linear-gradient(140deg, #fff5e1 0%, #eef8ef 55%, #fffdf9 100%);
  overflow-x: hidden;
}

.grain-bg {
  position: fixed;
  inset: 0;
  background: url("../images/pack-pattern.svg") center/cover no-repeat;
  opacity: 0.12;
  pointer-events: none;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.card {
  width: min(920px, 100%);
  background: var(--card);
  border: 1px solid rgba(47, 125, 84, 0.18);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 52px);
  box-shadow: var(--shadow);
  backdrop-filter: blur(5px);
}

.status-pill {
  display: inline-block;
  background: linear-gradient(90deg, var(--herb), var(--olive));
  color: #fff;
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 0.88rem;
  margin-bottom: 16px;
}

h1 {
  margin: 0 0 16px;
  line-height: 1.55;
  font-size: clamp(1.6rem, 3vw, 2.55rem);
  text-align: center;
}

.lead {
  margin: 0;
  line-height: 2;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.12rem);
}

.lead strong {
  color: var(--herb);
}

.feature-row {
  margin-top: 30px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.feature {
  background: #fff;
  border: 1px solid rgba(107, 142, 35, 0.2);
  border-radius: 16px;
  padding: 16px 14px;
  display: grid;
  grid-template-columns: 11px 1fr;
  align-items: start;
  gap: 10px;
  min-height: 106px;
  height: 100%;
}

.feature h2 {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.9;
  font-weight: 700;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--tomato);
  box-shadow: 0 0 0 7px rgba(220, 79, 49, 0.16);
  flex-shrink: 0;
}

.contacts {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px dashed rgba(47, 125, 84, 0.3);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.contacts p {
  margin: 0 0 0 8px;
  color: var(--muted);
}

.phone {
  text-decoration: none;
  color: #fff;
  background: linear-gradient(90deg, var(--tomato), #f07f38);
  padding: 9px 14px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(220, 79, 49, 0.25);
}

@media (max-width: 900px) {
  .feature-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .page {
    padding: 16px;
  }

  .card {
    border-radius: 18px;
  }

  .contacts {
    align-items: stretch;
  }

  .phone {
    text-align: center;
    width: 100%;
  }
}
