/* ==========================================
   RADIANT PEBBLE - MINIMALIST DESIGN SYSTEM
   ========================================== */

/* CSS RESET & BASE */
* {
  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: #2C2C2C;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #2C2C2C;
  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 {
  font-size: 16px;
  margin-bottom: 16px;
  color: #4A4A4A;
}

a {
  color: #2D7A5F;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #E8934E;
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 24px;
}

li {
  margin-bottom: 8px;
  line-height: 1.8;
}

/* CONTAINER & LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

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

/* HEADER */
header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E8E8E8;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

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

.logo img {
  height: 50px;
  width: auto;
}

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

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: #2C2C2C;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #2D7A5F;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1001;
  background: #2D7A5F;
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(45, 122, 95, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #245F4A;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 350px;
  height: 100vh;
  background: #FFFFFF;
  z-index: 1000;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #2C2C2C;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

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

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

.mobile-nav a {
  font-size: 18px;
  font-weight: 500;
  color: #2C2C2C;
  padding: 12px 0;
  border-bottom: 1px solid #F0F0F0;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-nav a:hover {
  color: #2D7A5F;
  padding-left: 12px;
}

/* HERO SECTIONS */
.hero {
  background: linear-gradient(135deg, #F4F1E8 0%, #FFFFFF 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

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

.hero h1 {
  margin-bottom: 24px;
  color: #2D7A5F;
}

.subheadline {
  font-size: 20px;
  color: #4A4A4A;
  margin-bottom: 32px;
  line-height: 1.8;
}

.trust-badge,
.trust-elements,
.guarantee {
  font-size: 14px;
  color: #2D7A5F;
  font-weight: 600;
  margin-top: 24px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
}

.btn-primary {
  background-color: #2D7A5F;
  color: #FFFFFF;
  border-color: #2D7A5F;
}

.btn-primary:hover {
  background-color: #245F4A;
  border-color: #245F4A;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 122, 95, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #2D7A5F;
  border-color: #2D7A5F;
}

.btn-secondary:hover {
  background-color: #2D7A5F;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 122, 95, 0.2);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 32px 0;
}

/* CARDS & GRID LAYOUTS */
.benefits-grid,
.services-grid,
.recipe-grid,
.features-grid,
.collections-grid,
.principles-grid,
.values-grid,
.team-grid,
.options-grid,
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
  justify-content: space-between;
}

.benefit-item,
.service-card,
.recipe-card,
.feature-item,
.collection-card,
.principle-card,
.value-card,
.team-member,
.option-card,
.stat-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #E8E8E8;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.benefit-item:hover,
.service-card:hover,
.recipe-card:hover,
.collection-card:hover,
.principle-card:hover,
.value-card:hover,
.team-member:hover,
.option-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
  border-color: #2D7A5F;
}

.benefit-item img,
.principle-card img,
.option-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
}

.service-card h3,
.recipe-card h3,
.collection-card h3 {
  color: #2D7A5F;
  margin-bottom: 12px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #E8934E;
  margin: 16px 0;
}

.service-card ul {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.service-card li {
  padding: 8px 0;
  border-bottom: 1px solid #F0F0F0;
  font-size: 14px;
}

.service-card li:last-child {
  border-bottom: none;
}

.ideal-for {
  font-size: 13px;
  color: #2D7A5F;
  font-style: italic;
  margin-top: 16px;
}

.trial,
.savings {
  font-size: 13px;
  color: #E8934E;
  font-weight: 600;
  margin-top: 8px;
}

/* FEATURED/HIGHLIGHTED CARDS */
.subscription-card.featured,
.service-card.featured {
  border: 2px solid #2D7A5F;
  box-shadow: 0 8px 24px rgba(45, 122, 95, 0.15);
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #E8934E;
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* TAGS */
.tag {
  display: inline-block;
  background: #F4F1E8;
  color: #2D7A5F;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 12px;
}

.time {
  font-size: 14px;
  color: #4A4A4A;
  margin: 8px 0;
}

/* STEPS & PROCESS */
.steps-grid,
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 40px 0;
  justify-content: center;
}

.step {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  text-align: center;
  padding: 32px;
  background: #FFFFFF;
  border-radius: 8px;
  border: 1px solid #E8E8E8;
  position: relative;
}

.step-number,
.step .number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #2D7A5F;
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 20px;
}

/* TESTIMONIALS */
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background: #F4F1E8;
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid #E8934E;
  margin-bottom: 20px;
  position: relative;
}

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

