@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --accent-color: rgba(138, 175, 111, 0.8);
  --accent-light: rgba(138, 175, 111, 0.1);
  --accent-hover: rgba(138, 175, 111, 0.9);
  --accent-gradient: linear-gradient(135deg, rgba(138, 175, 111, 0.8) 0%, rgba(101, 163, 115, 0.9) 100%);
  --black: #000000;
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --success: #10b981;
  --error: #ef4444;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--gray-900);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 16px;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-100) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hide {
  opacity: 0;
  visibility: hidden;
}

.loading-content {
  text-align: center;
}

.loading-logo {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  animation: pulse 2s ease-in-out infinite;
}

.loading-bar {
  width: 200px;
  height: 4px;
  background: var(--gray-200);
  border-radius: 2px;
  overflow: hidden;
}

.loading-progress {
  height: 100%;
  background: var(--accent-gradient);
  width: 0;
  animation: loadingProgress 2s ease-out forwards;
}

/* Cursor Trail */
.cursor-trail {
  position: fixed;
  width: 20px;
  height: 20px;
  background: var(--accent-color);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
  mix-blend-mode: difference;
}

/* Animations */
@keyframes loadingProgress {
  to { width: 100%; }
}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes scaleIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes particles {
  0% { transform: translateY(0) rotate(0deg) scale(1); opacity: 1; }
  100% { transform: translateY(-100px) rotate(360deg) scale(0); opacity: 0; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes morphShape {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  50% { border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%; }
  75% { border-radius: 60% 40% 60% 30% / 70% 40% 50% 60%; }
}

@keyframes scrollPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(200%); }
}

@keyframes pulseIn {
  0% {
    transform: translateX(-50%) scale(0);
    opacity: 0;
  }
  50% {
    transform: translateX(-50%) scale(1.2);
    opacity: 0.3;
  }
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.1;
  }
}

/* Floating shapes in hero */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-shape {
  position: absolute;
  background: var(--accent-light);
  animation: morphShape 8s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: -5%;
  animation-delay: 2s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 30%;
  right: 20%;
  animation-delay: 4s;
}

/* Floating particles background */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: var(--accent-color);
  border-radius: 50%;
  animation: particles 8s linear infinite;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-100) 50%, #f0f9ff 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, var(--accent-light) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
}

.logo {
  width: clamp(200px, 25vw, 350px);
  height: auto;
  margin-bottom: 2rem;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.12));
  animation: scaleIn 1s ease-out, float 6s ease-in-out infinite 2s;
}

.hero-title {
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--gray-700);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 0.3s both;
  background: linear-gradient(135deg, var(--gray-700) 0%, var(--gray-900) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title strong {
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-cta {
  margin-top: 3rem;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--accent-gradient);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(138, 175, 111, 0.3));
  border: 2px solid transparent;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(138, 175, 111, 0.4));
  border-color: rgba(255,255,255,0.3);
}

/* Enhanced scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 60px;
  background: var(--gray-300);
  border-radius: 1px;
  animation: fadeInUp 1s ease-out 1s both;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-indicator:hover {
  transform: translateX(-50%) scale(1.2);
}

.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: var(--accent-gradient);
  border-radius: 1px;
  animation: scrollPulse 2s ease-in-out infinite;
}

/* Main content */
.main-content {
  max-width: min(1200px, 90vw);
  margin: 0 auto;
  padding: 6rem 2rem;
}

/* Enhanced Discount Section */
.discount-section {
  background: linear-gradient(135deg, var(--black) 0%, #1a1a2e 100%);
  color: var(--white);
  padding: clamp(3rem, 8vw, 6rem) clamp(2rem, 6vw, 4rem);
  border-radius: 0 0 50px 0;
  position: relative;
  margin-bottom: 6rem;
  overflow: hidden;
}

.discount-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--accent-color) 0%, transparent 60%);
  opacity: 0.15;
  animation: pulse 4s ease-in-out infinite;
}

.discount-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
  animation: shimmer 3s ease-in-out infinite;
}

.discount-content {
  position: relative;
  z-index: 2;
}

.discount-badge {
  display: inline-block;
  background: var(--accent-gradient);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  margin-bottom: 1.5rem;
  animation: slideInFromLeft 0.8s ease-out;
  box-shadow: 0 4px 20px rgba(138, 175, 111, 0.3));
}

