/* ============================================
   AZUREFLOW - VIBRANT ENERGETIC DESIGN
   CSS Reset & Base Styles
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #1A1A1A;
  background: linear-gradient(135deg, #FFE5E0 0%, #FFF0EB 50%, #E0F7FF 100%);
  overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY - VIBRANT & ENERGETIC
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #FF3366;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #FF3366 0%, #FF6B35 50%, #FFD23F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #FF3366;
}

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

h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1A1A1A;
}

p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #2A2A2A;
}

a {
  color: #FF3366;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

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

strong {
  font-weight: 700;
  color: #FF3366;
}

em {
  font-style: italic;
  color: #666;
}

ul, ol {
  margin: 16px 0 16px 24px;
}

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

blockquote {
  border-left: 5px solid #FFD23F;
  padding: 20px 30px;
  margin: 30px 0;
  background: rgba(255, 210, 63, 0.1);
  font-style: italic;
  font-size: 20px;
  color: #1A1A1A;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(255, 51, 102, 0.1);
}

/* ============================================
   CONTAINER & LAYOUT - FLEXBOX ONLY
   ============================================ */

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

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

.section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 51, 102, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

/* ============================================
   HEADER & NAVIGATION - VIBRANT
   ============================================ */

header {
  background: linear-gradient(135deg, #FF3366 0%, #FF6B35 100%);
  padding: 20px 0;
  box-shadow: 0 8px 32px rgba(255, 51, 102, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

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

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

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

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

.main-nav a {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.main-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
  z-index: -1;
}

.main-nav a:hover::before {
  left: 0;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ============================================
   MOBILE MENU - VIBRANT SLIDE-IN
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #FF3366, #FF6B35);
  border: none;
  color: white;
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(255, 51, 102, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 8px 32px rgba(255, 51, 102, 0.6);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #FF3366 0%, #FF6B35 50%, #FFD23F 100%);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  color: white;
  font-size: 32px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
  gap: 8px;
}

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

.mobile-nav a:hover {
  background: white;
  color: #FF3366;
  transform: translateX(10px);
  border-color: #FFD23F;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ============================================
   BUTTONS - HIGH ENERGY
   ============================================ */

.btn {
  display: inline-block;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #FF3366 0%, #FF6B35 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 40px rgba(255, 51, 102, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, #FFD23F 0%, #FF6B35 100%);
  color: #1A1A1A;
}

.btn-secondary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 40px rgba(255, 210, 63, 0.4);
}

/* ============================================
   HERO SECTION - EXPLOSIVE ENERGY
   ============================================ */

.hero {
  background: linear-gradient(135deg, #FF3366 0%, #FF6B35 50%, #FFD23F 100%);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.hero::before {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
}

.hero::after {
  width: 400px;
  height: 400px;
  bottom: -150px;
  right: -150px;
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(180deg); }
}

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

.hero h1 {
  color: white;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.8s ease;
  background: none;
  -webkit-text-fill-color: white;
}

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

.hero-subheadline {
  font-size: 22px;
  color: white;
  margin-bottom: 40px;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.8s ease 0.2s both;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: slideUp 0.8s ease 0.4s both;
}

.trust-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  color: white;
  font-size: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  animation: slideUp 0.8s ease 0.6s both;
  backdrop-filter: blur(10px);
}

/* ============================================
   CARDS & GRIDS - DYNAMIC LAYOUTS
   ============================================ */

.benefits-grid,
.products-grid,
.features-grid,
.testimonials-grid,
.steps-grid,
.trust-grid,
.values-grid,
.team-grid,
.articles-grid,
.contact-grid,
.guide-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-top: 40px;
}

.benefit-item,
.product-card,
.feature-item,
.testimonial-card,
.step,
.trust-item,
.value-item,
.team-member,
.article-card,
.contact-method,
.guide-item {
  flex: 1 1 calc(50% - 15px);
  min-width: 280px;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(255, 51, 102, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
}

.benefit-item::before,
.product-card::before,
.feature-item::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(255, 51, 102, 0.1), rgba(255, 210, 63, 0.1));
  border-radius: 50%;
  transition: all 0.5s ease;
}

.benefit-item:hover,
.product-card:hover,
.feature-item:hover,
.article-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 16px 48px rgba(255, 51, 102, 0.3);
  border-color: #FF3366;
}

.benefit-item:hover::before,
.product-card:hover::before,
.feature-item:hover::before {
  top: -10%;
  right: -10%;
  width: 300px;
  height: 300px;
}

.benefit-item img,
.feature-item img,
.value-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 12px rgba(255, 51, 102, 0.3));
  transition: transform 0.3s ease;
}

.benefit-item:hover img,
.feature-item:hover img,
.value-item:hover img {
  transform: scale(1.2) rotate(10deg);
}

