@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&family=Bitter:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #2D6A4F;
  --primary-light: #52B788;
  --primary-dark: #1B4332;
  --accent: #D4A373;
  --accent-light: #FAEDCD;
  --neutral-100: #F8F9FA;
  --neutral-200: #E9ECEF;
  --neutral-300: #DEE2E6;
  --neutral-800: #343A40;
  --neutral-900: #212529;
  --white: #FFFFFF;
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Bitter', serif;
  --header-h: 70px;
  --footer-h: auto;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
}

body {
  font-family: var(--font-body);
  color: var(--neutral-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--neutral-900);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--primary-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10001;
  background: rgba(27, 67, 50, 0.97);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s;
}

.header.scrolled {
  background: rgba(27, 67, 50, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.header.hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 24px;
}

.brand {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
}

.brand:hover {
  color: var(--accent);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-desktop a {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 4px 0;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}

.nav-desktop a:hover {
  color: var(--white);
}

.nav-desktop a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  gap: 5px;
  z-index: 9999;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(27, 67, 50, 0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 1050;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s, color 0.3s;
}

.mobile-nav.active a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav.active a:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.active a:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.active a:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.active a:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav.active a:nth-child(5) { transition-delay: 0.3s; }

.mobile-nav a:hover {
  color: var(--accent);
}

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--primary-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,67,50,0.85) 0%, rgba(45,106,79,0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 2.6rem;
  color: var(--white);
  margin-bottom: 14px;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  line-height: 1.7;
}

.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--neutral-900);
}

.btn-primary:hover {
  background: #c49463;
  color: var(--neutral-900);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,163,115,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary-dark);
}

.btn-green {
  background: var(--primary);
  color: var(--white);
}

.btn-green:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45,106,79,0.35);
}

.section {
  padding: 70px 0;
}

.section-alt {
  background: var(--neutral-100);
}

.section-dark {
  background: var(--primary-dark);
  color: var(--white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-title {
  font-size: 1.7rem;
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  color: var(--neutral-800);
  font-size: 0.92rem;
  margin-bottom: 45px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.8;
}

.section-dark .section-subtitle {
  color: rgba(255,255,255,0.7);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.2rem;
  color: var(--primary);
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.card p {
  font-size: 0.85rem;
  color: var(--neutral-800);
  opacity: 0.75;
  line-height: 1.6;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.split-text h2 {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.split-text p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 12px;
  opacity: 0.85;
}

.split-img {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  counter-reset: step;
}

.step {
  text-align: center;
  padding: 24px 16px;
  counter-increment: step;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.step h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.85rem;
  opacity: 0.75;
  line-height: 1.6;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial {
  background: var(--white);
  border-radius: 12px;
  padding: 26px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  border-left: 4px solid var(--accent);
}

.testimonial p {
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 12px;
  opacity: 0.85;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

.cta-section {
  text-align: center;
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.cta-section h2 {
  color: var(--white);
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero {
  padding: 120px 0 50px;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.page-hero h1 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 10px;
}

.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
  max-width: 500px;
  margin: 0 auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.product-info {
  padding: 22px;
}

.product-info h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.product-info h3 i {
  color: var(--primary);
  margin-right: 8px;
  font-size: 0.95em;
}

.product-info p {
  font-size: 0.83rem;
  opacity: 0.75;
  margin-bottom: 12px;
  line-height: 1.6;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}

.product-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info-card {
  background: var(--primary-dark);
  border-radius: 14px;
  padding: 36px 28px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-info-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 0.85rem;
  opacity: 0.8;
  line-height: 1.6;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-detail i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail-text {
  font-size: 0.85rem;
  opacity: 0.9;
  line-height: 1.5;
}

.contact-detail-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
  opacity: 1;
}

.contact-form {
  background: var(--white);
  border-radius: 14px;
  padding: 36px 28px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.contact-form h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--neutral-800);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--neutral-300);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  transition: border-color 0.3s;
  background: var(--neutral-100);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 18px;
}

.checkbox-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.checkbox-group label {
  font-size: 0.78rem;
  line-height: 1.5;
  opacity: 0.8;
}

.map-wrapper {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 350px;
  border: 0;
}

.fullpage {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 40px;
}

.fullpage-content h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.fullpage-content p {
  font-size: 0.95rem;
  margin-bottom: 24px;
  opacity: 0.8;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.fullpage-content i {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 18px;
}

.footer {
  background: var(--neutral-900);
  color: rgba(255,255,255,0.6);
  padding: 28px 0;
  font-size: 0.75rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-family: var(--font-heading);
  font-size: 0.73rem;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.73rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent);
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--neutral-900);
  color: var(--white);
  padding: 18px 24px;
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.4s;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.privacy-popup.visible {
  transform: translateY(0);
}

.privacy-popup-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.privacy-popup-inner p {
  font-size: 0.78rem;
  opacity: 0.85;
  flex: 1;
  min-width: 250px;
  line-height: 1.5;
}

.privacy-popup-inner p a {
  color: var(--accent);
  text-decoration: underline;
}

.privacy-popup-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.privacy-popup-btns button {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.popup-accept {
  background: var(--accent);
  color: var(--neutral-900);
}

.popup-accept:hover {
  background: #c49463;
}

.popup-decline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}

.popup-decline:hover {
  border-color: var(--white);
}

.policy-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 50px 20px;
}

.policy-content h2 {
  font-size: 1.3rem;
  margin: 30px 0 10px;
  color: var(--primary-dark);
}

.policy-content h3 {
  font-size: 1.05rem;
  margin: 20px 0 8px;
}

.policy-content p {
  font-size: 0.87rem;
  line-height: 1.75;
  margin-bottom: 12px;
  opacity: 0.85;
}

.policy-content ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.policy-content ul li {
  list-style: disc;
  font-size: 0.87rem;
  line-height: 1.75;
  opacity: 0.85;
  margin-bottom: 4px;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 28px 18px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.value-card i {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.value-card h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.value-card p {
  font-size: 0.82rem;
  opacity: 0.75;
  line-height: 1.6;
}

.habit-block {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 24px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.habit-block i {
  font-size: 1.4rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}

.habit-block h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.habit-block p {
  font-size: 0.85rem;
  opacity: 0.8;
  line-height: 1.65;
}

.date-dynamic {
  font-size: 0.75rem;
  opacity: 0.5;
}

@media (max-width: 900px) {
  .nav-desktop {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .card-grid,
  .product-grid,
  .steps-grid,
  .about-values {
    grid-template-columns: 1fr 1fr;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  html {
    font-size: 14px;
  }
  .card-grid,
  .product-grid,
  .steps-grid,
  .about-values {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: 75vh;
  }
  .hero-content h1 {
    font-size: 1.7rem;
  }
  .section {
    padding: 45px 0;
  }
  .page-hero {
    padding: 100px 0 35px;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .privacy-popup-inner {
    flex-direction: column;
    text-align: center;
  }
  .privacy-popup-btns {
    width: 100%;
    justify-content: center;
  }
  .contact-info-card {
    padding: 24px 20px;
  }
  .contact-form {
    padding: 24px 20px;
  }
  .habit-block {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 380px) {
  html {
    font-size: 13px;
  }
  .header-inner {
    padding: 0 14px;
  }
  .brand {
    font-size: 1rem;
  }
  .hero-content h1 {
    font-size: 1.5rem;
  }
  .btn {
    padding: 10px 22px;
    font-size: 0.75rem;
  }
}