.discount-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 1.5rem;
  animation: slideInFromRight 0.8s ease-out 0.2s both;
  background: linear-gradient(135deg, var(--white) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.discount-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 300;
  opacity: 0.9;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Hidden discount code that shows after email submission */
.discount-code {
  display: none;
  background: var(--white);
  color: var(--black);
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  margin: 1rem 0 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.discount-code.show {
  display: inline-block;
  animation: scaleIn 0.8s ease-out;
}

.discount-code::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(138,175,111,0.3) 50%, transparent 100%);
  transition: left 0.5s ease;
}

.discount-code:hover::before {
  left: 100%;
}

.discount-code:hover {
  transform: scale(1.05);
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2));
}

.email-description {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Enhanced Email Form */
.email-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.8s both;
  flex-wrap: wrap;
}

.input-wrapper {
  flex: 1;
  min-width: 280px;
  position: relative;
}

.email-input {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  border: 2px solid var(--gray-800);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: inherit;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.email-input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(138, 175, 111, 0.2);
  background: rgba(255, 255, 255, 0.15);
}

.email-input.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.email-input::placeholder {
  color: var(--gray-400);
}

.submit-btn {
  background: var(--accent-gradient);
  color: var(--white);
  border: none;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  white-space: nowrap;
  min-width: 140px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(138, 175, 111, 0.3));
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
  transition: left 0.5s ease;
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(138, 175, 111, 0.4));
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn.loading {
  pointer-events: none;
}

.btn-text,
.btn-loader {
  transition: opacity 0.3s ease;
}

.btn-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.submit-btn.loading .btn-text {
  opacity: 0;
}

.submit-btn.loading .btn-loader {
  opacity: 1;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.success-message,
.error-message {
  display: none;
  margin-top: 1rem;
  padding: 1.5rem;
  border-radius: 12px;
  font-weight: 500;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.5s ease-out;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.success-message {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.error-message {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
  color: var(--error);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.success-message.show,
.error-message.show {
  display: block;
}

/* Products Section */
.products-section {
  margin-top: 6rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  width: 100%;
}

.section-header.centered {
  text-align: center;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--black) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 auto 1rem;
}

.section-title.centered {
  margin-left: auto;
  margin-right: auto;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-gradient);
  border-radius: 3px;
}

.section-description {
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--gray-600);
  font-size: 1.1rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05));
  transition: all 0.3s ease;
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(20px);
  opacity: 0;
}

.product-card.animate-on-scroll {
  animation: fadeInUp 0.8s ease-out forwards;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-light) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1));
  border-color: var(--accent-color);
}

.product-card:hover::before {
  opacity: 0.1;
}

.product-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: var(--accent-light);
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.product-card:hover .product-icon-wrapper {
  background: var(--accent-gradient);
  color: var(--white);
  transform: scale(1.1);
}

.product-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.product-description {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  flex-grow: 1;
}

.product-highlight {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--accent-light);
  color: var(--accent-hover);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: auto;
}

.product-card:hover .product-highlight {
  background: var(--accent-gradient);
  color: var(--white);
}

/* Features Section */
.features-section {
  margin: 6rem 0;
}

.features-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.feature-item {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05));
  transition: all 0.3s ease;
  border: 1px solid var(--gray-200);
  transform: translateY(20px);
  opacity: 0;
}

.feature-item.animate-on-scroll {
  animation: fadeInUp 0.8s ease-out forwards;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1));
  border-color: var(--accent-color);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.2);
}

.feature-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.feature-item p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-section {
  margin: 6rem 0;
  text-align: center;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05));
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
}

.testimonial-card.animate-on-scroll {
  animation: fadeInUp 0.8s ease-out forwards;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1));
}

.testimonial-rating {
  color: #fbbf24;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--gray-800);
}

/* FAQ Section */
.faq-section {
  margin: 6rem 0;
  text-align: center;
}

.faq-container {
  max-width: 800px;
  margin: 3rem auto 0;
  text-align: left;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03));
  transition: all 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
}

.faq-item.animate-on-scroll {
  animation: fadeInUp 0.8s ease-out forwards;
}

.faq-item:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05));
  border-color: var(--accent-color);
}

.faq-question {
  width: 100%;
  background: var(--gray-50);
  padding: 1.2rem 2rem;
  text-align: left;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gray-800);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
}

.faq-question:hover,
.faq-question.active {
  background: var(--accent-light);
  color: var(--accent-color);
}

