/* ============================================
   FLASHYENGINE - MINIMALIST CSS STYLES
   Design Style: Clean, minimal with lots of white space
   ============================================ */

/* ============================================
   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.6;
  color: #2C3E50;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

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;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #1A237E;
}

h1 {
  font-size: 48px;
  margin-bottom: 32px;
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

p {
  margin-bottom: 16px;
  color: #2C3E50;
}

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

section {
  margin-bottom: 80px;
  padding: 60px 0;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header {
  background-color: #FFFFFF;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

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

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

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

.main-nav a:hover {
  color: #1A237E;
}

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

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

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1100;
  background-color: #1A237E;
  color: #FFFFFF;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(26, 35, 126, 0.2);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #0D47A1;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 1000;
  transition: right 0.4s ease;
  box-shadow: -4px 0 24px rgba(0,0,0,0.1);
  padding: 80px 32px 32px;
}

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

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

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

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

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

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

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

.btn-primary {
  background-color: #1A237E;
  color: #FFFFFF;
  border-color: #1A237E;
}

.btn-primary:hover {
  background-color: #0D47A1;
  border-color: #0D47A1;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(26, 35, 126, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: #1A237E;
  border-color: #1A237E;
}

.btn-secondary:hover {
  background-color: #1A237E;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(26, 35, 126, 0.15);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
  padding: 100px 0;
  margin-bottom: 80px;
}

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

.hero h1 {
  font-size: 56px;
  color: #1A237E;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 20px;
  color: #546E7A;
  margin-bottom: 40px;
}

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

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

.trust-indicators span {
  color: #546E7A;
  font-size: 14px;
}

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

.breadcrumbs {
  font-size: 14px;
  margin-bottom: 24px;
  color: #546E7A;
}

.breadcrumbs a {
  color: #1A237E;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: #0288D1;
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #546E7A;
  max-width: 700px;
  margin: 0 auto;
}

.hero-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
}

.hero-badges span {
  color: #546E7A;
  font-size: 14px;
}

/* ============================================
   CARDS & GRIDS - FLEXBOX ONLY
   ============================================ */
.benefits-grid,
.services-grid,
.features-grid,
.products-grid,
.categories-grid,
.warranty-grid,
.reasons-grid,
.methods-grid,
.locations-grid,
.packages-grid,
.types-grid,
.values-grid,
.stats-grid,
.suggestions-grid,
.links-grid,
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.benefit-card,
.service-card,
.feature-card,
.product-card,
.category-card,
.warranty-item,
.reason-item,
.method-card,
.location-card,
.package-card,
.type-card,
.value-card,
.stat-card,
.suggestion-card,
.link-card,
.testimonial-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  flex: 1 1 300px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-card:hover,
.service-card:hover,
.feature-card:hover,
.product-card:hover,
.category-card:hover,
.package-card:hover,
.type-card:hover,
.suggestion-card:hover,
.link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.benefit-card h3,
.service-card h3,
.feature-card h3,
.product-card h3,
.category-card h3,
.warranty-item h3,
.reason-item h3,
.method-card h3,
.location-card h3,
.package-card h3,
.type-card h3,
.value-card h3,
.suggestion-card h3,
.link-card h3 {
  color: #1A237E;
  font-size: 20px;
  margin-bottom: 12px;
}

.benefit-card p,
.service-card p,
.feature-card p,
.product-card p,
.category-card p,
.warranty-item p,
.reason-item p,
.method-card p,
.location-card p,
.package-card p,
.type-card p,
.value-card p,
.suggestion-card p,
.link-card p {
  color: #546E7A;
  margin-bottom: 12px;
}

.product-card ul,
.service-card ul {
  margin: 16px 0;
  padding-left: 0;
}

.product-card li,
.service-card li {
  color: #546E7A;
  margin-bottom: 8px;
  padding-left: 24px;
  position: relative;
}

.product-card li::before,
.service-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFC107;
  font-weight: bold;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #1A237E;
  margin: 16px 0;
  font-family: 'Montserrat', sans-serif;
}

