/* ==============================================
   CSS RESET & NORMALIZE
   ============================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
}

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

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

ul, ol {
  list-style-position: inside;
}

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

/* ==============================================
   TYPOGRAPHY - GRADIENT MODERN STYLE
   ============================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #1a1a1a;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 32px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h3 {
  font-size: 24px;
  color: #2d3748;
}

h4 {
  font-size: 18px;
  color: #4a5568;
}

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

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

/* ==============================================
   LAYOUT CONTAINERS
   ============================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ==============================================
   HEADER - GRADIENT MODERN DESIGN
   ============================================== */
header {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
}

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

.logo:hover img {
  transform: scale(1.05);
}

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

.main-nav a {
  color: #fff;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #fff;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
}

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

/* ==============================================
   MOBILE MENU - HAMBURGER NAVIGATION
   ============================================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  font-size: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  z-index: 1000;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  min-height: 56px;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(8px);
}

/* ==============================================
   BUTTONS - GRADIENT MODERN STYLE
   ============================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  min-height: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: #fff;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(240, 147, 251, 0.4);
}

.btn:active {
  transform: translateY(0);
}

/* ==============================================
   HERO SECTION - GRADIENT BACKGROUND
   ============================================== */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 20px;
  text-align: center;
  color: #fff;
  border-radius: 0;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

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

.hero h1 {
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
  margin-bottom: 24px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subheadline {
  font-size: 20px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.95);
}

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

.trust-badge {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* ==============================================
   PAGE HERO - INTERNAL PAGES
   ============================================== */
.page-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 60px 20px;
  text-align: center;
  color: #fff;
  border-radius: 0;
  margin-bottom: 40px;
}

.page-hero h1 {
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
}

.breadcrumb {
  margin-bottom: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #fff;
}

.last-updated,
.response-time,
.products-count {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 8px;
}

/* ==============================================
   CARDS & GRIDS - FLEXBOX LAYOUT
   ============================================== */
.benefits-grid,
.products-grid,
.testimonials-grid,
.stats-grid,
.guarantees-grid,
.methods-grid,
.categories-grid,
.articles-grid,
.delivery-options {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.benefit-card,
.product-card,
.testimonial-card,
.stat-card,
.guarantee-item,
.method-card,
.category-card,
.article-card,
.option {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  position: relative;
  margin-bottom: 20px;
}

.benefit-card:hover,
.product-card:hover,
.method-card:hover,
.category-card:hover,
.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.2);
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(245, 87, 108, 0.3);
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #667eea;
  margin: 8px 0;
}

.time-saved {
  font-size: 14px;
  color: #f5576c;
  font-weight: 500;
}

.rating {
  color: #f5a623;
  font-size: 18px;
  margin: 8px 0;
}

/* ==============================================
   TESTIMONIALS - PROPER CONTRAST
   ============================================== */
.testimonial-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 32px;
  border-left: 4px solid #667eea;
}

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

.testimonial-card .author {
  color: #667eea;
  font-weight: 600;
  font-size: 14px;
}

/* ==============================================
   SECTIONS - PROPER SPACING
   ============================================== */
.value-proposition,
.featured-products,
.how-it-works,
.testimonials,
.cta-section,
.mission,
.story,
.stats,
.showroom,
.delivery-info,
.guarantee,
.featured-article,
.blog-categories,
.blog-grid,
.newsletter,
.contact-methods,
.location,
.faq,
.legal-content {
  background: rgba(255, 255, 255, 0.95);
  padding: 60px 20px;
  margin-bottom: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.section-subheadline {
  text-align: center;
  color: #4a5568;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 32px;
}

.value-proposition h2,
.featured-products h2,
.how-it-works h2,
.testimonials h2,
.cta-section h2 {
  text-align: center;
  margin-bottom: 32px;
}

/* ==============================================
   HOW IT WORKS - STEPS
   ============================================== */
.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 40px 0;
}

.step {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.step h3 {
  color: #667eea;
  margin-bottom: 12px;
}

/* ==============================================
   CTA SECTION - CENTERED CONTENT
   ============================================== */
.cta-section {
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}

.cta-section h2,
.cta-section p {
  color: #fff;
}

.cta-section h2 {
  background: none;
  -webkit-text-fill-color: #fff;
}

.guarantee {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin-top: 16px;
}

/* ==============================================
   STATS SECTION
   ============================================== */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-around;
}

.stat-card {
  text-align: center;
  flex: 1 1 200px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 32px 24px;
}

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

.stat-card p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
}

/* ==============================================
   MISSION & STORY
   ============================================== */
.mission-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}

.text-section {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
}

.values ul {
  margin-top: 16px;
}

.values li {
  padding: 12px 0;
  color: #4a5568;
  border-bottom: 1px solid #e2e8f0;
}

/* ==============================================
   BLOG SECTIONS
   ============================================== */
