/* ============================================
   PURE BLOSSOM - NATURE ORGANIC DESIGN SYSTEM
   Earth tones, organic shapes, natural textures
   ============================================ */

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.7;
  color: #2D3E35;
  background: #F9FAF8;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ============================================
   TYPOGRAPHY - NATURE ORGANIC STYLE
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #25503F;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 32px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  color: #3D4F45;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ============================================
   HEADER & NAVIGATION - ORGANIC STYLE
   ============================================ */

header {
  background: linear-gradient(135deg, #25503F 0%, #2D5F4F 100%);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(37, 80, 63, 0.15);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05) rotate(-2deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.nav-menu li a {
  color: #E8F4F0;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #F7B32B;
  transition: width 0.3s ease;
}

.nav-menu li a:hover {
  color: #F7B32B;
}

.nav-menu li a:hover::after {
  width: 100%;
}

.cta-button {
  background: #F7B32B;
  color: #25503F;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(247, 179, 43, 0.3);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #E8A520;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(247, 179, 43, 0.4);
}

/* ============================================
   MOBILE MENU - SMOOTH ORGANIC ANIMATIONS
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: #25503F;
  color: #E8F4F0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 80, 63, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #2D5F4F;
  transform: scale(1.1) rotate(90deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, #25503F 0%, #1A3D2F 100%);
  z-index: 2000;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(232, 244, 240, 0.2);
  color: #E8F4F0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(247, 179, 43, 0.3);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  color: #E8F4F0;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(232, 244, 240, 0.05);
}

.mobile-nav a:hover {
  background: rgba(247, 179, 43, 0.2);
  color: #F7B32B;
  transform: translateX(8px);
}

/* ============================================
   HERO SECTION - ORGANIC NATURE DESIGN
   ============================================ */

.hero {
  background: linear-gradient(135deg, #E8F4F0 0%, #D5E8E0 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(247, 179, 43, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero h1 {
  color: #25503F;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
  font-size: 18px;
  color: #3D4F45;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.trust-badge {
  font-size: 14px;
  color: #3D4F45;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 0.8s ease 0.6s backwards;
}

.trust-badge::before {
  content: '✓';
  display: inline-block;
  width: 24px;
  height: 24px;
  background: #F7B32B;
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  font-weight: bold;
}

/* ============================================
   BUTTONS - ORGANIC ROUNDED STYLE
   ============================================ */

.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: #25503F;
  color: white;
  box-shadow: 0 4px 12px rgba(37, 80, 63, 0.3);
}

.btn-primary:hover {
  background: #1A3D2F;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 80, 63, 0.4);
}

.btn-secondary {
  background: white;
  color: #25503F;
  border: 2px solid #25503F;
  box-shadow: 0 4px 12px rgba(37, 80, 63, 0.15);
}

.btn-secondary:hover {
  background: #25503F;
  color: white;
  transform: translateY(-2px);
}

.btn-link {
  background: transparent;
  color: #25503F;
  padding: 8px 16px;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: #F7B32B;
  text-underline-offset: 4px;
}

.btn-link:hover {
  color: #F7B32B;
  transform: translateX(4px);
}

/* ============================================
   CARDS - ORGANIC SHAPES & SHADOWS
   ============================================ */

.benefits-grid,
.services-grid,
.steps-grid,
.testimonials-grid,
.guarantees-grid,
.values-grid,
.reasons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.benefit-card,
.service-card,
.step,
.testimonial-card,
.guarantee-card,
.value-card,
.reason-card {
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(37, 80, 63, 0.1);
  transition: all 0.3s ease;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  position: relative;
}

.benefit-card::before,
.service-card::before,
.guarantee-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #F7B32B 0%, #25503F 100%);
  border-radius: 20px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.benefit-card:hover,
.service-card:hover,
.guarantee-card:hover,
.value-card:hover,
.reason-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(37, 80, 63, 0.2);
}

.benefit-card:hover::before,
.service-card:hover::before,
.guarantee-card:hover::before {
  opacity: 1;
}

.benefit-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(29%) sepia(28%) saturate(1080%) hue-rotate(123deg) brightness(94%) contrast(92%);
}

