:root {
  --brand: #2d6cdf;
  --light: #f8f9fa;
}

/* RESET / BASE */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; background: var(--light); color: #222; line-height: 1.6; }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 30vh;
  min-height: 280px;
  overflow: hidden;
  text-align: center;
}
.hero picture,
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
}
.hero-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 2rem 2rem;
  color: #fff;
}
.hero-text h1 { font-size: 3rem; font-weight: 800; margin: 0 0 1rem; }
.hero-text p  { font-size: 1.35rem; font-weight: 600; margin: 0; }

/* ===== LAYOUT ===== */
section        { max-width: 920px; margin: auto; padding: 2.7rem 1rem; }
h2             { color: var(--brand); margin-top: 2.2rem; font-weight: 700;
                 border-bottom: 2px solid var(--brand); padding-bottom: .4rem; }
ul, ol         { padding-left: 1.4rem; margin: 1.2rem 0; }

/* ===== FEATURE ICONS ===== */
.features {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 2rem 0;
}
.features div  { flex: 1 1 160px; display: flex; flex-direction: column;
                 align-items: center; justify-content: center; }
.features img  { width: 120px; height: 120px; object-fit: contain;
                 filter: grayscale(.2) contrast(1.1);
                 transition: transform .2s ease; }
.features img:hover { transform: scale(1.05); }
@media (max-width: 600px) {
  .features div { flex: 1 1 110px; }
  .features img { width: 90px; height: 90px; }
}

/* ===== PRICING TABLE ===== */
.pricing table           { width: 100%; border-collapse: collapse; margin-top: 1.2rem; }
.pricing th, .pricing td { border: 1px solid #cfd2d6; padding: 1rem; text-align: center; }
.pricing s               { color: #888; }

/* ===== COMPARISON GRID ===== */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.compare div  { background: #fff; border: 1px solid #cfd2d6;
                padding: 1rem; border-radius: 6px; }
.compare h3   { margin-bottom: .6rem; font-size: 1.1rem; color: var(--brand); }

/* ===== CTA BUTTON ===== */
.cta { text-align: center; margin-top: 3rem; }
.cta a {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 1rem 2.2rem;
  font-size: 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background .25s;
}
.cta a:hover { background: #1a50bf; }

.demos {
  text-align: center;
  margin-top: 1.5rem;
}
.demos a {
  display: inline-block;
  background: #dee2e6;
  color: #000;
  padding: 0.7rem 1.4rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  margin: 0.5rem;
  transition: background .25s;
}
.demos a:hover {
  background: var(--brand);
  color: #fff;
}


/* ===== FOOTER ===== */
footer { text-align: center; background: #e9ecef; padding: 1.4rem;
         font-size: .9rem; margin-top: 3rem; }
