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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: #2a2a2a;
  background: linear-gradient(135deg, #fef9e7 0%, #fdebd0 50%, #fce4ec 100%);
  overflow-x: hidden;
}

/* ===== CREATIVE ARTISTIC TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-weight: 800;
  line-height: 1.3;
  color: #1e4563;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 3px 3px 6px rgba(30, 69, 99, 0.15);
}

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

h2 {
  font-size: 36px;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, #c99308 0%, #1e4563 100%);
  border-radius: 10px;
}

h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #1e4563;
}

h4 {
  font-size: 20px;
  margin-bottom: 16px;
}

p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #444;
}

a {
  color: #1e4563;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #c99308;
  transform: translateY(-2px);
}

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

li {
  margin-bottom: 12px;
  line-height: 1.6;
}

strong {
  color: #1e4563;
  font-weight: 700;
}

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

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

/* ===== HEADER & NAVIGATION ===== */
header {
  background: linear-gradient(135deg, #1e4563 0%, #2a5a7a 100%);
  padding: 20px 0;
  box-shadow: 0 8px 24px rgba(30, 69, 99, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 4px solid #c99308;
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.1) rotate(-3deg);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0;
  flex-wrap: wrap;
  align-items: center;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  color: #ffffff;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.nav-menu a:hover {
  background: rgba(201, 147, 8, 0.2);
  color: #c99308;
  transform: translateY(-2px);
}

.cta-button {
  background: linear-gradient(135deg, #c99308 0%, #e5a00d 100%);
  color: #1e4563;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(201, 147, 8, 0.4);
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.cta-button:hover {
  background: linear-gradient(135deg, #e5a00d 0%, #c99308 100%);
  box-shadow: 0 8px 30px rgba(201, 147, 8, 0.6);
  transform: translateY(-3px) scale(1.05);
  border-color: #ffffff;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #c99308 0%, #e5a00d 100%);
  color: #1e4563;
  border: none;
  padding: 14px 18px;
  font-size: 28px;
  cursor: pointer;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(201, 147, 8, 0.5);
  transition: all 0.3s ease;
  font-weight: bold;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 8px 30px rgba(201, 147, 8, 0.7);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #1e4563 0%, #2a5a7a 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #c99308;
  color: #ffffff;
  border: none;
  padding: 12px 16px;
  font-size: 28px;
  cursor: pointer;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  font-weight: bold;
}

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

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

.mobile-nav a {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
}

.mobile-nav a:hover {
  background: rgba(201, 147, 8, 0.3);
  transform: translateX(10px);
  border-color: #c99308;
  color: #c99308;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .nav-menu {
    display: none;
  }
  
  .main-nav .cta-button {
    display: none;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, #fef9e7 0%, #fff4e0 50%, #fce4ec 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 50% 50% / 0 0 30px 30px;
  box-shadow: 0 10px 40px rgba(30, 69, 99, 0.2);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(201, 147, 8, 0.1) 0%, transparent 70%);
  animation: heroRotate 20s linear infinite;
}

@keyframes heroRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 4px 4px 8px rgba(30, 69, 99, 0.2);
}

.hero-subtitle {
  font-size: 22px;
  color: #1e4563;
  margin-bottom: 40px;
  font-weight: 600;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.trust-indicators span {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #1e4563;
  background: rgba(255, 255, 255, 0.7);
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(30, 69, 99, 0.15);
  transition: all 0.3s ease;
}

.trust-indicators span:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(30, 69, 99, 0.25);
}

.trust-indicators img {
  width: 28px;
  height: 28px;
}

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

/* ===== BUTTONS ===== */
.btn-primary,
.btn-secondary {
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  cursor: pointer;
  display: inline-block;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background: linear-gradient(135deg, #c99308 0%, #e5a00d 100%);
  color: #1e4563;
  border-color: #1e4563;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #e5a00d 0%, #c99308 100%);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 30px rgba(201, 147, 8, 0.4);
  border-color: #c99308;
}

.btn-secondary {
  background: #ffffff;
  color: #1e4563;
  border-color: #1e4563;
}

.btn-secondary:hover {
  background: #1e4563;
  color: #ffffff;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 30px rgba(30, 69, 99, 0.3);
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, #fef9e7 0%, #fff4e0 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-radius: 0 0 50px 50px;
  box-shadow: 0 10px 40px rgba(30, 69, 99, 0.2);
}

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

.page-hero p {
  font-size: 20px;
  color: #1e4563;
  font-weight: 600;
}

.hero-highlight {
  font-size: 28px;
  color: #c99308;
  font-weight: 700;
  margin-top: 20px;
}

.highlight-stat {
  font-size: 32px;
  color: #c99308;
  font-weight: 800;
  margin-top: 30px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.stats-row span {
  font-size: 18px;
  font-weight: 600;
  color: #1e4563;
  background: rgba(255, 255, 255, 0.7);
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(30, 69, 99, 0.15);
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-features span {
  font-size: 16px;
  font-weight: 600;
  color: #1e4563;
}

/* ===== SECTIONS ===== */
.benefits,
.featured-products,
.how-it-works,
.testimonials,
.cta-final {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.benefits {
  background: linear-gradient(135deg, #ffffff 0%, #fef9e7 100%);
  border-radius: 30px;
  box-shadow: 0 8px 30px rgba(30, 69, 99, 0.1);
}

.benefits h2 {
  text-align: center;
  margin-bottom: 50px;
}

/* ===== BENEFITS GRID ===== */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.benefit-card {
  flex: 1 1 280px;
  max-width: 350px;
  background: linear-gradient(135deg, #ffffff 0%, #fef9e7 100%);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(30, 69, 99, 0.15);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  position: relative;
  margin-bottom: 20px;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #c99308, #1e4563, #c99308);
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 15px 40px rgba(30, 69, 99, 0.3);
}

.benefit-card img {
  width: 70px;
  height: 70px;
  margin-bottom: 24px;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.benefit-card h3 {
  color: #1e4563;
  margin-bottom: 16px;
  font-size: 22px;
}

.benefit-card p {
  color: #555;
  line-height: 1.7;
  font-size: 15px;
}

/* ===== PRODUCTS GRID ===== */
.featured-products {
  background: linear-gradient(135deg, #fce4ec 0%, #fef9e7 100%);
  border-radius: 30px;
  padding: 60px 20px;
}

.featured-products h2 {
  text-align: center;
  margin-bottom: 50px;
}

.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.product-card {
  flex: 1 1 320px;
  max-width: 380px;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(30, 69, 99, 0.15);
  transition: all 0.3s ease;
  border: 3px solid #1e4563;
  position: relative;
  margin-bottom: 20px;
  text-align: center;
}

.product-card.featured {
  border-color: #c99308;
  background: linear-gradient(135deg, #fff4e0 0%, #ffffff 100%);
  transform: scale(1.05);
}

.product-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 40px rgba(30, 69, 99, 0.3);
}

.product-card .badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: linear-gradient(135deg, #c99308 0%, #e5a00d 100%);
  color: #1e4563;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(201, 147, 8, 0.4);
}

.product-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #1e4563;
}

.price {
  font-size: 36px;
  font-weight: 800;
  color: #c99308;
  margin-bottom: 24px;
}

.product-card ul {
  list-style: none;
  margin: 24px 0;
  text-align: left;
}

.product-card li {
  padding: 10px 0;
  color: #444;
  border-bottom: 1px dashed #ddd;
  font-size: 15px;
}

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

/* ===== STEPS / HOW IT WORKS ===== */
.how-it-works {
  background: linear-gradient(135deg, #ffffff 0%, #fef9e7 100%);
  border-radius: 30px;
  padding: 60px 20px;
}

.how-it-works h2 {
  text-align: center;
  margin-bottom: 50px;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
}

.step {
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
  padding: 30px 20px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(30, 69, 99, 0.1);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(30, 69, 99, 0.2);
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #c99308 0%, #e5a00d 100%);
  color: #1e4563;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 800;
  line-height: 60px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(201, 147, 8, 0.3);
}

.step h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #1e4563;
}

.step p {
  color: #555;
  font-size: 15px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: linear-gradient(135deg, #fce4ec 0%, #fff4e0 100%);
  border-radius: 30px;
  padding: 60px 20px;
}

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

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

.testimonial-card {
  flex: 1 1 450px;
  max-width: 550px;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(30, 69, 99, 0.15);
  border-left: 6px solid #c99308;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 80px;
  color: rgba(201, 147, 8, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(30, 69, 99, 0.25);
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: #2a2a2a;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.testimonial-author strong {
  color: #1e4563;
  font-size: 18px;
}

.testimonial-author span {
  color: #666;
  font-size: 14px;
}

/* ===== CTA FINAL ===== */
.cta-final {
  background: linear-gradient(135deg, #1e4563 0%, #2a5a7a 100%);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(30, 69, 99, 0.3);
}

.cta-final h2 {
  color: #ffffff;
  font-size: 42px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.cta-final h2::after {
  background: linear-gradient(90deg, #c99308 0%, #ffffff 100%);
  left: 50%;
  transform: translateX(-50%);
}

.cta-final p {
  font-size: 20px;
  margin-bottom: 40px;
  color: #fef9e7;
}

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

.guarantee {
  font-size: 18px;
  font-weight: 600;
  color: #c99308;
}

/* ===== COMPARISON TABLE ===== */
.product-comparison {
  padding: 60px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #fef9e7 100%);
  border-radius: 30px;
  margin-bottom: 40px;
}

.comparison-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.comparison-column {
  flex: 1 1 280px;
  max-width: 350px;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(30, 69, 99, 0.15);
  border: 3px solid #1e4563;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.comparison-column.featured {
  border-color: #c99308;
  background: linear-gradient(135deg, #fff4e0 0%, #ffffff 100%);
  transform: scale(1.05);
}

.comparison-column:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 40px rgba(30, 69, 99, 0.3);
}

.comparison-column h3 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #1e4563;
}

.comparison-price {
  font-size: 36px;
  font-weight: 800;
  color: #c99308;
  margin-bottom: 30px;
}

.comparison-column ul {
  list-style: none;
  margin: 24px 0;
  text-align: left;
}

.comparison-column li {
  padding: 12px 0;
  color: #444;
  border-bottom: 1px dashed #ddd;
  font-size: 15px;
}

/* ===== SERVICES ===== */
.services-list {
  padding: 40px 20px;
}

.service-item {
  background: linear-gradient(135deg, #ffffff 0%, #fef9e7 100%);
  padding: 40px 30px;
  margin-bottom: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(30, 69, 99, 0.15);
  border-left: 6px solid #c99308;
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 35px rgba(30, 69, 99, 0.25);
}

.service-item h2 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #1e4563;
}

.service-price {
  font-size: 32px;
  font-weight: 800;
  color: #c99308;
  margin-bottom: 20px;
}

.service-item h3 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 16px;
}

.service-item ul {
  margin-left: 20px;
}

/* ===== SERVICE PACKAGES ===== */
.service-packages {
  padding: 60px 20px;
  background: linear-gradient(135deg, #fce4ec 0%, #fef9e7 100%);
  border-radius: 30px;
  margin-bottom: 40px;
}

.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.package-card {
  flex: 1 1 280px;
  max-width: 350px;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(30, 69, 99, 0.15);
  text-align: center;
  border: 3px solid #1e4563;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.package-card.featured {
  border-color: #c99308;
  background: linear-gradient(135deg, #fff4e0 0%, #ffffff 100%);
  transform: scale(1.05);
}

.package-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 40px rgba(30, 69, 99, 0.3);
}

.package-card h3 {
  font-size: 26px;
  margin-bottom: 20px;
}

.package-price {
  font-size: 24px;
  font-weight: 700;
  color: #c99308;
  margin: 20px 0;
}

/* ===== PROCESS STEPS ===== */
.service-process {
  padding: 60px 20px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: flex-start;
}

.process-step {
  flex: 1 1 220px;
  max-width: 260px;
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #fef9e7 100%);
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(30, 69, 99, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(30, 69, 99, 0.2);
}

.step-num {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #c99308 0%, #e5a00d 100%);
  color: #1e4563;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 800;
  line-height: 50px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(201, 147, 8, 0.3);
}

/* ===== GUARANTEE SECTION ===== */
.service-guarantee {
  padding: 60px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #fef9e7 100%);
  border-radius: 30px;
  margin-bottom: 40px;
}

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

.guarantee-item {
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
  padding: 30px 20px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(30, 69, 99, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.guarantee-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(30, 69, 99, 0.2);
}

.guarantee-item h3 {
  font-size: 20px;
  color: #1e4563;
  margin-bottom: 12px;
}

/* ===== SAVINGS CALCULATOR ===== */
.savings-calculator {
  padding: 60px 20px;
  background: linear-gradient(135deg, #fef9e7 0%, #fff4e0 100%);
  border-radius: 30px;
  margin-bottom: 40px;
}

.calculator-box {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(30, 69, 99, 0.15);
  max-width: 800px;
  margin: 0 auto;
}

.calculator-inputs {
  margin-bottom: 40px;
}

.calculator-inputs label {
  display: block;
  font-weight: 700;
  color: #1e4563;
  margin-bottom: 8px;
  margin-top: 20px;
  font-size: 16px;
}

.input-placeholder {
  background: #f5f5f5;
  padding: 14px 20px;
  border-radius: 12px;
  border: 2px solid #ddd;
  color: #666;
  font-style: italic;
}

.calculator-results {
  background: linear-gradient(135deg, #fff4e0 0%, #fef9e7 100%);
  padding: 30px;
  border-radius: 20px;
  border: 3px solid #c99308;
  margin-bottom: 30px;
}

.calculator-results h3 {
  font-size: 24px;
  color: #1e4563;
  margin-bottom: 20px;
  text-align: center;
}

.calculator-results p {
  font-size: 18px;
  margin-bottom: 12px;
}

.calculator-results strong {
  color: #c99308;
  font-size: 20px;
}

/* ===== SAVINGS PRINCIPLES ===== */
.how-savings-work {
  padding: 60px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #fef9e7 100%);
  border-radius: 30px;
  margin-bottom: 40px;
}

.savings-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.principle-item {
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
  padding: 30px 20px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(30, 69, 99, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.principle-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(30, 69, 99, 0.2);
}

.principle-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

/* ===== CASE STUDIES ===== */
.case-studies {
  padding: 60px 20px;
  background: linear-gradient(135deg, #fce4ec 0%, #fef9e7 100%);
  border-radius: 30px;
  margin-bottom: 40px;
}

.case-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.case-card {
  flex: 1 1 400px;
  max-width: 500px;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(30, 69, 99, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.case-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(30, 69, 99, 0.25);
}

.case-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #1e4563;
}

.case-author {
  font-style: italic;
  color: #666;
  margin-top: 20px;
}

/* ===== SAVINGS BY TYPE ===== */
.savings-by-type {
  padding: 60px 20px;
}

.savings-types {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.type-card {
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #fef9e7 100%);
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(30, 69, 99, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  border: 3px solid #1e4563;
}

.type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(30, 69, 99, 0.2);
  border-color: #c99308;
}

.type-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.savings-amount {
  font-size: 32px;
  font-weight: 800;
  color: #c99308;
  margin-bottom: 16px;
}

/* ===== ROI SECTION ===== */
.roi-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #fef9e7 0%, #fff4e0 100%);
  border-radius: 30px;
  margin-bottom: 40px;
}

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

.roi-card {
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  padding: 40px 30px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(30, 69, 99, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  border: 3px solid #1e4563;
}

.roi-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(30, 69, 99, 0.25);
}

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

/* ===== ENVIRONMENTAL IMPACT ===== */
.environmental-impact {
  padding: 60px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #fef9e7 100%);
  border-radius: 30px;
  margin-bottom: 40px;
}

.impact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.impact-item {
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
  padding: 30px 20px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(30, 69, 99, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.impact-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 35px rgba(30, 69, 99, 0.2);
}

.impact-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

/* ===== ENERGY TIPS ===== */
.energy-tips {
  padding: 60px 20px;
  background: linear-gradient(135deg, #fce4ec 0%, #fef9e7 100%);
  border-radius: 30px;
  margin-bottom: 40px;
}

.tips-list {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(30, 69, 99, 0.15);
  max-width: 800px;
  margin: 0 auto;
}

.tips-list li {
  padding: 16px 0;
  border-bottom: 2px dashed #ddd;
  font-size: 16px;
}

.tips-list li:last-child {
  border-bottom: none;
}

/* ===== COMPANY SECTIONS ===== */
.company-story {
  padding: 60px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #fef9e7 100%);
  border-radius: 30px;
  margin-bottom: 40px;
}

.why-choose {
  padding: 60px 20px;
  background: linear-gradient(135deg, #fce4ec 0%, #fef9e7 100%);
  border-radius: 30px;
  margin-bottom: 40px;
}

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

.reason-card {
  flex: 1 1 280px;
  max-width: 350px;
  background: #ffffff;
  padding: 30px 24px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(30, 69, 99, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  text-align: center;
}

.reason-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(30, 69, 99, 0.2);
}

.reason-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

/* ===== TEAM SECTION ===== */
.team-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #fef9e7 100%);
  border-radius: 30px;
  margin-bottom: 40px;
}

.team-departments {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.department {
  flex: 1 1 240px;
  max-width: 280px;
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(30, 69, 99, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.department:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(30, 69, 99, 0.2);
}

/* ===== CERTIFICATIONS ===== */
.certifications {
  padding: 60px 20px;
  background: linear-gradient(135deg, #fce4ec 0%, #fef9e7 100%);
  border-radius: 30px;
  margin-bottom: 40px;
}

.cert-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.cert-item {
  flex: 1 1 200px;
  max-width: 240px;
  text-align: center;
  padding: 30px 20px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(30, 69, 99, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.cert-item:hover {
  transform: translateY(-10px) rotate(3deg);
  box-shadow: 0 12px 35px rgba(30, 69, 99, 0.2);
}

.cert-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
}

/* ===== SUSTAINABILITY ===== */
.sustainability {
  padding: 60px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #fef9e7 100%);
  border-radius: 30px;
  margin-bottom: 40px;
}

.sustainability-list {
  list-style: none;
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(30, 69, 99, 0.1);
  max-width: 700px;
  margin: 20px auto 0;
}

.sustainability-list li {
  padding: 16px 0 16px 40px;
  position: relative;
  border-bottom: 2px dashed #ddd;
}

.sustainability-list li:last-child {
  border-bottom: none;
}

.sustainability-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #c99308;
  font-size: 24px;
  font-weight: bold;
}

/* ===== COMPANY STATS ===== */
.company-stats {
  padding: 60px 20px;
  background: linear-gradient(135deg, #fce4ec 0%, #fef9e7 100%);
  border-radius: 30px;
  margin-bottom: 40px;
}

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

.stat-card {
  flex: 1 1 200px;
  max-width: 240px;
  text-align: center;
  padding: 30px 20px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(30, 69, 99, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  border: 3px solid #1e4563;
}

.stat-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 35px rgba(30, 69, 99, 0.2);
  border-color: #c99308;
}

.stat-card h3 {
  font-size: 42px;
  color: #c99308;
  margin-bottom: 12px;
  font-weight: 800;
}

/* ===== CONTACT PAGE ===== */
.contact-options {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.contact-method {
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  padding: 40px 30px;
  background: linear-gradient(135deg, #ffffff 0%, #fef9e7 100%);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(30, 69, 99, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.contact-method:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(30, 69, 99, 0.25);
}

.contact-method img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.contact-method h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.contact-method a {
  color: #1e4563;
  font-weight: 600;
}

/* ===== CONTACT FORM ===== */
.contact-form-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #fef9e7 0%, #fff4e0 100%);
  border-radius: 30px;
  margin-bottom: 40px;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
}

.form-note {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(30, 69, 99, 0.15);
  border-left: 6px solid #c99308;
}

.form-fields-list {
  list-style: none;
  margin: 24px 0;
}

.form-fields-list li {
  padding: 12px 0 12px 30px;
  position: relative;
  border-bottom: 1px dashed #ddd;
}

.form-fields-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #c99308;
  font-weight: bold;
}

.form-info {
  margin-top: 24px;
  padding: 16px;
  background: #fff4e0;
  border-radius: 12px;
  font-style: italic;
  color: #666;
}

/* ===== ADDRESS SECTION ===== */
.address-section {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.address-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
}

.address-info {
  flex: 1 1 400px;
  max-width: 600px;
  background: linear-gradient(135deg, #ffffff 0%, #fef9e7 100%);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(30, 69, 99, 0.15);
}

.address-info h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #1e4563;
}

.address-info h4 {
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #1e4563;
}

/* ===== FAQ CONTACT ===== */
.faq-contact {
  padding: 60px 20px;
  background: linear-gradient(135deg, #fce4ec 0%, #fef9e7 100%);
  border-radius: 30px;
  margin-bottom: 40px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  padding: 30px;
  margin-bottom: 24px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(30, 69, 99, 0.1);
  transition: all 0.3s ease;
  border-left: 5px solid #c99308;
}

.faq-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(30, 69, 99, 0.2);
}

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

/* ===== BUSINESS CONTACT ===== */
.business-contact {
  padding: 60px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #fef9e7 100%);
  border-radius: 30px;
  margin-bottom: 40px;
  text-align: center;
}

.b2b-benefits {
  background: #fff4e0;
  padding: 30px;
  border-radius: 20px;
  margin: 30px auto;
  max-width: 600px;
}

.b2b-benefits ul {
  list-style: none;
  text-align: left;
}

.b2b-benefits li {
  padding: 12px 0 12px 30px;
  position: relative;
}

.b2b-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #c99308;
  font-size: 20px;
  font-weight: bold;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 60px 20px;
  background: #ffffff;
  border-radius: 30px;
  margin-bottom: 40px;
  box-shadow: 0 8px 25px rgba(30, 69, 99, 0.1);
}

.legal-page h1 {
  font-size: 42px;
  margin-bottom: 20px;
  text-align: center;
}

.legal-page h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-page h3 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 16px;
}

.legal-page p {
  margin-bottom: 20px;
  line-height: 1.8;
}

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

.legal-page li {
  margin-bottom: 12px;
}

.legal-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(30, 69, 99, 0.1);
}

.legal-page th,
.legal-page td {
  padding: 16px;
  text-align: left;
  border-bottom: 2px solid #f0f0f0;
}

.legal-page th {
  background: linear-gradient(135deg, #1e4563 0%, #2a5a7a 100%);
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.legal-page tr:hover {
  background: #fef9e7;
}

/* ===== THANK YOU PAGE ===== */
.thank-you-hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fef9e7 0%, #fff4e0 100%);
  text-align: center;
  border-radius: 30px;
  margin-bottom: 40px;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 30px;
  filter: drop-shadow(2px 2px 6px rgba(0,0,0,0.1));
}

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

.confirmation-text {
  font-size: 20px;
  color: #1e4563;
  margin-bottom: 40px;
}

.next-steps {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(30, 69, 99, 0.15);
  text-align: left;
  margin: 40px auto;
}

.next-steps h2 {
  font-size: 28px;
  margin-bottom: 24px;
  text-align: center;
}

.next-steps ol {
  margin: 24px 0 24px 24px;
}

.next-steps li {
  padding: 12px 0;
  font-size: 16px;
}

.timeline {
  background: #fff4e0;
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  margin-top: 24px;
}

/* ===== WHILE WAITING ===== */
.while-waiting {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.resource-card {
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  padding: 40px 30px;
  background: linear-gradient(135deg, #ffffff 0%, #fef9e7 100%);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(30, 69, 99, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.resource-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(30, 69, 99, 0.25);
}

.resource-card img {
  width: 70px;
  height: 70px;
  margin-bottom: 24px;
}

.resource-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1e4563 0%, #2a5a7a 100%);
  border-radius: 30px;
  text-align: center;
  margin-bottom: 40px;
}

.social-proof h2 {
  color: #ffffff;
  margin-bottom: 40px;
}

.social-proof h2::after {
  background: linear-gradient(90deg, #c99308 0%, #ffffff 100%);
  left: 50%;
  transform: translateX(-50%);
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-item h3 {
  font-size: 48px;
  color: #c99308;
  margin-bottom: 8px;
  font-weight: 800;
}

.stat-item p {
  font-size: 16px;
  color: #ffffff;
}

/* ===== CONTACT REMINDER ===== */
.contact-reminder {
  padding: 60px 20px;
  background: linear-gradient(135deg, #fce4ec 0%, #fef9e7 100%);
  border-radius: 30px;
  text-align: center;
  margin-bottom: 40px;
}

.contact-options-simple {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 40px;
}

.contact-option {
  flex: 1 1 280px;
  max-width: 350px;
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(30, 69, 99, 0.1);
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
}

.contact-option img {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

/* ===== THANK YOU PAGE SIMPLE ===== */
.thank-you-page {
  padding: 80px 20px;
}

.thank-you-box {
  background: linear-gradient(135deg, #fef9e7 0%, #fff4e0 100%);
  padding: 60px 40px;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(30, 69, 99, 0.2);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.thank-you-box .success-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
}

.thank-you-box h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.thank-you-message {
  font-size: 18px;
  color: #1e4563;
  margin-bottom: 16px;
}

.response-info {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.thank-you-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-info-box {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(30, 69, 99, 0.15);
  max-width: 800px;
  margin: 0 auto;
}

.contact-info-box h2 {
  font-size: 28px;
  margin-bottom: 24px;
  text-align: center;
}

/* ===== PRODUCT DETAILS ===== */
.product-details {
  padding: 60px 20px;
}

.product-detail {
  background: linear-gradient(135deg, #ffffff 0%, #fef9e7 100%);
  padding: 40px 30px;
  margin-bottom: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(30, 69, 99, 0.15);
  border-left: 6px solid #c99308;
}

.product-detail h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.product-price {
  font-size: 36px;
  font-weight: 800;
  color: #c99308;
  margin-bottom: 24px;
}

.product-detail h3 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 16px;
}

/* ===== WARRANTY SECTION ===== */
.warranty-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #fce4ec 0%, #fef9e7 100%);
  border-radius: 30px;
  margin-bottom: 40px;
}

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

.warranty-item {
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
  padding: 30px 20px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(30, 69, 99, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.warranty-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(30, 69, 99, 0.2);
}

.warranty-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.warranty-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, #1e4563 0%, #0f2940 100%);
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 80px;
  border-top: 5px solid #c99308;
}

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

.footer-section {
  flex: 1 1 240px;
  max-width: 300px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-section h4 {
  color: #c99308;
  font-size: 18px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-section ul {
  list-style: none;
  margin: 0;
}

.footer-section li {
  margin-bottom: 12px;
}

.footer-section a {
  color: #d0d0d0;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: #c99308;
  padding-left: 5px;
}

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

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

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1e4563 0%, #2a5a7a 100%);
  color: #ffffff;
  padding: 24px 20px;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.4);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 4px solid #c99308;
}

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

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

.cookie-consent-text {
  flex: 1 1 400px;
  font-size: 15px;
  line-height: 1.6;
}

.cookie-consent-text a {
  color: #c99308;
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #c99308 0%, #e5a00d 100%);
  color: #1e4563;
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 147, 8, 0.5);
}

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

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

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

.cookie-btn-settings:hover {
  background: rgba(201, 147, 8, 0.2);
  transform: translateY(-2px);
}

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

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

.cookie-modal-content {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #c99308;
  color: #ffffff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-weight: bold;
}

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

.cookie-modal h2 {
  color: #1e4563;
  margin-bottom: 24px;
  font-size: 28px;
}

.cookie-category {
  background: #f9f9f9;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 12px;
  border-left: 4px solid #c99308;
}

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

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

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

.cookie-toggle.active {
  background: #c99308;
}

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

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

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

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 42px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .page-hero h1 {
    font-size: 36px;
  }
  
  .page-hero p {
    font-size: 16px;
  }
  
  .section {
    padding: 40px 16px;
  }
  
  .benefits-grid,
  .products-grid,
  .steps,
  .testimonials-grid {
    gap: 20px;
  }
  
  .benefit-card,
  .product-card,
  .step,
  .testimonial-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .trust-indicators {
    gap: 20px;
  }
  
  .trust-indicators span {
    flex: 1 1 100%;
    justify-content: center;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  .stats-row {
    flex-direction: column;
    gap: 20px;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    max-width: 100%;
  }
  
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .logo img {
    height: 40px;
  }
  
  .price,
  .comparison-price,
  .service-price,
  .product-price {
    font-size: 28px;
  }
}

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }

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

.mb-0 {
  margin-bottom: 0;
}

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

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

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