.benefit-card h3,
.service-card h3,
.guarantee-card h3,
.value-card h3 {
  color: #25503F;
  margin-bottom: 12px;
}

.benefit-card p,
.service-card p,
.guarantee-card p,
.value-card p {
  color: #3D4F45;
  line-height: 1.7;
}

/* ============================================
   SERVICE CARDS - PRICING STYLE
   ============================================ */

.service-card .price {
  font-size: 32px;
  font-weight: 700;
  color: #F7B32B;
  margin: 16px 0;
}

.service-detail-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(37, 80, 63, 0.1);
  margin-bottom: 30px;
}

.service-detail-card h2 {
  color: #25503F;
  margin-bottom: 16px;
}

.service-detail-card .price {
  font-size: 40px;
  font-weight: 700;
  color: #F7B32B;
  margin: 20px 0;
}

.service-detail-card ul {
  margin: 24px 0;
}

.service-detail-card ul li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #3D4F45;
}

.service-detail-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F7B32B;
  font-weight: bold;
  font-size: 18px;
}

/* ============================================
   STEPS - ORGANIC NUMBERED DESIGN
   ============================================ */

.step {
  position: relative;
  padding-left: 80px;
}

.step-number {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #F7B32B 0%, #E8A520 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(247, 179, 43, 0.3);
}

.step h3 {
  color: #25503F;
  margin-bottom: 12px;
}

.step ul {
  margin: 16px 0;
}

.step ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #3D4F45;
}

.step ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #F7B32B;
  font-weight: bold;
}

.time-info {
  font-size: 14px;
  color: #F7B32B;
  font-weight: 600;
  margin-top: 16px;
}

/* ============================================
   TESTIMONIALS - ORGANIC REVIEW CARDS
   ============================================ */

.testimonial-card {
  background: linear-gradient(135deg, #E8F4F0 0%, white 100%);
  padding: 32px;
  border-radius: 20px;
  border-left: 4px solid #F7B32B;
  box-shadow: 0 4px 20px rgba(37, 80, 63, 0.1);
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: #2D3E35;
  margin-bottom: 16px;
  line-height: 1.8;
}

.testimonial-card .author {
  font-size: 14px;
  font-weight: 600;
  color: #25503F;
  display: block;
  margin-top: 16px;
}

.testimonial-card .author::before {
  content: '— ';
  color: #F7B32B;
}

/* ============================================
   PRICING CARDS - FEATURED HIGHLIGHT
   ============================================ */

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.price-card {
  background: white;
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(37, 80, 63, 0.1);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price-card.featured {
  background: linear-gradient(135deg, #25503F 0%, #2D5F4F 100%);
  color: white;
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(37, 80, 63, 0.3);
}

.price-card.featured h3,
.price-card.featured .price,
.price-card.featured p,
.price-card.featured li {
  color: white;
}

.price-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #F7B32B;
  color: #25503F;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(247, 179, 43, 0.3);
}

.price-card h3 {
  margin-bottom: 16px;
}

.price-card .price {
  font-size: 48px;
  font-weight: 700;
  color: #F7B32B;
  margin: 20px 0;
}

.price-card .duration {
  font-size: 14px;
  color: #3D4F45;
  margin-bottom: 8px;
}

.price-card .best-for {
  font-size: 14px;
  color: #F7B32B;
  font-weight: 600;
  margin-bottom: 20px;
}

.price-card ul {
  margin: 24px 0;
  text-align: left;
}

.price-card ul li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: #3D4F45;
}

.price-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F7B32B;
  font-weight: bold;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(37, 80, 63, 0.2);
}

.price-card.featured:hover {
  transform: scale(1.08) translateY(-8px);
}

/* ============================================
   PAGE HERO - BREADCRUMBS
   ============================================ */

