@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background: #fffaf6;
  color: #4a4a4a;
  line-height: 1.7;
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
  color: #6f5a7a;
  margin-top: 0;
}

p {
  margin-top: 0;
}

ul {
  padding-left: 22px;
}

li {
  margin-bottom: 10px;
}

.container {
  width: 88%;
  max-width: 1180px;
  margin: auto;
}

/* HEADER */

header {
  background: #fffaf6;
  border-bottom: 1px solid #eee3ea;
  padding: 16px 0;
}

.nav-container {
  display: grid;
  grid-template-columns: 1fr 260px 1fr;
  align-items: center;
  gap: 50px;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 30px;
  width: auto;
}

.nav-left {
  justify-content: flex-end;
}

.nav-right {
  justify-content: flex-start;
}

.logo,
.center-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 210px;
  width: 210px;
  object-fit: contain;
  display: block;
}

nav a {
  color: #6f5a7a;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

nav a:hover {
  color: #d5a8d3;
}

/* HERO */

.hero {
  background: linear-gradient(to bottom, #f8eef5, #fffaf6);
  padding: 110px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 56px;
  max-width: 900px;
  margin: 0 auto 22px;
  line-height: 1.15;
}

.hero p {
  max-width: 780px;
  margin: 0 auto 30px;
  font-size: 20px;
}

/* BUTTONS */

.button {
  display: inline-block;
  background: #d5a8d3;
  color: white;
  padding: 15px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  transition: all 0.3s ease;
}

.button:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(111, 90, 122, 0.18);
}

.button.secondary {
  background: transparent;
  color: #6f5a7a;
  border: 2px solid #d5a8d3;
}

/* SECTIONS */

section {
  padding: 85px 0;
}

.soft-section {
  background: #fcf6fb;
}

.trust-strip {
  background: #fff0f7;
  color: #6f5a7a;
  padding: 30px 0;
  text-align: center;
  font-weight: 800;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.two-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.card {
  background: white;
  border: 1px solid #eee3ea;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  margin-bottom: 22px;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(111, 90, 122, 0.14);
}

.price {
  font-size: 28px;
  font-weight: 800;
  color: #6f5a7a;
}

.cta {
  background: #f4ddea;
  text-align: center;
  padding: 85px 20px;
}

.cta h2 {
  font-size: 42px;
}

/* FOOTER */

footer {
  background: #f0e8ef;
  color: #6f5a7a;
  padding: 50px 0 25px;
  text-align: center;
}

footer h3 {
  margin-bottom: 12px;
}

footer p {
  margin-bottom: 8px;
}

/* SCROLL REVEAL EFFECT */

.reveal {
  opacity: 0;
  transform: translateY(90px);
  transition: opacity 1.7s ease, transform 1.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */

@media (max-width: 900px) {
  .nav-container {
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: center;
  }

  .nav-left,
  .nav-right {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .logo img {
    height: 155px;
    width: 155px;
  }

  nav a {
    font-size: 15px;
  }

  .hero {
    padding: 80px 20px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 18px;
  }

  .grid,
  .two-grid,
  .trust-list {
    grid-template-columns: 1fr;
  }
}