* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #eef3f8;
  font-family: Arial, Helvetica, sans-serif;
  color: #132238;
}

.page {
  max-width: 1300px;
  margin: auto;
  padding: 18px;
}

.hero {
  background: linear-gradient(135deg, #06285c, #0b56b5);
  color: white;
  border-radius: 18px;
  padding: 24px;
  display: grid;
  grid-template-columns: 120px 1fr 100px;
  align-items: center;
  gap: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,.18);
}

.logo-box {
  background: white;
  color: #0b56b5;
  border-radius: 14px;
  text-align: center;
  padding: 12px;
  font-weight: bold;
}

.cross {
  color: #169b49;
  font-size: 48px;
  line-height: 42px;
}

.hero h1 {
  margin: 0;
  font-size: 42px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero p {
  margin: 8px 0 0;
  font-size: 22px;
  opacity: .95;
}

.chart-icon {
  font-size: 54px;
  background: rgba(255,255,255,.15);
  border-radius: 18px;
  text-align: center;
  padding: 20px;
}

.grid {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.top-grid {
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
}

.middle-grid {
  grid-template-columns: .9fr 1.1fr 1.2fr;
}

.card {
  background: white;
  border: 1px solid #c8d7eb;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(20, 45, 80, .08);
}

.card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #063f91;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 14px;
}

.card-title span {
  background: #0b56b5;
  color: white;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
}

.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

h4 {
  color: #063f91;
  margin: 0 0 8px;
}

ul {
  padding-left: 18px;
  margin: 0;
}

li {
  margin-bottom: 8px;
  line-height: 1.35;
}

.icon-list {
  list-style: none;
  padding-left: 0;
}

.note {
  margin-top: 16px;
  padding: 12px;
  border-left: 5px solid #169b49;
  background: #effaf3;
  border-radius: 10px;
  font-weight: bold;
}

.blue {
  background: linear-gradient(135deg, #064a9e, #0b65c8);
  color: white;
}

.white-title {
  color: white;
}

.white-title span {
  background: #169b49;
}

.price-box {
  background: rgba(255,255,255,.16);
  border-radius: 12px;
  padding: 14px;
  margin-top: 14px;
}

table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 12px;
  font-size: 15px;
}

th {
  background: #063f91;
  color: white;
  padding: 10px;
  text-align: left;
}

td {
  border-bottom: 1px solid #d8e2ef;
  padding: 10px;
}

.total {
  background: #eaf7ed;
  font-weight: bold;
}

.remote {
  background: #edf4ff;
  font-weight: bold;
  color: #063f91;
}

.small {
  font-size: 13px;
  color: #526070;
}

.important {
  border: 2px solid #169b49;
}

.whatsapp {
  display: block;
  margin-top: 14px;
  text-align: center;
  padding: 14px;
  background: #169b49;
  color: white;
  border-radius: 12px;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
}

.whatsapp:hover {
  background: #0f7c39;
}

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 18px;
  margin-top: 18px;
}

.bonus {
  border-top: 7px solid #169b49;
}

.equipment {
  border-top: 7px solid #063f91;
}

.equipment-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.equipment-list div {
  background: #f0f5fb;
  padding: 14px;
  border-radius: 12px;
  text-align: center;
  font-weight: bold;
}

.screens {
  margin-top: 18px;
  background: white;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #c8d7eb;
}

.screens h2 {
  text-align: center;
  color: #063f91;
  text-transform: uppercase;
  margin-top: 0;
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.screen-card {
  background: #eef3f8;
  padding: 12px;
  border-radius: 16px;
}

.fake-window {
  background: white;
  border: 1px solid #bdd0e7;
  border-radius: 12px;
  overflow: hidden;
  padding: 14px;
  min-height: 230px;
}

.window-bar {
  height: 24px;
  background: #063f91;
  margin: -14px -14px 14px;
}

.product-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e0e7f0;
  padding: 9px 0;
}

button {
  margin-top: 16px;
  width: 100%;
  background: #169b49;
  color: white;
  border: 0;
  border-radius: 10px;
  padding: 13px;
  font-weight: bold;
  font-size: 16px;
}

.icons-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.icons-menu span {
  background: #f0f5fb;
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  font-weight: bold;
}

input {
  width: 100%;
  padding: 12px;
  border: 1px solid #b9cce3;
  border-radius: 10px;
  color: #667;
}

footer {
  margin-top: 18px;
  background: #06285c;
  color: white;
  text-align: center;
  border-radius: 18px;
  padding: 24px;
  font-size: 20px;
}

/* Responsive */
@media (max-width: 1050px) {
  .top-grid,
  .middle-grid {
    grid-template-columns: 1fr 1fr;
  }

  .screen-grid,
  .equipment-list {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    grid-template-columns: 90px 1fr;
  }

  .chart-icon {
    display: none;
  }

  .hero h1 {
    font-size: 30px;
  }
}

@media (max-width: 700px) {
  .top-grid,
  .middle-grid,
  .bonus-grid,
  .screen-grid,
  .two-cols,
  .equipment-list {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .logo-box {
    max-width: 140px;
    margin: auto;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero p {
    font-size: 17px;
  }

  .card-title {
    font-size: 16px;
  }
}