/* ===================================
   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', sans-serif;
  line-height: 1.6;
  color: #2d2d2d;
  background-color: #FFF8E7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

/* ===================================
   SOFT PASTEL COLOR SCHEME
   =================================== */

:root {
  --pastel-coral: #FFB5A0;
  --pastel-peach: #FFC9B9;
  --pastel-cream: #FFF8E7;
  --pastel-mint: #C8E6C9;
  --pastel-lavender: #E1BEE7;
  --pastel-sky: #B3E5FC;
  --pastel-yellow: #FFF9C4;
  --text-dark: #5D4E60;
  --text-medium: #8B7D8F;
  --shadow-soft: rgba(93, 78, 96, 0.1);
  --gradient-dreamy: linear-gradient(135deg, #FFB5A0 0%, #FFC9B9 50%, #FFF9C4 100%);
}

/* ===================================
   TYPOGRAPHY - SOFT & DREAMY
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 16px;
}

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

h2 {
  font-size: 32px;
  font-weight: 600;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

h4 {
  font-size: 18px;
  font-weight: 600;
}

p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-medium);
  margin-bottom: 16px;
}

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

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

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

/* ===================================
   HEADER - DREAMY PASTEL
   =================================== */

header {
  background: linear-gradient(135deg, #FFB5A0 0%, #FFC9B9 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 20px var(--shadow-soft);
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
}

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pastel-lavender);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #fff;
  transform: translateY(-2px);
}

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

/* ===================================
   MOBILE MENU - SOFT PASTEL
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  font-size: 32px;
  color: var(--text-dark);
  background: var(--pastel-cream);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px var(--shadow-soft);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: var(--pastel-peach);
  transform: scale(1.1);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #FFB5A0 0%, #FFC9B9 50%, #FFF9C4 100%);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 24px var(--shadow-soft);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 36px;
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.9);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px var(--shadow-soft);
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #fff;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 80px 24px 40px;
}

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
  transition: all 0.3s ease;
  text-align: center;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(8px);
  box-shadow: 0 4px 16px var(--shadow-soft);
}

/* ===================================
   BUTTONS - SOFT PASTEL STYLE
   =================================== */

.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 30px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 16px var(--shadow-soft);
}

.btn-primary {
  background: linear-gradient(135deg, #FFB5A0, #FFC9B9);
  color: var(--text-dark);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FFC9B9, #FFB5A0);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--shadow-soft);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-dark);
  border: 2px solid var(--pastel-coral);
}

.btn-secondary:hover {
  background: var(--pastel-cream);
  border-color: var(--pastel-peach);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--shadow-soft);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ===================================
   HERO SECTION - DREAMY GRADIENT
   =================================== */

.hero {
  background: linear-gradient(135deg, #FFB5A0 0%, #FFC9B9 50%, #FFF9C4 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s infinite ease-in-out;
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-30px) translateX(30px); }
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #fff;
  text-shadow: 0 2px 20px rgba(93, 78, 96, 0.2);
  margin-bottom: 24px;
}

.hero-subheadline {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 32px;
  line-height: 1.7;
}

.page-header {
  background: linear-gradient(135deg, #FFB5A0 0%, #FFC9B9 100%);
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.page-header h1 {
  color: #fff;
  text-shadow: 0 2px 20px rgba(93, 78, 96, 0.2);
}

.page-header p {
  font-size: 18px;
  color: var(--text-dark);
  max-width: 700px;
  margin: 16px auto 0;
}

/* ===================================
   BENEFITS & FEATURES - PASTEL CARDS
   =================================== */

.benefits, .services-showcase, .product-categories {
  padding: 60px 20px;
  background: var(--pastel-cream);
}

.benefits h2, .services-showcase h2, .product-categories h2 {
  text-align: center;
  margin-bottom: 48px;
  color: var(--text-dark);
}

.section-description {
  text-align: center;
  max-width: 700px;
  margin: -24px auto 48px;
  color: var(--text-medium);
  font-size: 18px;
}

.benefits-grid, .services-grid, .categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.benefit-card, .service-card, .category-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 250px;
  background: rgba(255, 255, 255, 0.9);
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow-soft);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.benefit-card:hover, .service-card:hover, .category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px var(--shadow-soft);
  background: #fff;
}

