/* ===================================
   TIMBERFLUX - MINIMALIST DESIGN
   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, sans-serif;
  line-height: 1.7;
  color: #2C2C2C;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

/* ===================================
   TYPOGRAPHY - MINIMALIST STYLE
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: #2C5F4F;
  margin-bottom: 24px;
}

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

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

h3 {
  font-size: 24px;
}

p {
  margin-bottom: 16px;
  color: #4A4A4A;
}

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

a:hover {
  color: #D4A574;
}

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

li {
  margin-bottom: 8px;
}

strong {
  font-weight: 600;
  color: #2C5F4F;
}

/* ===================================
   LAYOUT CONTAINERS
   =================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ===================================
   HEADER - MINIMALIST CLEAN
   =================================== */

header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E8E8E8;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s ease;
}

header.scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo {
  height: 40px;
  width: auto;
  display: block;
}

/* ===================================
   NAVIGATION - MINIMALIST
   =================================== */

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

.main-nav a {
  color: #2C5F4F;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.main-nav a:hover {
  border-bottom-color: #D4A574;
}

/* ===================================
   MOBILE MENU - BURGER NAVIGATION
   =================================== */

.mobile-menu-toggle {
  display: none;
  background: #FFFFFF;
  border: 1px solid #E8E8E8;
  color: #2C5F4F;
  font-size: 24px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  border-radius: 4px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #F4F1EA;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
  z-index: 999;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  padding: 80px 32px 32px;
}

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

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

.mobile-menu-close:hover {
  color: #D4A574;
}

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

.mobile-nav a {
  color: #2C5F4F;
  font-weight: 500;
  font-size: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #F4F1EA;
  transition: padding-left 0.3s ease;
}

.mobile-nav a:hover {
  padding-left: 8px;
  color: #D4A574;
}

/* ===================================
   BUTTONS - MINIMALIST STYLE
   =================================== */

.cta-button, 
.cta-primary {
  display: inline-block;
  background-color: #2C5F4F;
  color: #FFFFFF;
  padding: 16px 32px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
}

.cta-button:hover,
.cta-primary:hover {
  background-color: #1F4438;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.cta-secondary {
  display: inline-block;
  background-color: transparent;
  color: #2C5F4F;
  padding: 16px 32px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 2px solid #2C5F4F;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
}

.cta-secondary:hover {
  background-color: #2C5F4F;
  color: #FFFFFF;
}

.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ===================================
   HERO SECTION - MINIMALIST
   =================================== */

.hero-section {
  background-color: #F4F1EA;
  padding: 120px 20px;
  margin-bottom: 60px;
}

.hero-section .content-wrapper {
  text-align: center;
}

.hero-section h1 {
  margin-bottom: 24px;
}

.hero-section p {
  font-size: 18px;
  color: #4A4A4A;
  margin-bottom: 32px;
}

.error-hero {
  text-align: center;
}

.error-code {
  font-size: 120px;
  font-weight: 700;
  color: #D4A574;
  line-height: 1;
  margin-bottom: 16px;
}

.thank-you-hero h1 {
  color: #2C5F4F;
}

/* ===================================
   SECTIONS - MINIMALIST SPACING
   =================================== */

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

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #4A4A4A;
  max-width: 700px;
  margin: 0 auto 48px;
}

/* ===================================
   SERVICE CARDS - MINIMALIST GRID
   =================================== */

.service-grid,
.service-detail-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}

.service-card,
.service-detail {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 40px;
  border: 1px solid #E8E8E8;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover,
.service-detail:hover {
  border-color: #D4A574;
  transform: translateY(-4px);
}

.service-card h3,
.service-detail h3 {
  color: #2C5F4F;
  margin-bottom: 16px;
  font-size: 20px;
}

.service-card p,
.service-detail p {
  margin-bottom: 16px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #2C5F4F;
  margin-top: 24px;
}

/* ===================================
   BENEFITS & STATS - FLEXBOX
   =================================== */

.benefits-grid,
.stats-grid,
.approach-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
  justify-content: space-between;
}

.benefit,
.stat,
.approach-item {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 32px 16px;
  background: #F4F1EA;
  position: relative;
}

.benefit h3,
.approach-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #2C5F4F;
  line-height: 1;
  margin-bottom: 8px;
}

.stat p {
  color: #4A4A4A;
  font-size: 14px;
}

/* ===================================
   TESTIMONIALS - READABLE CONTRAST
   =================================== */

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: #F4F1EA;
  padding: 32px;
  border-left: 4px solid #D4A574;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card p {
  color: #2C2C2C;
  font-style: italic;
  line-height: 1.8;
}