.product-card h3,
.feature-item h3,
.article-card h3 {
  margin-bottom: 15px;
  color: #FF3366;
}

.price {
  font-size: 32px;
  font-weight: 800;
  color: #FF3366;
  margin: 20px 0;
  background: linear-gradient(135deg, #FF3366, #FFD23F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   TESTIMONIALS - VIBRANT REVIEWS
   ============================================ */

.testimonial-card {
  background: linear-gradient(135deg, #FFF5F0 0%, #FFF 100%);
  padding: 40px;
  border-left: 6px solid #FF3366;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote {
  font-size: 20px;
  font-style: italic;
  color: #1A1A1A;
  line-height: 1.8;
  position: relative;
  padding-left: 30px;
}

.quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 60px;
  color: #FF3366;
  opacity: 0.3;
  font-family: Georgia, serif;
}

.author {
  font-weight: 700;
  color: #2A2A2A;
  font-size: 16px;
}

.rating {
  color: #FFD23F;
  font-size: 24px;
  letter-spacing: 4px;
}

/* ============================================
   STEPS & PROCESS - DYNAMIC FLOW
   ============================================ */

.step {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px;
  text-align: center;
  padding: 40px 30px;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #FF3366, #FFD23F);
  color: white;
  font-size: 32px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(255, 51, 102, 0.3);
  transition: all 0.3s ease;
}

.step:hover .step-number {
  transform: scale(1.15) rotate(360deg);
}

/* ============================================
   CTA SECTIONS - EXPLOSIVE CALLS TO ACTION
   ============================================ */

.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #FF3366 0%, #FF6B35 50%, #FFD23F 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner h2,
.cta-section h2 {
  color: white;
  font-size: 42px;
  margin-bottom: 20px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.cta-banner p,
.cta-section p {
  color: white;
  font-size: 20px;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.benefits-list {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin: 30px 0;
}

.cta-buttons,
.cta-center {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* ============================================
   PAGE HERO - DYNAMIC HEADERS
   ============================================ */

.page-hero {
  background: linear-gradient(135deg, #FF3366 0%, #FF6B35 100%);
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

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

.breadcrumb a {
  color: white;
}

.page-hero h1 {
  color: white;
  margin-bottom: 16px;
  background: none;
  -webkit-text-fill-color: white;
}

.page-hero p {
  color: white;
  font-size: 20px;
  margin-bottom: 12px;
}

.last-updated {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

/* ============================================
   PRODUCT DETAILS - VIBRANT SHOWCASE
   ============================================ */

.product-detail {
  background: white;
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 40px;
  box-shadow: 0 8px 32px rgba(255, 51, 102, 0.15);
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
  transition: all 0.3s ease;
}

.product-detail:hover {
  border-color: #FF3366;
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(255, 51, 102, 0.25);
}

.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #FF3366, #FFD23F);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(255, 51, 102, 0.3);
}

.product-features {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.product-features li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  font-size: 16px;
  color: #2A2A2A;
}

.product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FF3366;
  font-weight: 800;
  font-size: 20px;
}

.product-cta {
  margin-top: 30px;
}

/* ============================================
   LEGAL PAGES - CLEAN & READABLE
   ============================================ */

.legal-content {
  background: white;
  padding: 60px 20px;
}

.legal-section {
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 3px solid #FFD23F;
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  color: #FF3366;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 3px solid #FF3366;
}

.legal-section h3 {
  color: #FF6B35;
  margin-top: 24px;
  margin-bottom: 16px;
}

.info-box {
  background: linear-gradient(135deg, #FFF5F0 0%, #FFF 100%);
  padding: 30px;
  border-radius: 15px;
  border-left: 6px solid #FF3366;
  margin: 24px 0;
  box-shadow: 0 4px 16px rgba(255, 51, 102, 0.1);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.data-table thead {
  background: linear-gradient(135deg, #FF3366, #FF6B35);
  color: white;
}

.data-table th,
.data-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid #FFE5E0;
}

.data-table th {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.data-table tbody tr:hover {
  background: #FFF5F0;
}

/* ============================================
   FAQ SECTIONS - DYNAMIC ACCORDIONS
   ============================================ */

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

.faq-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  border-left: 6px solid #FF3366;
  box-shadow: 0 4px 16px rgba(255, 51, 102, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 24px rgba(255, 51, 102, 0.2);
}

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

.faq-item p {
  color: #2A2A2A;
  line-height: 1.8;
}

/* ============================================
   CONTACT FORMS - VIBRANT INPUTS
   ============================================ */

.form-wrapper {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(255, 51, 102, 0.15);
  max-width: 700px;
  margin: 40px auto;
}

.form-field {
  margin-bottom: 30px;
}

.form-field label {
  display: block;
  font-weight: 700;
  color: #FF3366;
  margin-bottom: 12px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.field-placeholder {
  background: #FFF5F0;
  padding: 16px 20px;
  border-radius: 12px;
  border: 3px solid #FFE5E0;
  color: #999;
  font-size: 16px;
  transition: all 0.3s ease;
}

.field-placeholder:hover {
  border-color: #FF3366;
  background: white;
}

.form-note {
  font-size: 14px;
  color: #666;
  font-style: italic;
  margin: 20px 0;
}

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

/* ============================================
   THANK YOU PAGE - CELEBRATION
   ============================================ */

.thank-you-hero {
  background: linear-gradient(135deg, #FF3366 0%, #FF6B35 50%, #FFD23F 100%);
  padding: 100px 20px;
  text-align: center;
}

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

.checkmark-icon {
  width: 120px;
  height: 120px;
  background: white;
  color: #FF3366;
  font-size: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.thank-you-hero h1 {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
}

.subtitle {
  font-size: 24px;
  font-weight: 600;
  color: white;
  margin-bottom: 16px;
}

/* ============================================
   FOOTER - ENERGETIC BASE
   ============================================ */

footer {
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
  color: white;
  padding: 60px 20px 30px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #FF3366 0%, #FF6B35 50%, #FFD23F 100%);
}

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

.footer-section {
  flex: 1 1 calc(25% - 30px);
  min-width: 220px;
}

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

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

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

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

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

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

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

/* ============================================
   COOKIE CONSENT BANNER - VIBRANT
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
  padding: 24px 20px;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-top: 4px solid #FF3366;
}

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

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

.cookie-text {
  flex: 1 1 300px;
  color: white;
  font-size: 15px;
  line-height: 1.6;
}

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

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

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

.cookie-btn-accept {
  background: linear-gradient(135deg, #FF3366, #FF6B35);
  color: white;
}

.cookie-btn-accept:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 51, 102, 0.4);
}

.cookie-btn-reject {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

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

.cookie-btn-settings:hover {
  background: #FFD23F;
  color: #1A1A1A;
}

/* ============================================
   COOKIE PREFERENCES MODAL - VIBRANT
   ============================================ */

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(8px);
}

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

.modal-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 16px 64px rgba(255, 51, 102, 0.3);
  position: relative;
  animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

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

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

.modal-content h2 {
  color: #FF3366;
  margin-bottom: 24px;
}

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

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

.category-header h3 {
  color: #FF6B35;
  margin: 0;
  font-size: 18px;
}

.toggle-switch {
  position: relative;
  width: 60px;
  height: 30px;
  background: #DDD;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: linear-gradient(135deg, #FF3366, #FF6B35);
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  transition: left 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.toggle-switch.active::after {
  left: 33px;
}

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

.category-description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* ============================================
   BADGES & LABELS - ENERGETIC ACCENTS
   ============================================ */

.badge {
  display: inline-block;
  background: linear-gradient(135deg, #FF3366, #FFD23F);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(255, 51, 102, 0.3);
}

.meta {
  font-size: 14px;
  color: #666;
  font-style: italic;
  margin-top: 12px;
}

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

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    display: none;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  p, li {
    font-size: 16px;
  }

  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-subheadline {
    font-size: 18px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .benefit-item,
  .product-card,
  .feature-item,
  .testimonial-card,
  .step,
  .trust-item,
  .value-item,
  .team-member,
  .article-card,
  .contact-method,
  .guide-item {
    flex: 1 1 100%;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-section {
    flex: 1 1 100%;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1 1 100%;
  }

  .modal-content {
    padding: 30px 20px;
  }

  .section {
    padding: 40px 20px;
  }

  .btn {
    width: 100%;
    padding: 16px 30px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .benefit-item,
  .product-card,
  .feature-item,
  .value-item {
    flex: 1 1 calc(50% - 15px);
  }

  .step {
    flex: 1 1 calc(50% - 15px);
  }
}

/* ============================================
   UTILITY CLASSES - VIBRANT HELPERS
   ============================================ */

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

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

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

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

.section-intro {
  font-size: 20px;
  color: #666;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* ============================================
   ANIMATIONS - DYNAMIC MOVEMENT
   ============================================ */

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

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

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

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.animate-fadeIn {
  animation: fadeIn 0.6s ease;
}

.animate-slideInLeft {
  animation: slideInLeft 0.6s ease;
}

.animate-slideInRight {
  animation: slideInRight 0.6s ease;
}

/* ============================================
   ACCESSIBILITY - VIBRANT & INCLUSIVE
   ============================================ */

:focus {
  outline: 3px solid #FF3366;
  outline-offset: 3px;
}

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

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

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

  body {
    background: white;
    color: black;
  }

  a {
    color: black;
    text-decoration: underline;
  }
}
section {
  padding: 20px 0;
}
/* ============================================
   END OF AZUREFLOW VIBRANT ENERGETIC STYLES
   ============================================ */