:root {
  --primary: #1e3a34; /* Deep Forest Green */
  --accent: #e76f51; /* Warm Coral */
  --bg-main: #fdfbf7; /* Cream White */
  --bg-card: #ffffff;
  --text-main: #264653;
  --text-muted: #6b7c85;
  --border: #e8e1d9;
  --radius: 16px;
  --container: 1140px;
  --shadow: 0 10px 40px -10px rgba(30, 58, 52, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Georgia", serif; /* Serif for human touch */
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(253, 251, 247, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  font-family: "Georgia", serif;
  transition: all 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
  transform: scale(1.05);
  transition: all 0.3s ease;
}

.logo img {
  height: 50px;
  width: 50px;
}

.logo i {
  color: var(--accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav__link {
  font-weight: 500;
  color: var(--text-main);
  font-size: 0.95rem;
}

.nav__link:hover,
.nav__link.active {
  color: var(--accent);
}

.nav__btn {
  padding: 10px 24px;
  background: var(--primary);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
}

.nav__btn:hover {
  background: var(--accent);
  color: #fff;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger__line {
  width: 25px;
  height: 2px;
  background: var(--primary);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-main);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu__close {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--primary);
}

.mobile-menu__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}

.mobile-link {
  font-family: "Georgia", serif;
  font-size: 1.8rem;
  color: var(--primary);
}

/* Hero */
.hero {
  padding-top: 140px;
  padding-bottom: 80px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(231, 111, 81, 0.1);
  color: var(--accent);
  font-weight: 600;
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.hero__title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.hero__desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero__buttons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: 0.3s;
  font-size: 1rem;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(30, 58, 52, 0.2);
}
.btn--primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.btn--accent {
  background: var(--accent);
  color: #fff;
}
.btn--accent:hover {
  background: #fff;
  color: var(--accent);
}

.btn--text {
  background: none;
  color: var(--primary);
  padding: 0;
  gap: 8px;
}
.btn--text:hover {
  color: var(--accent);
  gap: 12px;
}

.hero__img {
  position: relative;
}

.hero__img img {
  box-shadow: var(--shadow);
}

.floating-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #fff;
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
  font-weight: 600;
  border: 1px solid var(--border);
}
.floating-badge i {
  color: var(--accent);
}

/* Sections */
.section {
  padding: 100px 0;
}
.bg-light {
  background: #f2f0eb;
}
.bg-dark {
  background: var(--primary);
  color: #fff;
}

.section__head {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}
.section__head h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--primary);

  @media (max-width: 500px) {
    font-size: 2rem;
  }
}
.section__head p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Features */
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;

  @media (max-width: 500px) {
    grid-template-columns: 1fr;
    justify-content: center;
  }
}

.feature-card {
  background: var(--bg-card);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: 0.3s;
  border: 1px solid transparent;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.icon-box {
  width: 60px;
  height: 60px;
  background: rgba(30, 58, 52, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 24px;
}
.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--primary);
}
.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Split Block */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-block__content h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: var(--primary);
}
.split-block__content p {
  margin-bottom: 20px;
  color: var(--text-muted);
}

.info-list {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info-item {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--primary);
  font-weight: 600;
}
.info-item i {
  color: var(--accent);
}
.mt-4 {
  margin-top: 20px;
}

/* Benefits (Dark) */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.benefit-text h2 {
  margin-bottom: 24px;
  color: #fff;
}
.big-text {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 24px;
  opacity: 0.9;
}
.benefit-text p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}

.benefit-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.stat-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: var(--radius);
  text-align: center;
}
.stat-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}
.stat-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* FAQ - FIXED STYLING */
.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion__item {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}

.accordion__header {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  text-align: left;
  font-family: inherit;
}

.accordion__header i {
  transition: transform 0.3s ease;
}

/* Active State */
.accordion__item.active .accordion__header i {
  transform: rotate(180deg);
  color: var(--accent);
}

.accordion__content {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-out; /* JavaScript controls inline height */
}

.accordion__body {
  padding: 0 24px 24px 24px;
  color: var(--text-muted);
}

/* Contact */
.contact-section {
  background: var(--bg-light);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}
.contact-card i {
  color: var(--accent);
}

.form {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form__field {
  margin-bottom: 20px;
}
.form__field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary);
}
.form__field input {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  background: var(--bg-main);
}
.form__field input:focus {
  outline: none;
  border-color: var(--accent);
}
.error-msg {
  color: #d63031;
  font-size: 0.85rem;
  margin-top: 6px;
  display: none;
}
.form__checkbox {
  margin-bottom: 24px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.form__checkbox a {
  color: var(--accent);
  text-decoration: underline;
}
.w-100 {
  width: 100%;
}

/* Footer */
.footer {
  background: var(--primary);
  color: #fff;
  padding: 80px 0 40px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
.logo--light {
  color: #fff;
  margin-bottom: 20px;
}
.footer h4 {
  margin-bottom: 20px;
  color: var(--accent);
  font-family: "Georgia", serif;
}
.footer__nav li {
  margin-bottom: 12px;
}
.footer__nav a {
  color: rgba(255, 255, 255, 0.7);
}
.footer__nav a:hover {
  color: #fff;
}

/* Cookie */
.cookie-modal {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #fff;
  padding: 24px;
  width: 340px;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  z-index: 999;
  display: none;
  border-top: 4px solid var(--accent);
}
.cookie-modal p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.btn--small {
  padding: 8px 20px;
  font-size: 0.9rem;
  background: var(--primary);
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .nav,
  .nav__btn {
    display: none;
  }
  .burger {
    display: flex;
  }
  .hero__grid,
  .split-block,
  .benefits-grid,
  .contact-grid,
  .footer__inner {
    grid-template-columns: 1fr;
  }
  .hero__img {
    order: -1;
    margin-bottom: 40px;
  }
  .hero__title {
    font-size: 2.8rem;
  }
}

.pages {
  padding: 120px 0;
}

.pages-wrap {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto 20px;
}

.pages h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 40px;
  text-align: center;
}

.text-wrapper {
  background: #f8fafc;
  padding: 50px 40px;
  border-radius: 20px;
  line-height: 1.8;
}

.text-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
  padding-bottom: 5px;
}

.text-wrapper h3 {
  color: #000000;
  margin-bottom: 20px;
}

.text-wrapper p {
  color: #64748b;
  margin-bottom: 20px;
}

.text-wrapper ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.text-wrapper ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #1e293b;
}

.text-wrapper ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--primary);
  top: 0;
}

.text-wrapper strong {
  color: var(--color-error);
}

.text-wrapper a {
  color: #001eff;
  text-decoration: underline;
  font-weight: 600;
}

@media (max-width: 768px) {
  .pages {
    padding: 100px 0 60px;
  }
  .pages h1 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px;
    margin-top: 30px;
  }
}

.text-wrapper ol {
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: #000000;
}

.margin {
  margin: 120px 0 50px;
  color: var(--accent);
}