.price-old {
  font-size: 18px;
  color: #B0BEC5;
  text-decoration: line-through;
  margin-bottom: 8px;
}

.savings {
  color: #4CAF50;
  font-weight: 600;
  margin-bottom: 16px;
}

.package-card.popular {
  border: 3px solid #FFC107;
  position: relative;
}

.badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFC107;
  color: #1A237E;
  padding: 8px 24px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background-color: #F8F9FA;
  padding: 80px 0;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonial-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

.author {
  font-weight: 600;
  color: #1A237E;
  font-style: normal;
  margin-bottom: 8px;
}

.rating {
  color: #FFC107;
  font-size: 20px;
}

.reviews-total,
.rating-summary {
  text-align: center;
  color: #546E7A;
  margin-top: 32px;
  font-size: 16px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, #1A237E 0%, #0D47A1 100%);
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  margin-bottom: 0;
}

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

.cta-section h2 {
  color: #FFFFFF;
  font-size: 40px;
  margin-bottom: 24px;
}

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

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

.cta-section .btn-primary {
  background-color: #FFC107;
  color: #1A237E;
  border-color: #FFC107;
}

.cta-section .btn-primary:hover {
  background-color: #FFD54F;
  border-color: #FFD54F;
}

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

.cta-section .btn-secondary:hover {
  background-color: #FFFFFF;
  color: #1A237E;
}