.faq-question.active {
  border-bottom: 1px solid var(--gray-200);
}

.faq-toggle {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: var(--gray-500);
}

.faq-question.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--accent-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.3s ease-out;
  padding: 0 2rem;
}

.faq-answer p {
  padding-bottom: 1.5rem;
  padding-top: 0.5rem;
  color: var(--gray-700);
  line-height: 1.8;
}

.faq-answer.show {
  max-height: 200px;
}

/* Footer */
.footer {
  position: relative;
  background: linear-gradient(135deg, var(--black) 0%, #1a1a2e 100%);
  color: var(--white);
  padding: 4rem 2rem 2rem;
  text-align: center;
  margin-top: 6rem;
  overflow: hidden;
}

.footer-wave {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' fill='%23ffffff' opacity='.05'/%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' fill='%23ffffff' opacity='.05'/%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' fill='%23ffffff' opacity='.05'/%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
}

.footer-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-links a {
  color: var(--gray-300);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-social {
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-social a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social a:hover {
  background: var(--accent-color);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 15px rgba(138, 175, 111, 0.3));
}

.footer-newsletter {
  margin-bottom: 3rem;
}

.footer-newsletter p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--gray-300);
}

.footer-email-form {
  display: flex;
  justify-content: center;
  gap: 1rem;
  max-width: 450px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-email-form input {
  flex: 1;
  padding: 0.9rem 1.2rem;
  border-radius: 8px;
  border: 1px solid var(--gray-700);
  background: var(--gray-800);
  color: var(--white);
  font-size: 1rem;
  font-family: inherit;
}

.footer-email-form input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px rgba(138, 175, 111, 0.3);
}

.footer-email-form button {
  padding: 0.9rem 2rem;
  border-radius: 8px;
  border: none;
  background: var(--accent-gradient);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.footer-email-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(138, 175, 111, 0.3);
}

.footer-copyright {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-top: 2rem;
}

.footer-pulse {
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--accent-color);
  border-radius: 50%;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  opacity: 0;
  animation: pulseIn 2s ease-out forwards;
  animation-delay: 0.5s;
  filter: blur(30px);
}

/* Hero Section for Internal Pages */
.hero-small {
  min-height: 50vh;
  padding-top: 100px;
  padding-bottom: 50px;
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-100) 50%, #f0f9ff 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: radial-gradient(circle at 20% 80%, rgba(138, 175, 111, 0.05) 0%, transparent 40%),
                  radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 40%);
  background-size: 100% 100%;
}

.hero-small .hero-background,
.hero-small::before {
    display: none !important;
    content: none !important;
    background: none !important;
}

.hero-small .logo,
.hero-small .hero-title,
.hero-small .hero-subtitle,
.hero-small .hero-cta {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
}

.hero-small .logo {
  width: clamp(150px, 18vw, 280px);
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.08));
}

.hero-small .hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--black) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-small .hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* General Content Section for all Internal Pages */
.page-content-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: left;
  font-size: 1.1rem;
  color: var(--gray-700);
  line-height: 1.8;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-content-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: var(--accent-light);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.2;
    animation: float 8s ease-in-out infinite alternate;
    z-index: 0;
}

.page-content-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.2;
    animation: float 10s ease-in-out infinite reverse;
    animation-delay: 2s;
    z-index: 0;
}

.page-content-section > *:not(.page-content-section::before):not(.page-content-section::after) {
    position: relative;
    z-index: 1;
}

.page-content-section h1,
.page-content-section h2,
.page-content-section h3,
.page-content-section h4 {
  color: var(--gray-900);
  margin-bottom: 1rem;
  line-height: 1.2;
  position: relative;
}

.page-content-section h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  width: auto;
}

.page-content-section h2::after {
  content: '';
  display: block;
  width: 50%;
  height: 4px;
  background: var(--accent-gradient);
  margin: 10px auto 0;
  border-radius: 2px;
  animation: scaleIn 0.8s ease-out;
}

.page-content-section h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  margin-top: 2.5rem;
  text-align: left;
  color: var(--accent-color);
}

.page-content-section h4 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 600;
  margin-top: 1.5rem;
  color: var(--gray-800);
  text-align: left;
}

.page-content-section p {
  margin-bottom: 1.2rem;
}

.page-content-section ul,
.page-content-section ol {
  margin-left: 25px;
  margin-bottom: 1.5rem;
  list-style-type: disc;
}