.page-hero {
  background: linear-gradient(135deg, #E8F4F0 0%, #D5E8E0 100%);
  padding: 60px 20px 40px;
  text-align: center;
}

.page-hero h1 {
  color: #25503F;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #3D4F45;
  margin-bottom: 24px;
}

.breadcrumbs {
  font-size: 14px;
  color: #3D4F45;
}

.breadcrumbs a {
  color: #25503F;
  font-weight: 600;
}

.breadcrumbs a:hover {
  color: #F7B32B;
}

/* ============================================
   CONTACT PAGE - METHODS & FORM
   ============================================ */

.methods-grid,
.options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.method-card,
.option-card {
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(37, 80, 63, 0.1);
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  text-align: center;
  transition: all 0.3s ease;
}

.method-card img,
.option-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  filter: invert(29%) sepia(28%) saturate(1080%) hue-rotate(123deg) brightness(94%) contrast(92%);
}

.method-card:hover,
.option-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(37, 80, 63, 0.2);
}

.form-wrapper {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(37, 80, 63, 0.1);
  margin-top: 40px;
  max-width: 700px;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-weight: 600;
  color: #25503F;
  font-size: 14px;
}

.field input,
.field select,
.field textarea {
  padding: 14px 16px;
  border: 2px solid #E8F4F0;
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #F9FAF8;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: #F7B32B;
  background: white;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 14px;
  color: #3D4F45;
  margin-top: 8px;
}

/* ============================================
   STATS & INFO SECTIONS
   ============================================ */

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: center;
}

.stat {
  text-align: center;
  flex: 1 1 200px;
}

.stat-number,
.stat span {
  font-size: 48px;
  font-weight: 700;
  color: #F7B32B;
  display: block;
  margin-bottom: 8px;
}

.stat p {
  font-size: 16px;
  color: #3D4F45;
  font-weight: 600;
}

/* ============================================
   CTA SECTIONS - ORGANIC CALL TO ACTION
   ============================================ */