.urgency,
.trust-signals {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.urgency {
  color: #FFC107;
  font-weight: 600;
  font-size: 18px;
}

.trust-signals span {
  color: #E3F2FD;
  font-size: 14px;
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}

/* ============================================
   STEPS & TIMELINE
   ============================================ */
.steps-grid,
.steps-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.step-item {
  flex: 1 1 250px;
  text-align: center;
  padding: 24px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step-number,
.step-icon {
  width: 60px;
  height: 60px;
  background-color: #1A237E;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.step-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.step-item p {
  color: #546E7A;
  font-size: 14px;
}

.duration {
  font-size: 12px;
  color: #B0BEC5;
  font-style: italic;
}

.total-duration {
  text-align: center;
  font-weight: 600;
  color: #1A237E;
  margin-top: 24px;
  font-size: 18px;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.faq-item p {
  color: #546E7A;
}

/* ============================================
   LEGAL CONTENT
   ============================================ */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px;
}

.legal-content h2 {
  margin-top: 48px;
  margin-bottom: 24px;
  padding-top: 32px;
  border-top: 2px solid #F5F5F5;
}

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

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

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

.legal-content li {
  margin-bottom: 12px;
  color: #546E7A;
}

.legal-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-content a {
  color: #0288D1;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #1A237E;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-box {
  background-color: #F8F9FA;
  padding: 32px;
  border-radius: 12px;
  margin-bottom: 40px;
}

.contact-box a {
  color: #0288D1;
  font-weight: 600;
}

.field-list {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  margin-top: 24px;
}

.field-list ul {
  margin: 16px 0;
  padding-left: 24px;
}

.field-list li {
  margin-bottom: 12px;
  color: #546E7A;
}

.parking-info,
.payment-info,
.response-time {
  text-align: center;
  color: #546E7A;
  margin-top: 32px;
  font-style: italic;
}

.map-info {
  background-color: #F8F9FA;
  padding: 32px;
  border-radius: 12px;
}

.map-info p {
  margin-bottom: 12px;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thank-you-hero {
  text-align: center;
  padding: 100px 0;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  background-color: #4CAF50;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  margin: 0 auto 32px;
}

.thank-you-hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.subtitle {
  font-size: 20px;
  color: #546E7A;
  margin-bottom: 16px;
}

.reassurance-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.reassurance-content p {
  font-size: 18px;
  margin-bottom: 16px;
}

.guarantee {
  font-weight: 700;
  color: #1A237E;
  font-size: 20px;
  margin-top: 32px;
}

/* ============================================
   PRICING TABLE
   ============================================ */
.pricing-table {
  max-width: 800px;
  margin: 0 auto;
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid #F5F5F5;
  gap: 24px;
}

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

.price-row span:first-child {
  color: #2C3E50;
  font-size: 16px;
}

.price-row span:last-child {
  color: #1A237E;
  font-weight: 700;
  font-size: 20px;
  white-space: nowrap;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
  background-color: #F8F9FA;
  padding: 80px 0;
}

.stat-card {
  text-align: center;
  padding: 32px;
}

.stat-number {
  font-size: 56px;
  font-weight: 700;
  color: #1A237E;
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
}

.stat-card p {
  color: #546E7A;
  font-size: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background-color: #1A237E;
  color: #E3F2FD;
  padding: 60px 0 32px;
  margin-top: 0;
}

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

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

.footer-section h3 {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 24px;
}

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

.footer-section a:hover {
  color: #FFC107;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(227, 242, 253, 0.2);
  background-color: #f1f5f7;
  font-size: 14px;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
  padding: 24px;
  z-index: 950;
  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: #2C3E50;
  font-size: 14px;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.accept-all {
  background-color: #1A237E;
  color: #FFFFFF;
}

.accept-all:hover {
  background-color: #0D47A1;
}

.reject-all {
  background-color: #F5F5F5;
  color: #2C3E50;
}

.reject-all:hover {
  background-color: #E0E0E0;
}

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

.cookie-settings-btn:hover {
  background-color: #0288D1;
  color: #FFFFFF;
}

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

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

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

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #2C3E50;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.cookie-category:last-child {
  border-bottom: none;
}

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

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

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

.cookie-toggle.active {
  background-color: #1A237E;
}

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

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

.cookie-category p {
  color: #546E7A;
  font-size: 14px;
}

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

.cookie-modal-buttons button {
  flex: 1;
  padding: 16px 24px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.save-preferences {
  background-color: #1A237E;
  color: #FFFFFF;
}

.save-preferences:hover {
  background-color: #0D47A1;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */
@media (max-width: 768px) {
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .page-hero h1 {
    font-size: 32px;
  }
  
  /* Section spacing */
  section {
    margin-bottom: 60px;
    padding: 40px 0;
  }
  
  .hero,
  .page-hero {
    padding: 60px 0;
  }
  
  /* Button adjustments */
  .btn {
    width: 100%;
    padding: 14px 24px;
  }
  
  .hero-cta,
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  /* Cards - single column */
  .benefits-grid,
  .services-grid,
  .features-grid,
  .products-grid,
  .categories-grid,
  .warranty-grid,
  .methods-grid,
  .locations-grid,
  .packages-grid,
  .types-grid,
  .values-grid,
  .stats-grid,
  .suggestions-grid,
  .links-grid {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .feature-card,
  .product-card,
  .category-card,
  .warranty-item,
  .method-card,
  .location-card,
  .package-card,
  .type-card,
  .value-card,
  .stat-card,
  .suggestion-card,
  .link-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Steps timeline */
  .steps-grid,
  .steps-timeline {
    flex-direction: column;
  }
  
  .step-item {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-text {
    flex: 1 1 100%;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Trust indicators */
  .trust-indicators,
  .trust-signals {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Price row */
  .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  /* Modal adjustments */
  .cookie-modal-content {
    padding: 32px 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons button {
    flex: 1 1 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .benefits-grid,
  .services-grid,
  .features-grid,
  .products-grid {
    gap: 24px;
  }
  
  .benefit-card,
  .service-card,
  .feature-card,
  .product-card {
    flex: 1 1 calc(50% - 12px);
  }
}

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

.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.mt-0 { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

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

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

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .btn,
  .cta-section {
    display: none;
  }
  
  body {
    font-size: 12pt;
    color: #000;
  }
  
  a {
    text-decoration: underline;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

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

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

/* ============================================
   END OF STYLESHEET
   ============================================ */