.testimonial-card .author {
  font-weight: 600;
  color: #2D7A5F;
  margin-bottom: 4px;
}

.testimonial-card .result {
  font-size: 14px;
  color: #E8934E;
  font-weight: 600;
}

/* FILTERS */
.quick-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 32px 0;
}

.filter-btn {
  padding: 12px 24px;
  background: #FFFFFF;
  border: 2px solid #E8E8E8;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  color: #2C2C2C;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #2D7A5F;
  color: #FFFFFF;
  border-color: #2D7A5F;
}

.filter-groups {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 40px 0;
}

.filter-group {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 200px;
}

.filter-group h3 {
  font-size: 16px;
  margin-bottom: 16px;
  color: #2D7A5F;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  cursor: pointer;
  font-size: 14px;
  color: #4A4A4A;
}

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

/* FORMS */
.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

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

.form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2C2C2C;
  font-size: 14px;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #E8E8E8;
  border-radius: 4px;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #2D7A5F;
}

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

.form-field input[type="checkbox"] {
  margin-right: 8px;
}

.form-note {
  font-size: 13px;
  color: #4A4A4A;
  margin-top: 8px;
}

/* TEXT-IMAGE SECTIONS */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.text-image-section > * {
  flex: 1 1 calc(50% - 30px);
  min-width: 280px;
}

/* LEGAL PAGES */
.legal-content {
  padding: 60px 20px;
}

.legal-content h1 {
  color: #2D7A5F;
  margin-bottom: 32px;
}

.legal-content h2 {
  color: #2D7A5F;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #F4F1E8 0%, #FFFFFF 100%);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #2D7A5F;
  color: #FFFFFF;
  font-size: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.confirmation,
.response-time {
  font-size: 14px;
  color: #2D7A5F;
  font-weight: 600;
  margin-top: 16px;
}

/* STATS */
.stat-item {
  text-align: center;
  padding: 32px;
}

.stat-item .number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #2D7A5F;
  margin-bottom: 8px;
}

.stat-item .label {
  display: block;
  font-size: 14px;
  color: #4A4A4A;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* MILESTONES */
.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0;
}

.milestone {
  flex: 1 1 calc(25% - 16px);
  min-width: 200px;
  padding: 20px;
  background: #F4F1E8;
  border-radius: 4px;
  text-align: center;
  font-weight: 600;
  color: #2D7A5F;
}

/* CONTACT INFO */
.contact-info {
  background: #F4F1E8;
  padding: 32px;
  border-radius: 8px;
  margin: 32px 0;
}

.contact-info p {
  margin-bottom: 16px;
}

.team-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.team-contact-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: #FFFFFF;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #E8E8E8;
}

.team-contact-card .role {
  font-size: 14px;
  color: #E8934E;
  font-weight: 600;
}

.team-contact-card .specialty {
  font-size: 13px;
  color: #4A4A4A;
  font-style: italic;
  margin-top: 8px;
}

/* PREMIUM FEATURES */
.premium-features {
  background: linear-gradient(135deg, #F4F1E8 0%, #FFFFFF 100%);
  padding: 48px;
  border-radius: 8px;
  text-align: center;
  margin: 40px 0;
}

.premium-features ul {
  list-style: none;
  margin: 32px 0;
  padding: 0;
  text-align: left;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.premium-features li {
  padding: 12px 0;
  font-size: 16px;
  border-bottom: 1px solid #E8E8E8;
}

.price-highlight {
  font-size: 32px;
  font-weight: 700;
  color: #2D7A5F;
  margin: 24px 0;
}

/* VALUES & PRINCIPLES */
.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.value-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  padding: 24px;
  background: #FFFFFF;
  border-left: 4px solid #2D7A5F;
  border-radius: 4px;
}

.value-item h4 {
  color: #2D7A5F;
  margin-bottom: 12px;
}

.highlight {
  background: #F4F1E8;
  padding: 24px;
  border-left: 4px solid #E8934E;
  border-radius: 4px;
  font-weight: 600;
  margin: 24px 0;
}

/* MACROS GRID */
.macros-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.macro-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: #F4F1E8;
  padding: 24px;
  border-radius: 8px;
  border-top: 4px solid #2D7A5F;
}