.author {
  font-weight: 600;
  color: #2C5F4F;
  font-style: normal;
  font-size: 14px;
  margin-top: 16px;
}

/* ===================================
   CASE STUDIES & CONTENT
   =================================== */

.case-study {
  background: #F4F1EA;
  padding: 40px;
  margin-bottom: 32px;
  border-left: 4px solid #2C5F4F;
}

.case-study h3 {
  margin-bottom: 24px;
}

.case-study p {
  margin-bottom: 12px;
}

.case-study .testimonial {
  font-style: italic;
  color: #2C2C2C;
  padding: 20px;
  background: #FFFFFF;
  margin-top: 24px;
  border-left: 3px solid #D4A574;
}

/* ===================================
   BLOG CARDS - MINIMALIST GRID
   =================================== */

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}

.blog-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px;
  border: 1px solid #E8E8E8;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.blog-card:hover {
  border-color: #D4A574;
  transform: translateY(-4px);
}

.blog-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.meta {
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===================================
   FEATURED POST
   =================================== */

.featured-post {
  background: #F4F1EA;
  padding: 48px;
  margin-bottom: 48px;
}

.featured-post h2 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #D4A574;
  margin-bottom: 16px;
}

.featured-post h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

/* ===================================
   CATEGORIES & FILTERS
   =================================== */

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  justify-content: center;
}

.category {
  background: #FFFFFF;
  border: 1px solid #E8E8E8;
  padding: 8px 16px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category:hover {
  background: #2C5F4F;
  color: #FFFFFF;
  border-color: #2C5F4F;
}

/* ===================================
   PACKAGES - PRICING CARDS
   =================================== */

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

.package-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 350px;
  background: #F4F1EA;
  padding: 48px 32px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.package-card:hover {
  border-color: #2C5F4F;
  transform: scale(1.03);
}

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

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

.savings {
  display: inline-block;
  background: #D4A574;
  color: #FFFFFF;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

/* ===================================
   CONTACT & INFO SECTIONS
   =================================== */

.contact-options-grid,
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.contact-option,
.info-item {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background: #F4F1EA;
  padding: 32px;
  text-align: center;
}

.contact-option h3,
.info-item h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

/* ===================================
   LISTS & STRUCTURED CONTENT
   =================================== */

.meeting-options,
.expectations-list,
.promise-list {
  list-style: none;
  margin-left: 0;
  margin-top: 24px;
}

.meeting-options li,
.expectations-list li,
.promise-list li {
  padding: 16px 0;
  border-bottom: 1px solid #E8E8E8;
}

.expectations-list {
  counter-reset: item;
}

.expectations-list li {
  counter-increment: item;
  padding-left: 48px;
  position: relative;
}

.expectations-list li:before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 16px;
  width: 32px;
  height: 32px;
  background: #2C5F4F;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 50%;
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq-list {
  margin-top: 32px;
}

.faq-item {
  background: #F4F1EA;
  padding: 24px;
  margin-bottom: 16px;
}

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

.faq-item p {
  color: #4A4A4A;
}

/* ===================================
   NEWSLETTER SIGNUP
   =================================== */

.newsletter-signup {
  background: #2C5F4F;
  color: #FFFFFF;
  padding: 64px 48px;
  text-align: center;
  margin-top: 48px;
}

.newsletter-signup h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.newsletter-signup p {
  color: #F4F1EA;
  margin-bottom: 32px;
}

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

.email-input {
  flex: 1;
  min-width: 250px;
  padding: 16px;
  border: none;
  font-size: 14px;
}

.newsletter-form .cta-button {
  flex-shrink: 0;
}

.privacy-note {
  font-size: 12px;
  color: #D4D4D4;
  margin-top: 16px;
}

/* ===================================
   LEGAL CONTENT PAGES
   =================================== */

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

.legal-content h2 {
  margin-top: 48px;
  margin-bottom: 24px;
}

.legal-content h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 20px;
}

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

.quick-links {
  background: #F4F1EA;
  padding: 32px;
  margin-top: 48px;
}

.quick-links h2 {
  margin-bottom: 16px;
}

.quick-links ul {
  list-style: none;
  margin-left: 0;
}

.quick-links li {
  margin-bottom: 8px;
}

/* ===================================
   RESULTS & STATS OVERVIEW
   =================================== */

.results-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 48px 0;
  justify-content: center;
}

.result-stat {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 32px;
  background: #F4F1EA;
}