.article-featured {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 40px;
  border-radius: 16px;
  margin-bottom: 40px;
  position: relative;
}

.article-featured h2,
.article-featured p {
  color: #fff;
}

.article-featured h2 {
  background: none;
  -webkit-text-fill-color: #fff;
}

.meta {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 16px 0;
}

.article-card .meta {
  color: #718096;
}

.newsletter {
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.bonus,
.subscribers {
  font-size: 14px;
  color: #667eea;
  font-weight: 600;
  margin-top: 8px;
}

/* ==============================================
   CONTACT PAGE
   ============================================== */
.location-info {
  background: #f8f9fa;
  padding: 32px;
  border-radius: 12px;
  margin-top: 24px;
}

.location-info p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.faq-item {
  background: #f8f9fa;
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid #667eea;
}

.faq-item h3 {
  color: #667eea;
  margin-bottom: 12px;
}

/* ==============================================
   LEGAL PAGES
   ============================================== */
.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.content-wrapper h2 {
  margin-top: 40px;
  margin-bottom: 16px;
}

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

.content-wrapper ul,
.content-wrapper ol {
  margin: 16px 0;
  padding-left: 24px;
}

.content-wrapper li {
  margin-bottom: 8px;
  color: #4a5568;
}

/* ==============================================
   THANK YOU PAGE
   ============================================== */
.thank-you-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 48px;
  color: #fff;
}

.thank-you-hero h1,
.thank-you-hero p {
  color: #fff;
}

.confirmation {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.next-steps {
  text-align: center;
  padding: 60px 20px;
}

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

.meanwhile,
.popular-products,
.special-offer {
  padding: 60px 20px;
  text-align: center;
}

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

.action-card {
  flex: 1 1 400px;
  max-width: 500px;
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.coupon {
  font-size: 24px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 16px 32px;
  border-radius: 12px;
  display: inline-block;
  margin: 16px 0;
}

.validity {
  font-size: 14px;
  color: #718096;
}

/* ==============================================
   FOOTER - GRADIENT STYLE
   ============================================== */
footer {
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  color: #fff;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

.footer-section {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-section h4 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-nav a:hover {
  color: #fff;
  padding-left: 4px;
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* ==============================================
   COOKIE CONSENT BANNER
   ============================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  color: #fff;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  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 300px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  min-height: 40px;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}

.cookie-btn-reject {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.cookie-btn-settings {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

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

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: #e2e8f0;
  border-radius: 8px;
  font-size: 20px;
  color: #2d3748;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #cbd5e0;
  transform: rotate(90deg);
}

.cookie-category {
  margin: 24px 0;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 12px;
}

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

.cookie-category h3 {
  font-size: 16px;
  color: #2d3748;
}

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

.cookie-toggle.active {
  background: #667eea;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: #fff;
  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: 24px;
  flex-wrap: wrap;
}

/* ==============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================== */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Header adjustments */
  header {
    padding: 12px 0;
  }
  
  .logo img {
    height: 32px;
  }
  
  /* Hero section */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Cards and grids */
  .benefits-grid,
  .products-grid,
  .testimonials-grid,
  .stats-grid,
  .guarantees-grid,
  .methods-grid,
  .categories-grid,
  .articles-grid,
  .delivery-options {
    flex-direction: column;
  }
  
  .benefit-card,
  .product-card,
  .testimonial-card,
  .stat-card,
  .guarantee-item,
  .method-card,
  .category-card,
  .article-card,
  .option {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Steps */
  .steps {
    flex-direction: column;
  }
  
  .step {
    min-width: 100%;
  }
  
  /* Mission content */
  .mission-content {
    flex-direction: column;
  }
  
  .text-section {
    min-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    min-width: 100%;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* CTA buttons */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Actions grid */
  .actions-grid {
    flex-direction: column;
  }
  
  .action-card {
    max-width: 100%;
  }
  
  /* Section padding */
  .section,
  .value-proposition,
  .featured-products,
  .how-it-works,
  .testimonials,
  .cta-section,
  .mission,
  .story,
  .stats,
  .showroom,
  .delivery-info,
  .guarantee,
  .featured-article,
  .blog-categories,
  .blog-grid,
  .newsletter,
  .contact-methods,
  .location,
  .faq,
  .legal-content {
    padding: 40px 16px;
  }
}

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

@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

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

/* Apply animations to sections */
.section,
.value-proposition,
.featured-products,
.how-it-works,
.testimonials {
  animation: fadeIn 0.6s ease-out;
}

/* ==============================================
   ACCESSIBILITY & FOCUS STATES
   ============================================== */
a:focus,
button:focus,
.btn:focus {
  outline: 2px solid #667eea;
  outline-offset: 2px;
}

/* ==============================================
   PRINT STYLES
   ============================================== */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    background: #fff;
  }
  
  .section {
    box-shadow: none;
    page-break-inside: avoid;
  }
}