.page-content-section ol {
  list-style-type: decimal;
}

.page-content-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: var(--gray-700);
  padding-left: 5px;
}

.page-content-section ul li::marker {
    color: var(--accent-color);
}

.page-content-section a {
  color: var(--accent-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-content-section a:hover {
  color: var(--accent-hover);
  text-decoration: none;
}

/* Story Section - About Page */
.story-section {
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    font-size: 1.1rem;
    color: var(--gray-700);
    line-height: 1.8;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05));
    border: 1px solid var(--gray-200);
    animation: fadeInUp 0.8s ease-out forwards;
    transition: all 0.3s ease;
}

.story-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1));
    border-color: var(--accent-color);
}

.story-content p {
    margin-bottom: 1.5rem;
}

/* Team Section - About Page */
.team-section {
    padding: 4rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05));
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
}

.team-member.animate-on-scroll {
  animation: fadeInUp 0.8s ease-out forwards;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1));
  border-color: var(--accent-color);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 4px solid var(--accent-light);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1));
  transition: all 0.3s ease;
}

.team-member:hover .team-photo {
    transform: scale(1.05) rotate(2deg);
    border-color: var(--accent-color);
}

.team-member h3 {
  font-size: 1.5rem;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.team-member p {
  font-size: 1rem;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-member span {
  font-style: italic;
  color: var(--gray-600);
  font-size: 0.9rem;
}

/* Contact Page specific styles */
.contact-section {
  padding: 4rem 0;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  text-align: center;
}

.contact-item {
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.04));
  transition: all 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
}

.contact-item.animate-on-scroll {
    animation: fadeInUp 0.8s ease-out forwards;
}

.contact-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08));
  border-color: var(--accent-color);
}

.contact-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

.contact-item h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--gray-800);
}

.contact-item p, .contact-item a {
  font-size: 1.05rem;
  color: var(--gray-600);
  word-break: break-word;
}

.contact-form-container {
    max-width: 700px;
    margin: 3rem auto;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.07));
    animation: scaleIn 0.8s ease-out forwards;
}

.contact-form-container .section-title {
    margin-bottom: 2.5rem;
}

/* Forms on internal pages */
.standard-form {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--gray-800);
  font-size: 1.05rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.4rem;
  border: 2px solid var(--gray-300);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1.05rem;
  color: var(--gray-800);
  background-color: var(--white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px var(--accent-light);
  background-color: var(--gray-50);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-submit-button {
  display: inline-block;
  padding: 1.1rem 3rem;
  background: var(--accent-gradient);
  color: var(--white);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 28px rgba(138, 175, 111, 0.35));
  border: none;
  cursor: pointer;
  align-self: center;
  margin-top: 1.5rem;
  position: relative;
  overflow: hidden;
}

.form-submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
    transition: left 0.5s ease;
}

.form-submit-button:hover::before {
    left: 100%;
}

.form-submit-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(138, 175, 111, 0.45));
}

.form-message {
    margin-top: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
    display: none;
    animation: fadeInUp 0.5s ease-out;
}
.form-message.success {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.3);
}
.form-message.error {
    background: rgba(239, 68, 68, 0.15);
    color: var(--error);
    border: 1px solid rgba(239, 68, 68, 0.3);
}
.form-message.show {
    display: block;
}

/* General utility for sections */
.section-padding {
  padding: 6rem 0;
}

/* Footer Wave fix for internal pages */
.footer-wave {
    transform: translateY(-0%) !important;
    top: -100px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .discount-section {
    padding: 3rem 1.5rem;
    border-radius: 0 0 30px 0;
  }

  .discount-title {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }

  .email-form {
    flex-direction: column;
    align-items: stretch;
  }

  .submit-btn {
    width: 100%;
  }

  .footer-email-form {
    flex-direction: column;
  }

  .footer-email-form button {
    width: 100%;
  }

  /* Responsive for Internal Pages - General */
  .hero-small {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .section-padding {
    padding: 4rem 0;
  }

  .story-content {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .logo {
    width: 250px;
  }

  .cta-button {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }

  .discount-badge {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  .discount-code {
    padding: 0.8rem 1.5rem;
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .products-grid,
  .features-container,
  .testimonials-container {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
  }

  /* Further small screen adjustments for internal pages */
  .hero-small .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }
  .hero-small .hero-subtitle {
    font-size: clamp(0.9rem, 3vw, 1.2rem);
  }
}