.benefit-card img, .service-card img, .category-card img {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 2px 8px var(--shadow-soft));
}

.benefit-card h3, .service-card h3, .category-card h3 {
  color: var(--text-dark);
  margin-bottom: 12px;
}

.benefit-card p, .service-card p, .category-card p {
  color: var(--text-medium);
  font-size: 14px;
}

.price-range {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--pastel-coral);
  margin-top: auto;
}

/* ===================================
   TESTIMONIALS - SOFT BACKGROUNDS
   =================================== */

.testimonials {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFF9C4 0%, #FFB5A0 100%);
}

.testimonials h2 {
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 48px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background: rgba(255, 255, 255, 0.95);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 24px var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
}

.customer-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 14px;
  margin-top: auto;
}

/* ===================================
   STATS & TRUST INDICATORS
   =================================== */

.trust-indicators, .achievements {
  padding: 60px 20px;
  background: var(--pastel-cream);
}

.stats-grid, .achievements-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.stat-card, .achievement-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: linear-gradient(135deg, #FFB5A0, #FFC9B9);
  padding: 40px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow-soft);
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.stat-card:hover, .achievement-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px var(--shadow-soft);
}

.stat-card h3, .achievement-card h3 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.stat-card p, .achievement-card p {
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 500;
}

/* ===================================
   NEWSLETTER - DREAMY GRADIENT
   =================================== */

.newsletter, .blog-subscription, .newsletter-discount {
  padding: 80px 20px;
  background: linear-gradient(135deg, #E1BEE7 0%, #B3E5FC 100%);
  text-align: center;
}

.newsletter h2, .blog-subscription h2, .newsletter-discount h2 {
  color: var(--text-dark);
  margin-bottom: 16px;
}

.newsletter p, .blog-subscription p, .newsletter-discount p {
  color: var(--text-dark);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 32px;
}

.newsletter-form {
  display: flex;
  gap: 16px;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.email-input {
  flex: 1 1 300px;
  padding: 14px 20px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.email-input:focus {
  outline: none;
  border-color: var(--pastel-coral);
  background: #fff;
  box-shadow: 0 4px 16px var(--shadow-soft);
}

.email-input::placeholder {
  color: var(--text-medium);
}

.privacy-note {
  font-size: 12px;
  color: var(--text-medium);
  margin-top: 16px;
}

.privacy-note a {
  color: var(--text-dark);
  text-decoration: underline;
}

/* ===================================
   CTA BANNERS - SOFT GRADIENTS
   =================================== */

.cta-banner, .cta-contact {
  padding: 80px 20px;
  background: linear-gradient(135deg, #FFB5A0 0%, #FFF9C4 100%);
  text-align: center;
}

.cta-banner h2, .cta-contact h2 {
  color: #fff;
  text-shadow: 0 2px 20px rgba(93, 78, 96, 0.2);
  margin-bottom: 16px;
}

.cta-banner p, .cta-contact p {
  font-size: 18px;
  color: var(--text-dark);
  max-width: 700px;
  margin: 0 auto 32px;
}

/* ===================================
   STORY & TIMELINE - PASTEL STYLE
   =================================== */

.story, .mission-vision {
  padding: 60px 20px;
  background: var(--pastel-cream);
}

.story h2, .mission-vision h2 {
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 32px;
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
}

.story-content p {
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 1.8;
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 48px;
}

.milestone {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: 0 4px 16px var(--shadow-soft);
  margin-bottom: 24px;
}

.milestone h3 {
  font-size: 36px;
  color: var(--pastel-coral);
  margin-bottom: 12px;
}

.milestone p {
  font-size: 14px;
  color: var(--text-medium);
}

.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 48px;
}

.mission-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: linear-gradient(135deg, #FFB5A0, #FFC9B9);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 24px var(--shadow-soft);
  margin-bottom: 24px;
}

.mission-card h2 {
  color: #fff;
  text-align: left;
  margin-bottom: 16px;
}

.mission-card p {
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
}

.values {
  text-align: center;
}

.values h2 {
  margin-bottom: 32px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.value-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: rgba(255, 255, 255, 0.9);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 16px var(--shadow-soft);
  margin-bottom: 24px;
}

.value-item h3 {
  color: var(--text-dark);
  margin-bottom: 8px;
}

.value-item p {
  font-size: 14px;
  color: var(--text-medium);
}

/* ===================================
   PROMOTIONS & DEALS - PASTEL ACCENTS
   =================================== */

.hero-banner {
  background: linear-gradient(135deg, #FFB5A0 0%, #FFF9C4 100%);
  padding: 80px 20px;
  text-align: center;
}

.hero-banner h1 {
  color: #fff;
  text-shadow: 0 2px 20px rgba(93, 78, 96, 0.2);
  margin-bottom: 16px;
}

.hero-banner p {
  font-size: 18px;
  color: var(--text-dark);
  max-width: 700px;
  margin: 0 auto 32px;
}

.featured-deals, .bundle-offers {
  padding: 60px 20px;
  background: var(--pastel-cream);
}

.deals-grid, .bundles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.deal-card, .bundle-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  background: rgba(255, 255, 255, 0.95);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 24px var(--shadow-soft);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.deal-card:hover, .bundle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px var(--shadow-soft);
}

.badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, #FFB5A0, #FFC9B9);
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 12px var(--shadow-soft);
}

.deal-card h3, .bundle-card h3 {
  color: var(--text-dark);
  margin-top: 16px;
}

.original-price {
  font-size: 18px;
  color: var(--text-medium);
  text-decoration: line-through;
  margin-bottom: 0;
}

.new-price, .bundle-price {
  font-size: 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--pastel-coral);
  margin-bottom: 8px;
}

.bundle-price .regular {
  font-size: 16px;
  color: var(--text-medium);
  text-decoration: line-through;
  font-weight: 400;
}

.savings, .bundle-savings {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 600;
  background: var(--pastel-yellow);
  padding: 8px 16px;
  border-radius: 12px;
  display: inline-block;
}

.stock-info {
  font-size: 14px;
  color: var(--pastel-coral);
  font-weight: 600;
  margin-bottom: 8px;
}

/* ===================================
   GUIDES & BLOG - SOFT CARDS
   =================================== */

.buying-guides, .how-to-articles {
  padding: 60px 20px;
  background: var(--pastel-cream);
}

.guides-grid, .articles-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.guide-card, .article-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: rgba(255, 255, 255, 0.95);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow-soft);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.guide-card:hover, .article-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px var(--shadow-soft);
}

