* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #222;
  background: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

/* HEADER HOMEPAGE */

.header-home {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  padding: 26px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
}

.logo img {
  width: 260px;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
}

.header-home nav a {
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

.header-btn {
  background: #f45757;
  color: #fff;
  padding: 16px 24px;
  border-radius: 10px;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  background-image: url("hero.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 170px 6% 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.68) 0%,
    rgba(0,0,0,0.48) 38%,
    rgba(0,0,0,0.15) 70%,
    rgba(0,0,0,0.05) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  color: #fff;
}

.hero-title {
  font-size: clamp(58px, 8vw, 120px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 22px;
}

.hero-title span {
  display: block;
  font-size: clamp(46px, 6vw, 86px);
  font-weight: 400;
  font-style: italic;
  color: #d7b98a;
}

.hero-text {
  font-size: 24px;
  line-height: 1.45;
  margin-bottom: 42px;
  max-width: 570px;
}

.hero-text strong {
  color: #d7b98a;
}

.hero-icons {
  display: flex;
  gap: 42px;
  margin-bottom: 42px;
}

.hero-icon {
  text-align: center;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 800;
  max-width: 120px;
}

.hero-icon-circle {
  width: 72px;
  height: 72px;
  border: 2px solid #d7b98a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 30px;
  color: #f0d6aa;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f45757;
  color: #fff;
  padding: 18px 30px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
}

.web-pill {
  display: inline-flex;
  align-items: center;
  background: #e8c99a;
  color: #3a2b1d;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
}

/* SECTIONS */

section {
  padding: 70px 6%;
}

.section-title {
  font-size: 36px;
  margin-bottom: 20px;
  text-align: center;
}

.section-intro {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1150px;
  margin: 0 auto;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid #eee;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.card a {
  color: #f45757;
  font-weight: 800;
}

.cta-section {
  background: #fff3f0;
  text-align: center;
}

footer {
  padding: 32px 6%;
  background: #222;
  color: #fff;
  text-align: center;
  font-size: 14px;
}

/* MOBILE */

@media (max-width: 900px) {
  .header-home {
    padding: 18px 5%;
  }

  .logo img {
    width: 210px;
  }

  nav,
  .header-btn {
    display: none;
  }

  .hero {
    min-height: 100vh;
    padding: 150px 5% 60px;
    background-position: 62% center;
  }

  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.35) 0%,
      rgba(0,0,0,0.55) 35%,
      rgba(0,0,0,0.78) 100%
    );
  }

  .hero-content {
    padding-top: 160px;
  }

  .hero-text {
    font-size: 19px;
  }

  .hero-icons {
    gap: 18px;
    justify-content: space-between;
  }

  .hero-icon-circle {
    width: 58px;
    height: 58px;
    font-size: 24px;
  }

  .hero-icon {
    font-size: 11px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .main-btn,
  .web-pill {
    width: 100%;
  }
}