/* ========================================
   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', sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

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

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

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

/* ========================================
   Typography
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #2C3E50;
}

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

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

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

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  color: #34495e;
}

/* ========================================
   Container & Layout
   ======================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ========================================
   Header & Navigation
   ======================================== */

header {
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.95) 0%, rgba(52, 73, 94, 0.95) 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

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

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

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

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

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

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

.main-nav a:hover {
  color: #ffffff;
  background: rgba(231, 76, 60, 0.1);
}

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

/* ========================================
   Mobile Menu
   ======================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #E74C3C, #ff6b6b);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  font-size: 24px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(231, 76, 60, 0.5);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #2C3E50 0%, #34495e 100%);
  z-index: 1999;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(231, 76, 60, 0.2);
  color: #ECF0F1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #ECF0F1;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  display: block;
}

.mobile-nav a:hover,
.mobile-nav a:active {
  background: linear-gradient(135deg, #E74C3C, #ff6b6b);
  transform: translateX(10px);
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

/* ========================================
   Cookie Consent Banner
   ======================================== */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.98) 0%, rgba(52, 73, 94, 0.98) 100%);
  backdrop-filter: blur(10px);
  padding: 24px;
  z-index: 1998;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

#cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
  color: #ECF0F1;
  font-size: 14px;
  line-height: 1.6;
}

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

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