.guide-card h3, .article-item h3 {
  color: var(--text-dark);
}

.guide-card p, .article-item p {
  color: var(--text-medium);
  flex-grow: 1;
}

.read-time {
  font-size: 12px;
  color: var(--text-medium);
  font-style: italic;
}

.article-item a {
  color: var(--pastel-coral);
  font-weight: 600;
  font-size: 14px;
  text-decoration: underline;
  margin-top: auto;
}

/* ===================================
   FAQ SECTION - ACCORDION STYLE
   =================================== */

.faq-section {
  padding: 60px 20px;
  background: var(--pastel-cream);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.95);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 16px var(--shadow-soft);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 24px var(--shadow-soft);
}

.faq-item h3 {
  color: var(--text-dark);
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-item p {
  color: var(--text-medium);
  margin-bottom: 0;
}

/* ===================================
   CONTACT METHODS - PASTEL CARDS
   =================================== */

.contact-methods, .trust-section {
  padding: 60px 20px;
  background: var(--pastel-cream);
}

.methods-grid, .trust-features {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.method-card, .trust-item {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background: rgba(255, 255, 255, 0.95);
  padding: 40px 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow-soft);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.method-card:hover, .trust-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px var(--shadow-soft);
}

.method-card img, .trust-item img {
  width: 64px;
  height: 64px;
}

.method-card h3, .trust-item h3 {
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-detail {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--pastel-coral);
  margin-bottom: 8px;
}

/* ===================================
   CONTACT FORM - SOFT INPUTS
   =================================== */

.contact-form-section {
  padding: 60px 20px;
  background: var(--pastel-cream);
}

.contact-form-section h2 {
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.contact-form-section > .container > p {
  text-align: center;
  color: var(--text-medium);
  margin-bottom: 48px;
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 24px var(--shadow-soft);
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 14px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(93, 78, 96, 0.1);
  border-radius: 12px;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--pastel-coral);
  background: #fff;
  box-shadow: 0 4px 12px var(--shadow-soft);
}

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

.form-field.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-field.checkbox input {
  width: auto;
  margin-top: 4px;
}

.form-field.checkbox label {
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 0;
}

.form-field.checkbox a {
  color: var(--pastel-coral);
  text-decoration: underline;
}

.form-wrapper .btn {
  width: 100%;
  margin-top: 16px;
}

.note {
  font-size: 12px;
  color: var(--text-medium);
  text-align: center;
  margin-top: 16px;
}

/* ===================================
   BUSINESS HOURS & INFO
   =================================== */

.business-hours, .response-commitment {
  padding: 60px 20px;
  background: var(--pastel-cream);
  text-align: center;
}

.hours-table {
  max-width: 500px;
  margin: 32px auto;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow-soft);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(93, 78, 96, 0.1);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row .day {
  font-weight: 600;
  color: var(--text-dark);
}

.hours-row .time {
  color: var(--text-medium);
}

.commitment-list {
  max-width: 600px;
  margin: 32px auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.commitment-list li {
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 16px var(--shadow-soft);
  color: var(--text-dark);
  font-size: 16px;
  text-align: left;
}

/* ===================================
   LEGAL CONTENT - READABLE STYLE
   =================================== */

.legal-content {
  padding: 60px 20px;
  background: var(--pastel-cream);
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 4px 24px var(--shadow-soft);
}

.content-wrapper h2 {
  color: var(--text-dark);
  margin-top: 32px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 2px solid rgba(93, 78, 96, 0.1);
}

.content-wrapper h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.content-wrapper h3 {
  color: var(--text-dark);
  margin-top: 24px;
  margin-bottom: 12px;
}

.content-wrapper ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 16px;
}

.content-wrapper ol {
  list-style: decimal;
  margin-left: 24px;
  margin-bottom: 16px;
}

.content-wrapper li {
  color: var(--text-medium);
  margin-bottom: 8px;
  line-height: 1.7;
}

.content-wrapper a {
  color: var(--pastel-coral);
  text-decoration: underline;
}

.contact-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFB5A0 0%, #FFC9B9 100%);
  text-align: center;
}

