/* ===== RESET & BASE STYLES ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-color: #A8FF60;
  --primary-dark: #8AD648;
  --secondary-color: #1A1E2C;
  --secondary-light: #2A2F42;
  --text-color: #333333;
  --text-light: #666666;
  --white: #FFFFFF;
  --light-bg: #F8F9FA;
  --border-color: #E5E7EB;
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  
  --header-height: 80px;
  --container-width: 1180px;
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-color);
  background-color: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.125rem;
  text-align: center;
  color: var(--text-light);
  max-width: 720px;
  margin: 0 auto 3rem;
}

/* ===== LAYOUT & CONTAINERS ===== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

.section-header {
  margin-bottom: 3rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--border-radius);
  text-align: center;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-hero {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  font-size: 1.125rem;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 24px rgba(168, 255, 96, 0.2);
}

.btn-hero:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(168, 255, 96, 0.3);
}

.btn-pricing {
  width: 100%;
  background-color: var(--secondary-light);
  color: var(--white);
}

.btn-pricing:hover {
  background-color: var(--secondary-color);
}

.btn-pricing.highlighted {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.btn-pricing.highlighted:hover {
  background-color: var(--primary-dark);
}

.btn-form {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  width: 100%;
}

.btn-form:hover {
  background-color: var(--primary-dark);
}

.btn-subscribe {
  background-color: var(--secondary-color);
  color: var(--white);
  width: 100%;
}

.btn-subscribe:hover {
  background-color: var(--secondary-light);
}

/* ===== HEADER & NAVIGATION ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--white);
  z-index: 1000;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo img {
  height: 40px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  color: var(--text-color);
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.header-cta {
  margin-left: 2rem;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  width: 30px;
  height: 24px;
}

.mobile-menu-toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--text-color);
  border-radius: 3px;
  transition: var(--transition);
}

.mobile-menu-toggle span:nth-child(1) {
  top: 0;
}

.mobile-menu-toggle span:nth-child(2) {
  top: 10px;
}

.mobile-menu-toggle span:nth-child(3) {
  top: 20px;
}

/* ===== HERO SECTION ===== */
.hero-section {
  padding-top: calc(var(--header-height) + 5rem);
  padding-bottom: 5rem;
  background-color: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
}

.hero-content {
  max-width: 540px;
  z-index: 2;
}

.hero-title {
  font-family: 'Anton', sans-serif;
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.hero-image {
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-image img {
  object-fit: cover;
}

.hero-shape {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 45%;
  height: 120%;
  background-color: var(--primary-color);
  opacity: 0.1;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 0;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
  background-color: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.benefit-card {
  padding: 2rem;
  background-color: var(--light-bg);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.benefit-icon {
  margin-bottom: 1.5rem;
}

.benefit-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.benefit-description {
  color: var(--text-light);
}

/* ===== EVERYDAY SECTION ===== */
.everyday-section {
  background-color: var(--light-bg);
}

.everyday-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.everyday-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.everyday-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.everyday-image {
  height: 200px;
  overflow: hidden;
}

.everyday-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.everyday-card:hover .everyday-image img {
  transform: scale(1.05);
}

.everyday-title {
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: 1.25rem;
}

.everyday-description {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
}

/* ===== PROCESS SECTION ===== */
.process-section {
  background-color: var(--white);
}

.process-steps {
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 70px;
  left: 25px;
  width: 2px;
  height: calc(100% + 3rem);
  background-color: var(--border-color);
  z-index: 0;
}

.process-step:last-child::after {
  display: none;
}

.step-number {
  font-family: 'Anton', sans-serif;
  font-size: 2rem;
  color: var(--primary-color);
  flex-shrink: 0;
  width: 50px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-content {
  flex-grow: 1;
}

.step-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.step-description {
  color: var(--text-light);
}

.step-icon {
  margin-left: auto;
  flex-shrink: 0;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  background-color: var(--light-bg);
}

.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 560px;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.testimonial-image {
  flex-shrink: 0;
}

.testimonial-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-content {
  flex-grow: 1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 3rem;
  line-height: 0;
  position: absolute;
  top: 0.5rem;
  left: -1.5rem;
  color: var(--primary-color);
  opacity: 0.3;
}

.author-name {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.author-info {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  background-color: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background-color: var(--light-bg);
  border-radius: var(--border-radius);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.pricing-card.featured {
  background-color: var(--secondary-color);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  right: 30px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 20px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.featured .pricing-header {
  border-color: rgba(255, 255, 255, 0.1);
}

.pricing-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: normal;
}

.pricing-period {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.featured .pricing-period {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-features {
  margin-bottom: 2rem;
}

.pricing-features ul {
  list-style: none;
}

.pricing-features li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}

.pricing-features li::before {
  content: '✓';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 0;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background-color: var(--light-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form-container {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

label {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

input, textarea {
  padding: 0.875rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: inherit;
  transition: var(--transition);
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(168, 255, 96, 0.2);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-map {
  height: 300px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.newsletter-form {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.newsletter-form h3 {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.subscribe-form {
  display: grid;
  gap: 1rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 3rem 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links ul {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  opacity: 0.7;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
}

.copyright {
  text-align: center;
  opacity: 0.5;
  font-size: 0.875rem;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
}

/* ===== AOS ANIMATION STYLES ===== */
[data-aos] {
  opacity: 0;
  transition: opacity 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
}

/* ===== MEDIA QUERIES ===== */
@media screen and (max-width: 1200px) {
  :root {
    --container-width: 960px;
  }

  .hero-title {
    font-size: 3rem;
  }
}

@media screen and (max-width: 992px) {
  :root {
    --container-width: 720px;
  }

  .hero-container {
    flex-direction: column;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
    margin-bottom: 2rem;
  }

  .hero-shape {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --container-width: 540px;
    --header-height: 70px;
  }

  .section-title {
    font-size: 2rem;
  }

  .mobile-menu-toggle {
    display: block;
    margin-left: auto;
    z-index: 1001;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5rem 2rem;
    gap: 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .header-cta {
    display: none;
  }

  .testimonial-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .testimonial-text::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .process-step {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding-left: 0;
  }

  .process-step::after {
    left: 50%;
    top: 60px;
    transform: translateX(-50%);
  }

  .step-number {
    width: 100%;
  }

  .step-icon {
    margin: 0 auto;
  }
}

@media screen and (max-width: 576px) {
  :root {
    --container-width: 100%;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-links ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}