.cta-final,
.cta-section {
  background: linear-gradient(135deg, #25503F 0%, #2D5F4F 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 20px;
  margin: 60px 0;
}

.cta-final h2,
.cta-section h2 {
  color: white;
  margin-bottom: 16px;
}

.cta-final p,
.cta-section p {
  color: #E8F4F0;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.guarantee {
  color: #E8F4F0;
  font-size: 14px;
  font-weight: 600;
}

.guarantee::before {
  content: '✓';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #F7B32B;
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  margin-right: 8px;
  font-size: 12px;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */

.thank-you-hero {
  background: linear-gradient(135deg, #E8F4F0 0%, #D5E8E0 100%);
  padding: 80px 20px;
  text-align: center;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: #F7B32B;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  font-weight: bold;
  box-shadow: 0 8px 24px rgba(247, 179, 43, 0.3);
  animation: scaleIn 0.5s ease;
}

.thank-you-content {
  padding: 60px 20px;
}

.text-section {
  max-width: 700px;
  margin: 0 auto;
}

.text-section h2 {
  color: #25503F;
  margin-top: 40px;
  margin-bottom: 20px;
}

.text-section ol {
  margin: 24px 0;
  padding-left: 20px;
}

.text-section ol li {
  padding: 12px 0;
  color: #3D4F45;
  list-style: decimal;
  margin-left: 20px;
}

.urgent-note {
  background: #FFF8E8;
  border-left: 4px solid #F7B32B;
  padding: 20px;
  border-radius: 12px;
  margin: 24px 0;
}

/* ============================================
   ADDITIONAL LISTS & INFO
   ============================================ */

.additional-list {
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(37, 80, 63, 0.1);
  margin-top: 24px;
}

.additional-list li {
  padding: 16px 0;
  border-bottom: 1px solid #E8F4F0;
  color: #3D4F45;
  font-size: 16px;
}

.additional-list li:last-child {
  border-bottom: none;
}

.subscription-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

.subscription-card {
  background: white;
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(37, 80, 63, 0.1);
  flex: 1 1 calc(50% - 24px);
  max-width: 400px;
  text-align: center;
  transition: all 0.3s ease;
}

.subscription-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(37, 80, 63, 0.2);
}

.subscription-card h3 {
  color: #25503F;
  margin-bottom: 16px;
}

.subscription-card .discount {
  font-size: 20px;
  color: #F7B32B;
  font-weight: 700;
  margin: 16px 0;
}

.subscription-card .total {
  font-size: 32px;
  color: #25503F;
  font-weight: 700;
  margin: 16px 0 24px;
}

/* ============================================
   LEGAL PAGES - CLEAN TEXT LAYOUT
   ============================================ */

.legal-content {
  padding: 40px 20px;
}

.legal-content .text-section {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(37, 80, 63, 0.1);
}

.legal-content h2 {
  color: #25503F;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content p {
  color: #3D4F45;
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 16px 0 16px 24px;
}

.legal-content ul li {
  padding: 8px 0;
  color: #3D4F45;
  list-style: disc;
}

/* ============================================
   COOKIE SETTINGS
   ============================================ */

.settings-options {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.setting-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(37, 80, 63, 0.1);
}

.setting-option input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.setting-option label {
  color: #3D4F45;
  font-weight: 500;
  cursor: pointer;
}

/* ============================================
   COOKIE CONSENT BANNER - FIXED BOTTOM
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #25503F 0%, #2D5F4F 100%);
  color: white;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner p {
  color: #E8F4F0;
  margin: 0;
  flex: 1 1 300px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-accept,
.cookie-reject,
.cookie-settings-btn {
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: #F7B32B;
  color: #25503F;
}

.cookie-accept:hover {
  background: #E8A520;
  transform: translateY(-2px);
}

.cookie-reject,
.cookie-settings-btn {
  background: rgba(232, 244, 240, 0.2);
  color: white;
  border: 1px solid rgba(232, 244, 240, 0.3);
}

.cookie-reject:hover,
.cookie-settings-btn:hover {
  background: rgba(232, 244, 240, 0.3);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal h2 {
  color: #25503F;
  margin-bottom: 20px;
}

.cookie-category {
  padding: 16px;
  background: #F9FAF8;
  border-radius: 12px;
  margin-bottom: 16px;
}

.cookie-category h3 {
  color: #25503F;
  font-size: 16px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category p {
  font-size: 14px;
  color: #3D4F45;
  margin: 0;
}

.cookie-toggle {
  width: 48px;
  height: 24px;
  background: #ccc;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #F7B32B;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: flex-end;
}

/* ============================================
   FOOTER - ORGANIC NATURE STYLE
   ============================================ */

footer {
  background: linear-gradient(135deg, #1A3D2F 0%, #25503F 100%);
  color: #E8F4F0;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 220px;
}

.footer-col h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-col p,
.footer-col a {
  color: #E8F4F0;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a:hover {
  color: #F7B32B;
  padding-left: 4px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(232, 244, 240, 0.2);
}

.footer-bottom p {
  color: #E8F4F0;
  font-size: 14px;
  margin: 0;
}

/* ============================================
   ANIMATIONS - ORGANIC SMOOTH TRANSITIONS
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  /* Navigation */
  .nav-menu,
  .cta-button {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  /* Cards */
  .benefit-card,
  .service-card,
  .step,
  .testimonial-card,
  .guarantee-card,
  .value-card,
  .reason-card,
  .price-card {
    flex: 1 1 100%;
  }
  
  .price-card.featured {
    transform: scale(1);
  }
  
  /* Steps */
  .step {
    padding-left: 0;
    padding-top: 60px;
  }
  
  .step-number {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }
  
  /* Stats */
  .stats-grid {
    gap: 24px;
  }
  
  .stat {
    flex: 1 1 100%;
  }
  
  /* CTA Buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  /* Footer */
  .footer-content {
    gap: 32px;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-accept,
  .cookie-reject,
  .cookie-settings-btn {
    width: 100%;
  }
  
  /* Method Cards */
  .method-card,
  .option-card {
    flex: 1 1 100%;
  }
  
  /* Legal Content */
  .legal-content .text-section {
    padding: 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 40px;
  }
  
  .benefit-card,
  .service-card,
  .guarantee-card,
  .value-card,
  .reason-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .price-card {
    flex: 1 1 calc(50% - 24px);
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  header,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  footer {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .container {
    max-width: 100%;
  }
}

/* ============================================
   ACCESSIBILITY IMPROVEMENTS
   ============================================ */

*:focus {
  outline: 2px solid #F7B32B;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #F7B32B;
  outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  body {
    background: white;
    color: black;
  }
  
  .btn-primary {
    border: 2px solid black;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}