.contact-section h2 {
  color: #fff;
  margin-bottom: 16px;
}

.contact-section ul {
  list-style: none;
  max-width: 500px;
  margin: 24px auto;
}

.contact-section li {
  color: var(--text-dark);
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 500;
}

/* ===================================
   THANK YOU PAGE - CELEBRATION
   =================================== */

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

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #C8E6C9, #A5D6A7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #fff;
  margin: 0 auto 24px;
  box-shadow: 0 4px 24px rgba(76, 175, 80, 0.3);
  animation: successPulse 1.5s ease-in-out infinite;
}

@keyframes successPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.thank-you-content h1, .thank-you-hero h1 {
  color: #fff;
  margin-bottom: 16px;
}

.thank-you-content p, .thank-you-hero p {
  font-size: 18px;
  color: var(--text-dark);
  max-width: 600px;
  margin: 0 auto 24px;
}

.next-steps, .related-links, .contact-alternatives {
  padding: 60px 20px;
  background: var(--pastel-cream);
}

.steps-grid, .links-grid, .alternatives-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.step-card, .link-card, .alternative-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background: rgba(255, 255, 255, 0.95);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow-soft);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.step-card:hover, .link-card:hover, .alternative-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px var(--shadow-soft);
}

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #FFB5A0, #FFC9B9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.link-card h3, .alternative-card h3 {
  color: var(--text-dark);
  margin-bottom: 8px;
}

.link-card p, .alternative-card p {
  color: var(--text-medium);
  font-size: 14px;
}

/* ===================================
   FOOTER - SOFT PASTEL GRADIENT
   =================================== */