.cookie-accept {
  background: linear-gradient(135deg, #E74C3C, #ff6b6b);
  color: white;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.cookie-reject {
  background: rgba(255, 255, 255, 0.1);
  color: #ECF0F1;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.2);
}

.cookie-settings {
  background: transparent;
  color: #ECF0F1;
  text-decoration: underline;
}

.cookie-settings:hover {
  color: #E74C3C;
}

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

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

.cookie-modal-content {
  background: white;
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.cookie-modal-content h3 {
  color: #2C3E50;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
}

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

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

/* ========================================
   Buttons
   ======================================== */

.btn,
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn,
.btn-primary {
  background: linear-gradient(135deg, #E74C3C, #ff6b6b);
  color: white;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn:hover,
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(236, 240, 241, 0.9));
  color: #2C3E50;
  border: 2px solid rgba(44, 62, 80, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%);
  padding: 100px 20px;
  text-align: center;
  color: white;
  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"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
  opacity: 0.3;
}

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

.hero h1 {
  color: white;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
}

.hero .subheadline {
  font-size: 20px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

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

.trust-badges span {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.trust-badges span:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

/* ========================================
   Page Hero (Internal Pages)
   ======================================== */

.page-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 20px 60px;
  text-align: center;
  color: white;
  margin-bottom: 60px;
}

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

.page-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}

.breadcrumbs {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 20px;
}

/* ========================================
   Benefits Section
   ======================================== */

.benefits {
  background: white;
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.benefits h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #2C3E50;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.benefit-item {
  flex: 1 1 250px;
  max-width: 280px;
  padding: 32px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.benefit-item::before {
  content: '✓';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #E74C3C, #ff6b6b);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
}

.benefit-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.benefit-item h3 {
  color: #2C3E50;
  margin-bottom: 12px;
  margin-top: 20px;
}

.benefit-item p {
  color: #7f8c8d;
  font-size: 14px;
  line-height: 1.6;
}

/* ========================================
   Services/Products Grid
   ======================================== */

.services,
.products {
  padding: 80px 20px;
  margin-bottom: 60px;
}

.services h2,
.products h2 {
  text-align: center;
  color: white;
  margin-bottom: 16px;
}

.subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 48px;
  font-size: 18px;
}

.services-grid,
.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 48px;
}

.service-card,
.product-card {
  flex: 1 1 280px;
  max-width: 350px;
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before,
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #667eea, #764ba2);
}

.service-card:hover,
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.service-card h3,
.product-card h3 {
  color: #2C3E50;
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p,
.product-card p {
  color: #7f8c8d;
  margin-bottom: 16px;
  flex-grow: 1;
  font-size: 15px;
  line-height: 1.6;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #E74C3C;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}

.service-card .btn,
.product-card .btn {
  width: 100%;
  margin-top: auto;
}

/* ========================================
   Testimonials
   ======================================== */

.testimonials {
  background: white;
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #2C3E50;
}

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

.testimonial-card {
  flex: 1 1 400px;
  max-width: 550px;
  padding: 32px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #E74C3C;
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 60px;
  color: rgba(231, 76, 60, 0.15);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.testimonial-card > p:first-of-type {
  font-size: 16px;
  line-height: 1.7;
  color: #2C3E50;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.author {
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 8px;
  font-size: 15px;
}

.rating {
  color: #f39c12;
  font-size: 18px;
  margin-bottom: 0;
}

/* ========================================
   CTA Banner
   ======================================== */

.cta-banner {
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.95) 0%, rgba(255, 107, 107, 0.95) 100%);
  padding: 80px 20px;
  text-align: center;
  color: white;
  margin-bottom: 60px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(231, 76, 60, 0.3);
}

.cta-banner h2 {
  color: white;
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

/* ========================================
   Values & Stats
   ======================================== */

.values,
.stats {
  background: white;
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.values h2,
.stats h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #2C3E50;
}

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

.value-item,
.stat-item {
  flex: 1 1 250px;
  max-width: 280px;
  padding: 32px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  text-align: center;
  color: white;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
}

.value-item:hover,
.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.value-item h3 {
  color: white;
  margin-bottom: 12px;
}

.value-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.6;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}

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

/* ========================================
   About Story
   ======================================== */

.about-story {
  background: white;
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-story h2 {
  color: #2C3E50;
  margin-bottom: 32px;
}

.about-story p {
  font-size: 17px;
  line-height: 1.8;
  color: #34495e;
  margin-bottom: 24px;
  max-width: 900px;
}

/* ========================================
   Promotion Sections
   ======================================== */

.promotion-banner {
  background: linear-gradient(135deg, #E74C3C 0%, #ff6b6b 100%);
  padding: 80px 20px;
  text-align: center;
  color: white;
  margin-bottom: 60px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(231, 76, 60, 0.3);
}

.promotion-banner h2 {
  color: white;
  font-size: 40px;
  margin-bottom: 20px;
}

.promotion-banner p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 16px;
}

.deals {
  padding: 80px 20px;
  margin-bottom: 60px;
}

.deals h2 {
  text-align: center;
  color: white;
  margin-bottom: 48px;
}

.deals-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.deal-card {
  flex: 1 1 300px;
  max-width: 380px;
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  transition: all 0.3s ease;
}

.deal-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #E74C3C, #ff6b6b);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.deal-card h3 {
  color: #2C3E50;
  margin-bottom: 16px;
  margin-top: 20px;
}

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

.new-price {
  font-size: 32px;
  font-weight: 700;
  color: #E74C3C;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}

.discount {
  display: inline-block;
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 20px;
}

/* ========================================
   Bundles
   ======================================== */

.bundles {
  background: white;
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.bundles h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #2C3E50;
}

.bundles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.bundle-card {
  flex: 1 1 400px;
  max-width: 500px;
  padding: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  color: white;
  box-shadow: 0 10px 35px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
  text-align: center;
}

.bundle-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(102, 126, 234, 0.4);
}

.bundle-card h3 {
  color: white;
  font-size: 28px;
  margin-bottom: 16px;
}

.bundle-card > p:first-of-type {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin-bottom: 24px;
}

.bundle-card .price {
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  display: block;
}

.bundle-card .price .old {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: line-through;
  font-weight: 400;
  display: block;
  margin-top: 8px;
}

.savings {
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  color: white;
  display: inline-block;
  margin-top: 12px;
}

/* ========================================
   Blog
   ======================================== */

.featured-post {
  padding: 80px 20px;
  margin-bottom: 60px;
}

.post-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.post-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #667eea, #764ba2);
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.post-card.featured {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95));
  padding: 50px;
}

.category {
  display: inline-block;
  background: linear-gradient(135deg, #E74C3C, #ff6b6b);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.post-card h2,
.post-card h3 {
  color: #2C3E50;
  margin-bottom: 16px;
}

.post-card h2 {
  font-size: 32px;
}

.post-card h3 {
  font-size: 22px;
}

.meta {
  color: #95a5a6;
  font-size: 14px;
  margin-bottom: 20px;
}

.blog-grid {
  background: white;
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.blog-grid h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #2C3E50;
}

.posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.posts-grid .post-card {
  flex: 1 1 280px;
  max-width: 350px;
  padding: 32px;
}

/* ========================================
   Contact Page
   ======================================== */

.contact-methods {
  background: white;
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-methods h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #2C3E50;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.contact-method {
  flex: 1 1 280px;
  max-width: 350px;
  padding: 40px 32px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  text-align: center;
  color: white;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.contact-method h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 24px;
}

.contact-method p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.contact-form-section {
  background: white;
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #2C3E50;
}

.contact-form-section > .container > p {
  text-align: center;
  color: #7f8c8d;
  margin-bottom: 40px;
  font-size: 16px;
}

.form-notice {
  max-width: 600px;
  margin: 0 auto;
  padding: 32px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 12px;
  border-left: 5px solid #E74C3C;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.form-notice p {
  color: #2C3E50;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 600;
}

.form-notice p:last-child {
  margin-bottom: 0;
}

.office-hours {
  background: white;
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.office-hours h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #2C3E50;
}

.hours-info {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  color: white;
  box-shadow: 0 10px 35px rgba(102, 126, 234, 0.3);
}

.hours-info p {
  color: white;
  font-size: 18px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.hours-info p:last-child {
  margin-bottom: 0;
}

.hours-info .note {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  display: block;
}

/* ========================================
   Legal Content Pages
   ======================================== */

.legal-content {
  background: white;
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.legal-content .container {
  max-width: 900px;
}

.legal-content h2 {
  color: #2C3E50;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid #E74C3C;
}

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

.legal-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #34495e;
  margin-bottom: 20px;
}

.last-update {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 2px solid #ecf0f1;
  font-style: italic;
  color: #95a5a6;
}

/* ========================================
   Thank You Page
   ======================================== */

.thank-you-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 100px 20px;
  text-align: center;
  color: white;
  margin-bottom: 60px;
  border-radius: 20px;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-size: 50px;
  color: white;
  font-weight: bold;
  box-shadow: 0 8px 30px rgba(39, 174, 96, 0.4);
  animation: successPulse 2s ease-in-out infinite;
}

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

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

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

.thank-you-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

.next-steps {
  background: white;
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #2C3E50;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.step-item {
  flex: 1 1 280px;
  max-width: 350px;
  padding: 32px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.step-item::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-item h3 {
  color: #2C3E50;
  margin-top: 20px;
  margin-bottom: 12px;
}

.step-item p {
  color: #7f8c8d;
  font-size: 14px;
  line-height: 1.6;
}

.recommended-content {
  padding: 80px 20px;
  margin-bottom: 60px;
}

.recommended-content h2 {
  text-align: center;
  color: white;
  margin-bottom: 48px;
}

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

.content-card {
  flex: 1 1 280px;
  max-width: 350px;
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
  transition: all 0.3s ease;
}

.content-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.content-card h3 {
  color: #2C3E50;
  margin-bottom: 12px;
}

.content-card p {
  color: #7f8c8d;
  margin-bottom: 24px;
  font-size: 14px;
}

.back-navigation {
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 40px;
}

.back-navigation .container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   Features Strip
   ======================================== */

.features-strip {
  background: white;
  padding: 32px 20px;
  margin-bottom: 60px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.features-row span {
  color: #2C3E50;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.features-row span:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ========================================
   Footer
   ======================================== */

footer {
  background: linear-gradient(135deg, #2C3E50 0%, #34495e 100%);
  color: #ECF0F1;
  padding: 60px 20px 32px;
  margin-top: auto;
}

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

.footer-section {
  flex: 1 1 280px;
  max-width: 350px;
}

.footer-section h4 {
  color: white;
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #E74C3C, #ff6b6b);
}

.footer-section p {
  color: rgba(236, 240, 241, 0.9);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

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

.footer-nav a {
  color: rgba(236, 240, 241, 0.9);
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.footer-nav a:hover {
  color: #E74C3C;
  padding-left: 10px;
}

.copyright {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(236, 240, 241, 0.2);
  color: rgba(236, 240, 241, 0.7);
  font-size: 14px;
}

/* ========================================
   Responsive Design - Mobile First
   ======================================== */

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero .subheadline {
    font-size: 16px;
  }
  
  /* Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Sections */
  .hero {
    padding: 60px 20px;
  }
  
  .page-hero {
    padding: 60px 20px 40px;
  }
  
  .page-hero h1 {
    font-size: 32px;
  }
  
  .benefits,
  .services,
  .products,
  .testimonials,
  .values,
  .stats,
  .about-story,
  .deals,
  .bundles,
  .blog-grid,
  .contact-methods,
  .contact-form-section,
  .office-hours,
  .legal-content,
  .next-steps {
    padding: 60px 20px;
  }
  
  .cta-banner,
  .promotion-banner {
    padding: 60px 20px;
  }
  
  .cta-banner h2,
  .promotion-banner h2 {
    font-size: 28px;
  }
  
  /* Grids */
  .benefits-grid,
  .services-grid,
  .product-grid,
  .testimonials-grid,
  .values-grid,
  .stats-grid,
  .deals-grid,
  .bundles-grid,
  .posts-grid,
  .contact-grid,
  .steps-grid,
  .content-grid {
    gap: 24px;
  }
  
  .benefit-item,
  .service-card,
  .product-card,
  .testimonial-card,
  .value-item,
  .stat-item,
  .deal-card,
  .bundle-card,
  .post-card,
  .contact-method,
  .step-item,
  .content-card {
    max-width: 100%;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn,
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
  
  /* Trust badges */
  .trust-badges {
    flex-direction: column;
    gap: 16px;
  }
  
  .trust-badges span {
    width: 100%;
    text-align: center;
  }
  
  /* Features row */
  .features-row {
    flex-direction: column;
    gap: 16px;
  }
  
  .features-row span {
    width: 100%;
    text-align: center;
  }
  
  /* Cookie banner */
  #cookie-banner .container {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    max-width: 100%;
  }
  
  /* Contact hours */
  .hours-info p {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  /* Thank you page */
  .thank-you-hero h1 {
    font-size: 32px;
  }
  
  .success-icon {
    width: 80px;
    height: 80px;
    font-size: 40px;
  }
  
  /* Back navigation */
  .back-navigation .container {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .container {
    padding: 0 32px;
  }
  
  h1 {
    font-size: 40px;
  }
  
  .hero h1 {
    font-size: 48px;
  }
  
  .main-nav {
    gap: 24px;
  }
  
  .benefits-grid,
  .services-grid,
  .product-grid,
  .values-grid,
  .stats-grid {
    gap: 28px;
  }
}

/* ========================================
   Utility Classes
   ======================================== */

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

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

/* ========================================
   Animations
   ======================================== */

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

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

/* ========================================
   Print Styles
   ======================================== */

@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  .btn,
  .btn-primary,
  .btn-secondary {
    display: none;
  }
  
  body {
    background: white;
  }
  
  .container {
    max-width: 100%;
  }
}