/* ===================================
   HELP LINKS & ACTION CARDS
   =================================== */

.link-grid,
.action-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.help-link,
.action-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 200px;
  background: #F4F1EA;
  color: #2C5F4F;
  padding: 24px;
  text-align: center;
  font-weight: 600;
  transition: all 0.3s ease;
  display: block;
}

.help-link:hover,
.action-card:hover {
  background: #2C5F4F;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* ===================================
   CTA SECTIONS
   =================================== */

.cta-section {
  background: #2C5F4F;
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  margin-top: 60px;
}

.cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

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

.cta-section .cta-button {
  background: #FFFFFF;
  color: #2C5F4F;
}

.cta-section .cta-button:hover {
  background: #D4A574;
  color: #FFFFFF;
}

.cta-section .cta-secondary {
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.cta-section .cta-secondary:hover {
  background: #FFFFFF;
  color: #2C5F4F;
}

.trust-note,
.contact-cta {
  font-size: 14px;
  margin-top: 24px;
}

.action-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ===================================
   FOOTER - MINIMALIST
   =================================== */

footer {
  background-color: #2C5F4F;
  color: #FFFFFF;
  padding: 64px 0 24px;
  margin-top: 60px;
}

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

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

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-col h3 {
  color: #FFFFFF;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.footer-col a {
  color: #D4D4D4;
  display: block;
  padding: 6px 0;
  font-size: 14px;
  transition: all 0.3s ease;
}

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

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

.footer-bottom p {
  color: #D4D4D4;
  font-size: 14px;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-top: 2px solid #E8E8E8;
  padding: 24px;
  z-index: 1000;
  display: none;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

.cookie-banner.active {
  display: block;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    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;
  min-width: 280px;
}

.cookie-text p {
  color: #4A4A4A;
  margin-bottom: 0;
  font-size: 14px;
}

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

.cookie-accept,
.cookie-reject,
.cookie-settings {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.cookie-accept:hover {
  background: #1F4438;
}

.cookie-reject {
  background: transparent;
  color: #2C5F4F;
  border: 2px solid #E8E8E8;
}

.cookie-reject:hover {
  border-color: #2C5F4F;
}

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

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

/* ===================================
   COOKIE PREFERENCES MODAL
   =================================== */

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

.cookie-modal.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.cookie-modal-content {
  background: #FFFFFF;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: #4A4A4A;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.cookie-modal-close:hover {
  color: #2C5F4F;
}

.cookie-modal h2 {
  margin-bottom: 24px;
}

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

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

.cookie-category p {
  font-size: 14px;
  color: #4A4A4A;
  margin-bottom: 0;
}

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

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

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

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

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

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

.cookie-save {
  flex: 1;
  min-width: 150px;
  padding: 16px 32px;
  background: #2C5F4F;
  color: #FFFFFF;
  border: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-save:hover {
  background: #1F4438;
}

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

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 18px;
  }

  /* Header & Navigation */
  .main-nav,
  header .cta-button {
    display: none;
  }

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

  header {
    padding: 16px 0;
  }

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

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

  /* Grid Layouts */
  .service-card,
  .service-detail,
  .blog-card,
  .package-card,
  .benefit,
  .stat,
  .approach-item,
  .testimonial-card,
  .contact-option,
  .info-item,
  .footer-col {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* CTA Groups */
  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    text-align: center;
  }

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

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

  .cookie-buttons {
    width: 100%;
  }

  .cookie-accept,
  .cookie-reject,
  .cookie-settings {
    flex: 1;
    min-width: 100px;
  }

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

  .email-input,
  .newsletter-form .cta-button {
    width: 100%;
  }

  /* Stats Grid */
  .stats-grid,
  .results-overview {
    flex-direction: column;
  }

  .stat-number {
    font-size: 36px;
  }

  /* Error Page */
  .error-code {
    font-size: 80px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .service-card,
  .service-detail,
  .blog-card {
    flex: 1 1 calc(50% - 24px);
  }

  .package-card,
  .benefit,
  .approach-item {
    flex: 1 1 calc(50% - 32px);
  }
}

/* ===================================
   SMOOTH ANIMATIONS & TRANSITIONS
   =================================== */

@media (prefers-reduced-motion: no-preference) {
  * {
    scroll-behavior: smooth;
  }

  .service-card,
  .blog-card,
  .package-card,
  .help-link,
  .action-card {
    transition: all 0.3s ease;
  }
}

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

@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cta-button,
  .cta-group {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

  a {
    text-decoration: underline;
  }
}