footer {
  background: linear-gradient(135deg, #E1BEE7 0%, #B3E5FC 100%);
  padding: 60px 20px 24px;
  margin-top: 60px;
}

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

.footer-column {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
}

.footer-column h3 {
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.footer-column h4 {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-column p {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.7;
}

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

.footer-nav a {
  font-size: 14px;
  color: var(--text-medium);
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: var(--text-dark);
  transform: translateX(4px);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(93, 78, 96, 0.1);
}

.footer-bottom p {
  font-size: 14px;
  color: var(--text-medium);
  margin-bottom: 0;
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #FFB5A0, #FFC9B9);
  padding: 24px 20px;
  box-shadow: 0 -4px 24px var(--shadow-soft);
  z-index: 998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  color: var(--text-dark);
  font-size: 14px;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--text-dark);
  text-decoration: underline;
  font-weight: 600;
}

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

.cookie-buttons .btn {
  padding: 10px 24px;
  font-size: 14px;
  white-space: nowrap;
}

.cookie-settings-btn {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
}

.cookie-settings-btn:hover {
  background: #fff;
}

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

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

.cookie-modal-content {
  background: var(--pastel-cream);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 8px 48px rgba(93, 78, 96, 0.3);
  transform: translateY(50px);
  transition: transform 0.3s ease;
}

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

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.cookie-modal-header h3 {
  color: var(--text-dark);
  margin-bottom: 0;
}

.cookie-close {
  font-size: 32px;
  color: var(--text-medium);
  background: rgba(255, 255, 255, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cookie-close:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: rotate(90deg);
}

.cookie-category {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 16px;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.cookie-category h4 {
  color: var(--text-dark);
  margin-bottom: 0;
  font-size: 16px;
}

.cookie-category p {
  font-size: 14px;
  color: var(--text-medium);
  margin-bottom: 0;
}

.cookie-toggle {
  width: 50px;
  height: 26px;
  background: rgba(93, 78, 96, 0.2);
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-toggle.active {
  background: linear-gradient(135deg, #FFB5A0, #FFC9B9);
}

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

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

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-footer {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.cookie-modal-footer .btn {
  flex: 1 1 200px;
}

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

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  h4 { font-size: 16px; }
  p { font-size: 14px; }

  /* Header */
  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  /* Hero */
  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-subheadline {
    font-size: 16px;
  }

  /* Buttons */
  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    padding: 12px 24px;
    font-size: 14px;
  }

  /* Cards - Stack on Mobile */
  .benefits-grid,
  .services-grid,
  .categories-grid,
  .testimonials-grid,
  .stats-grid,
  .achievements-grid,
  .deals-grid,
  .bundles-grid,
  .guides-grid,
  .methods-grid,
  .trust-features,
  .steps-grid,
  .links-grid,
  .alternatives-grid,
  .values-grid,
  .timeline,
  .mission-grid {
    flex-direction: column;
  }

  .benefit-card,
  .service-card,
  .category-card,
  .testimonial-card,
  .stat-card,
  .achievement-card,
  .deal-card,
  .bundle-card,
  .guide-card,
  .article-item,
  .method-card,
  .trust-item,
  .step-card,
  .link-card,
  .alternative-card,
  .value-item,
  .milestone,
  .mission-card {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* Newsletter Form */
  .newsletter-form {
    flex-direction: column;
  }

  .email-input {
    flex: 1 1 100%;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  .footer-column {
    flex: 1 1 100%;
  }

  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-buttons .btn {
    width: 100%;
  }

  /* Legal Content */
  .content-wrapper {
    padding: 24px;
  }

  /* Contact Form */
  .form-wrapper {
    padding: 24px;
  }

  /* Stats Cards */
  .stat-card h3,
  .achievement-card h3 {
    font-size: 36px;
  }

  /* Page Headers */
  .page-header {
    padding: 40px 20px;
  }

  /* Sections */
  .section {
    padding: 32px 20px;
    margin-bottom: 40px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet Adjustments */
  .benefit-card,
  .service-card,
  .category-card {
    flex: 1 1 calc(50% - 24px);
  }

  .stat-card,
  .achievement-card,
  .step-card,
  .value-item {
    flex: 1 1 calc(50% - 24px);
  }

  .deal-card,
  .bundle-card {
    flex: 1 1 calc(50% - 32px);
  }
}

/* ===================================
   ANIMATIONS & INTERACTIONS
   =================================== */

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

.benefit-card,
.service-card,
.testimonial-card {
  animation: fadeIn 0.6s ease forwards;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus Styles for Accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--pastel-coral);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  header,
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-banner,
  .cookie-modal,
  footer {
    display: none;
  }

  body {
    background: #fff;
  }

  .container {
    max-width: 100%;
  }
}