
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #F7F4EF;
  color: #102332;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  background: white;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #E66B57;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav {
  display: flex;
  gap: 24px;
}

nav a {
  text-decoration: none;
  color: #102332;
}

button {
  background: #5B7D69;
  color: white;
  border: none;
  border-radius: 12px;
  padding: 14px 20px;
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 80px 6vw;
  align-items: center;
}

.hero h2 {
  font-size: 60px;
  margin: 12px 0;
}

.hero p {
  color: #65717D;
}

.eyebrow {
  color: #5B7D69;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.hero-actions a {
  background: white;
  border: 1px solid #ddd;
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  color: #102332;
}

.phone {
  display: flex;
  justify-content: center;
}

.card {
  width: 320px;
  background: white;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.item {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
}

.section {
  padding: 80px 6vw;
}

.alt {
  background: white;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
  margin-top: 32px;
}

.box {
  background: white;
  border-radius: 20px;
  padding: 24px;
}

.box span {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #E66B57;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing {
  text-align: center;
  background: white;
  padding: 40px;
  border-radius: 24px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hidden {
  display: none;
}

.modal-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  width: 360px;
  text-align: center;
  position: relative;
}

.close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  color: black;
  font-size: 24px;
}

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

  nav {
    display: none;
  }

  .hero h2 {
    font-size: 42px;
  }
}