.macro-card h3 {
  color: #2D7A5F;
  margin-bottom: 12px;
}

/* LOCATION & MAPS */
.location-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 32px 0;
}

.location-details,
.office-hours {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
}

/* FAQ */
.faq-list {
  margin: 32px 0;
}

.faq-item {
  background: #FFFFFF;
  padding: 24px;
  margin-bottom: 16px;
  border-radius: 8px;
  border: 1px solid #E8E8E8;
}

.faq-item h3 {
  color: #2D7A5F;
  margin-bottom: 12px;
  font-size: 18px;
}

/* FEATURES LIST */
.features {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  text-align: center;
}

.features li {
  display: inline-block;
  margin: 0 16px;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 600;
  color: #2D7A5F;
}

/* GUARANTEES */
.guarantees-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.guarantee-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background: #FFFFFF;
  border-radius: 8px;
  border: 1px solid #E8E8E8;
}

.guarantee-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
}

/* FOOTER */
footer {
  background-color: #2C2C2C;
  color: #FFFFFF;
  padding: 60px 0 20px;
  margin-top: 80px;
}

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

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

.footer-column h3,
.footer-column h4 {
  color: #FFFFFF;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-column p {
  color: #B8B8B8;
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-nav a {
  color: #B8B8B8;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444444;
}

.footer-bottom p {
  color: #B8B8B8;
  font-size: 13px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-top: 2px solid #2D7A5F;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  padding: 24px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.cookie-banner-text {
  flex: 1 1 400px;
  font-size: 14px;
  color: #2C2C2C;
}

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

.cookie-banner button {
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.cookie-accept {
  background: #2D7A5F;
  color: #FFFFFF;
}

.cookie-accept:hover {
  background: #245F4A;
}

.cookie-reject {
  background: #E8E8E8;
  color: #2C2C2C;
}

.cookie-reject:hover {
  background: #D0D0D0;
}

.cookie-settings {
  background: transparent;
  color: #2D7A5F;
  border: 2px solid #2D7A5F;
}

.cookie-settings:hover {
  background: #2D7A5F;
  color: #FFFFFF;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal h2 {
  color: #2D7A5F;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E8E8E8;
}

.cookie-category h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.cookie-toggle {
  width: 50px;
  height: 26px;
  background: #E8E8E8;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #2D7A5F;
}

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

.cookie-toggle.active::after {
  left: 27px;
}

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

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .subheadline {
    font-size: 18px;
  }
  
  /* Header */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
  }
  
  /* Cards */
  .benefit-item,
  .service-card,
  .recipe-card,
  .feature-item,
  .collection-card,
  .principle-card,
  .value-card,
  .team-member,
  .option-card,
  .stat-item,
  .testimonial-card,
  .macro-card,
  .guarantee-item,
  .milestone {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Steps */
  .step {
    flex: 1 1 100%;
  }
  
  /* Text-Image Sections */
  .text-image-section {
    flex-direction: column;
  }
  
  .text-image-section > * {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-column {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-banner-content {
    flex-direction: column;
  }
  
  .cookie-banner-buttons {
    width: 100%;
  }
  
  .cookie-banner button {
    flex: 1;
  }
  
  /* Premium Features */
  .premium-features {
    padding: 32px 20px;
  }
  
  /* Stats */
  .stat-item .number {
    font-size: 36px;
  }
  
  /* Filter Groups */
  .filter-group {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .section {
    padding: 32px 16px;
  }
  
  .hero {
    padding: 40px 16px;
  }
  
  .benefit-item,
  .service-card,
  .testimonial-card,
  .value-item {
    padding: 20px;
  }
  
  .step-number,
  .success-icon {
    width: 50px;
    height: 50px;
    font-size: 32px;
  }
  
  .price-highlight {
    font-size: 24px;
  }
}

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}

.mt-32 {
  margin-top: 32px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mt-16 {
  margin-top: 16px;
}

.mb-16 {
  margin-bottom: 16px;
}

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

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cta-buttons {
    display: none;
  }
  
  body {
    color: #000000;
  }
  
  a {
    text-decoration: underline;
  }
}
section {
  padding: 10px 0;
}