* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: #1e293b;
  background: #fdfbf7;
  line-height: 1.6;
  scroll-behavior: smooth;
  font-weight: 400;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Lora", serif;
  font-weight: 600;
  color: #1e293b;
}

h2 {
  font-size: 36px;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 23px;
  margin-bottom: 12px;
  font-weight: 600;
}

p,
li {
  font-size: 17px;
  color: #475569;
  margin-bottom: 16px;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 90px 0;
}

.bg-light {
  background: #ffffff;
}

.grid {
  display: grid;
  gap: 36px;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 40px 32px;
  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border-color: #cbd5e1;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background: #f0f4f2;
  color: #6b8e7b;
  font-size: 22px;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 14px 34px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  letter-spacing: 0.2px;
  font-family: "Inter", sans-serif;
  border: none;
}

.btn-primary {
  background: #6b8e7b;
  color: #ffffff;
}

.btn-primary:hover {
  background: #5a7a68;
}

.btn-secondary {
  background: transparent;
  color: #1e293b;
  border: 1.5px solid #cbd5e1;
}

.btn-secondary:hover {
  background: #f1f5f9;
  border-color: #94a3b8;
}

header {
  position: sticky;
  top: 0;
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e2e8f0;
  z-index: 100;
  padding: 16px 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;

  align-items: center;
}

.logo {
  font-family: "Lora", serif;
  font-size: 26px;
  font-weight: 700;
  color: #1e293b;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.logo span {
  color: #6b8e7b;
}

nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

nav a {
  text-decoration: none;
  color: #475569;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.2s;
}

nav a:hover {
  color: #1e293b;
}

.hero {
    padding: 100px 0 80px;
    background: #FDFBF7;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 580px;
}

.hero-icon-mobile {
    display: none;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
    color: #1E293B;
}

.hero p {
    font-size: 20px;
    max-width: 500px;
    margin-bottom: 36px;
    color: #475569;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-visual {
    background: transparent
    border: 0px solid transparent
    border-radius: 8px;
    color: #6B8E7B;
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 64px;
    max-height: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 900px) {
    .hero {
        padding: 70px 0 50px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        order: 1;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 18px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        display: none;
    }

    .hero-icon-mobile {
        display: block;
        font-size: 36px;
        color: #6B8E7B;
        margin-bottom: 16px;
        line-height: 1;
    }
}

@media (max-width: 500px) {
    .hero {
        padding: 50px 0 40px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero p {
        font-size: 17px;
    }

    .hero-icon-mobile {
        font-size: 30px;
    }
}
.price {
  font-size: 44px;
  font-weight: 700;
  color: #1e293b;
  margin: 20px 0 8px;
  font-family: "Lora", serif;
}

.price span {
  font-size: 19px;
  font-weight: 400;
  color: #64748b;
}

.faq-item {
  border-bottom: 1px solid #e2e8f0;
  padding: 24px 0;
  cursor: pointer;
  transition: background 0.2s;

}

.faq-item:hover {
  background: #ffffff;
}

.faq-question {
  font-weight: 600;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #1e293b;
}

.faq-question span {
  font-size: 24px;
  color: #6b8e7b;
  font-weight: 400;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    margin 0.35s ease;
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  margin-top: 12px;

}
form input,
form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 20px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #1e293b;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: #6b8e7b;
  box-shadow: 0 0 0 3px rgba(107, 142, 123, 0.1);
}

form button {
  width: auto;
}

footer {
  background: #1e293b;
  color: #cbd5e1;
  padding: 50px 0;
  text-align: center;
}

footer a {
  color: #6b8e7b;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 28px;
  }
  nav {
    display: none;
  }
  .hero-visual {
    height: 240px;
    font-size: 36px;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 6px;
  z-index: 200;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: #1e293b;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fdfbf7;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition:
      max-height 0.3s ease,
      padding 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid #e2e8f0;
    padding: 0 28px;
  }

  nav.active {
    max-height: 400px;
    padding: 16px 28px;
  }

  nav a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid #e2e8f0;
    width: 100%;
    font-size: 17px;
  }

  nav a.btn {
    margin-top: 12px;
    border-bottom: none;
    text-align: center;
  }
}