/* ============================================
   CLARIS SPRAY - VIBRANT ENERGETIC DESIGN
   Modern Google Ads Agency Website
   Mobile-First Responsive 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', sans-serif;
  line-height: 1.7;
  color: #1A1A2E;
  background: #FFFFFF;
  overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY - VIBRANT ENERGETIC STYLE
   ============================================ */

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

h1 {
  font-size: 48px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

h2 {
  font-size: 40px;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 28px;
  font-weight: 700;
}

h4 {
  font-size: 22px;
  font-weight: 700;
}

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

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

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

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

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */

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

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

/* ============================================
   HEADER & NAVIGATION - ENERGETIC DESIGN
   ============================================ */

header {
  background: linear-gradient(135deg, #0066CC 0%, #004C99 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 102, 204, 0.3);
  border-bottom: 4px solid #00D9FF;
}

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

.logo {
  z-index: 1001;
}

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

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

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

.nav-menu li {
  position: relative;
}

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

.nav-menu a:hover {
  background: rgba(0, 217, 255, 0.2);
  color: #00D9FF;
  transform: translateY(-2px);
}

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

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #00D9FF 0%, #0066CC 100%);
  border: none;
  color: #FFFFFF;
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0, 217, 255, 0.5);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #0066CC 0%, #1A1A2E 100%);
  z-index: 1999;
  padding: 80px 32px 32px;
  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: transparent;
  border: 3px solid #00D9FF;
  color: #00D9FF;
  font-size: 32px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #00D9FF;
  color: #1A1A2E;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 700;
  padding: 16px 24px;
  border-radius: 12px;
  background: rgba(0, 217, 255, 0.1);
  border-left: 4px solid #00D9FF;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav a:hover {
  background: rgba(0, 217, 255, 0.3);
  transform: translateX(10px);
  border-left-width: 8px;
}

/* ============================================
   BUTTONS - VIBRANT ENERGETIC STYLE
   ============================================ */

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

.btn-primary {
  background: linear-gradient(135deg, #00D9FF 0%, #0066CC 100%);
  color: #FFFFFF;
  border: 3px solid transparent;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0066CC 0%, #004C99 100%);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 217, 255, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #0066CC;
  border: 3px solid #0066CC;
}

.btn-secondary:hover {
  background: #0066CC;
  color: #FFFFFF;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 102, 204, 0.4);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 32px;
}

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

.hero {
  background: linear-gradient(135deg, #0066CC 0%, #1A1A2E 100%);
  padding: 120px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.3) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.2) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite reverse;
}

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

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

.hero h1 {
  color: #FFFFFF;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: slideInUp 0.8s ease-out;
}

.hero-subtitle {
  color: #FFFFFF;
  font-size: 20px;
  margin-bottom: 32px;
  line-height: 1.6;
  opacity: 0.95;
}

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

.trust-indicators span {
  color: #00D9FF;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 24px;
  background: rgba(0, 217, 255, 0.15);
  border-radius: 50px;
  border: 2px solid #00D9FF;
}

/* ============================================
   PAGE HERO - VIBRANT ALTERNATIVE
   ============================================ */

.page-hero {
  background: linear-gradient(135deg, #00D9FF 0%, #0066CC 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  color: #FFFFFF;
  font-size: 48px;
  margin-bottom: 16px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

/* ============================================
   STATS & SOCIAL PROOF - BOLD DISPLAY
   ============================================ */

.social-proof {
  background: #F8F9FA;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-around;
  align-items: stretch;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 200px;
  min-width: 200px;
  padding: 32px 24px;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 102, 204, 0.1);
  border-top: 4px solid #00D9FF;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 217, 255, 0.3);
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: #0066CC;
  line-height: 1;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}

.stat-label {
  font-size: 16px;
  color: #666666;
  font-weight: 600;
}

/* ============================================
   SERVICES GRID - DYNAMIC LAYOUT
   ============================================ */

.services-overview,
.services-detailed {
  padding: 80px 20px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666666;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.service-card {
  flex: 1 1 350px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-left: 6px solid #00D9FF;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 24px;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 217, 255, 0.3);
  border-left-color: #0066CC;
}

.service-card h3 {
  color: #1A1A2E;
  margin-bottom: 16px;
  font-size: 24px;
}

.service-card p {
  color: #555555;
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-card .price {
  color: #0066CC;
  font-size: 24px;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  margin-top: 24px;
}

/* ============================================
   SERVICE DETAIL - ENHANCED LAYOUT
   ============================================ */

.service-detail {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 16px;
  margin-bottom: 40px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #00D9FF;
}

.service-detail h2 {
  color: #1A1A2E;
  margin-bottom: 12px;
}

.service-detail .tagline {
  color: #0066CC;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  font-style: italic;
}

.service-detail ul {
  margin: 24px 0;
  padding-left: 24px;
}

.service-detail ul li {
  margin-bottom: 12px;
  color: #555555;
  line-height: 1.6;
  position: relative;
  padding-left: 8px;
}

.service-detail ul li::marker {
  color: #00D9FF;
  font-weight: bold;
}

/* ============================================
   PROCESS STEPS - VIBRANT TIMELINE
   ============================================ */

.process {
  background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
  padding: 80px 20px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 48px;
}

.step {
  flex: 1 1 250px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  border-top: 4px solid #00D9FF;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 217, 255, 0.3);
}

.step-number {
  display: inline-block;
  width: 64px;
  height: 64px;
  line-height: 64px;
  background: linear-gradient(135deg, #00D9FF 0%, #0066CC 100%);
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}

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

.step p {
  color: #666666;
  line-height: 1.6;
}

/* ============================================
   TESTIMONIALS - ENERGETIC CARDS
   ============================================ */

.testimonials {
  background: #F8F9FA;
  padding: 80px 20px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
  justify-content: space-between;
}

.testimonial-card {
  flex: 1 1 450px;
  background: #FFFFFF;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-left: 6px solid #00D9FF;
  position: relative;
  margin-bottom: 24px;
}

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

.testimonial-card .quote {
  color: #1A1A2E;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  font-weight: 500;
}

.testimonial-card .author {
  color: #0066CC;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 16px;
}

.testimonial-card .author span {
  color: #666666;
  font-weight: 400;
  font-size: 14px;
}

.testimonial-card .rating {
  color: #FFD700;
  font-size: 20px;
  margin-top: 16px;
}

.trust-badge {
  text-align: center;
  margin-top: 32px;
  font-weight: 700;
  color: #0066CC;
  font-size: 18px;
}

/* ============================================
   CTA BANNER - HIGH ENERGY CONVERSION
   ============================================ */

.cta-banner {
  background: linear-gradient(135deg, #0066CC 0%, #1A1A2E 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.2) 0%, transparent 70%);
  animation: pulse 5s ease-in-out infinite;
}

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

.cta-banner p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.benefit-list {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: 32px;
}

.benefit-list li {
  color: #00D9FF;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 24px;
  background: rgba(0, 217, 255, 0.15);
  border-radius: 50px;
  border: 2px solid #00D9FF;
}

/* ============================================
   PRICING GRID - BOLD COMPARISON
   ============================================ */

.pricing-comparison {
  padding: 80px 20px;
}

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

.pricing-card {
  flex: 1 1 320px;
  max-width: 380px;
  background: #FFFFFF;
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 3px solid #E5E5E5;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 24px;
}

.pricing-card.featured {
  border-color: #00D9FF;
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 217, 255, 0.3);
}

.pricing-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 48px rgba(0, 102, 204, 0.2);
}

.pricing-card .badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #00D9FF 0%, #0066CC 100%);
  color: #FFFFFF;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #1A1A2E;
}

.pricing-card .price {
  font-size: 36px;
  font-weight: 800;
  color: #0066CC;
  margin: 20px 0;
  font-family: 'Montserrat', sans-serif;
}

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

.pricing-card ul li {
  padding: 12px 0;
  color: #555555;
  border-bottom: 1px solid #E5E5E5;
  position: relative;
  padding-left: 28px;
}

.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00D9FF;
  font-weight: bold;
  font-size: 18px;
}

.note {
  text-align: center;
  margin-top: 32px;
  color: #666666;
  font-style: italic;
}

/* ============================================
   CASE STUDIES - ENGAGING STORIES
   ============================================ */

.case-studies {
  padding: 80px 20px;
}

.case-study {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 16px;
  margin-bottom: 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-left: 6px solid #00D9FF;
}

.case-study h3 {
  color: #1A1A2E;
  font-size: 28px;
  margin-bottom: 8px;
}

.case-study .industry {
  color: #0066CC;
  font-weight: 700;
  margin-bottom: 24px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.case-study h4 {
  color: #1A1A2E;
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.results-list {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.results-list li {
  padding: 12px 0;
  color: #1A1A2E;
  font-weight: 700;
  font-size: 18px;
  position: relative;
  padding-left: 32px;
}

.results-list li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: #00D9FF;
  font-size: 16px;
}

.timeframe {
  color: #0066CC;
  font-weight: 700;
  margin-top: 16px;
  font-style: italic;
}

.case-study .testimonial {
  background: #F8F9FA;
  padding: 20px;
  border-radius: 8px;
  margin-top: 24px;
  font-style: italic;
  color: #555555;
  border-left: 4px solid #00D9FF;
}

/* ============================================
   BLOG SECTIONS - DYNAMIC CONTENT
   ============================================ */

.blog-categories {
  padding: 40px 20px;
  background: #F8F9FA;
}

.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.category {
  padding: 12px 24px;
  background: #FFFFFF;
  border: 2px solid #0066CC;
  border-radius: 50px;
  color: #0066CC;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category:hover {
  background: #0066CC;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.featured-article {
  padding: 60px 20px;
}

.article-featured {
  background: linear-gradient(135deg, #0066CC 0%, #1A1A2E 100%);
  padding: 60px;
  border-radius: 16px;
  color: #FFFFFF;
}

.article-featured .category-tag {
  display: inline-block;
  background: #00D9FF;
  color: #1A1A2E;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.article-featured h2 {
  color: #FFFFFF;
  font-size: 36px;
  margin-bottom: 16px;
}

.article-featured .excerpt {
  color: #FFFFFF;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  opacity: 0.95;
}

.article-featured .meta {
  color: #00D9FF;
  font-size: 14px;
  font-weight: 600;
}

.blog-grid {
  padding: 80px 20px;
}

.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 48px;
}

.article-card {
  flex: 1 1 280px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #00D9FF;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 217, 255, 0.3);
}

.article-card .category-tag {
  display: inline-block;
  background: #00D9FF;
  color: #1A1A2E;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.article-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1A1A2E;
}

.article-card p {
  color: #666666;
  line-height: 1.6;
  margin-bottom: 16px;
}

.article-card .meta {
  color: #999999;
  font-size: 14px;
}

/* ============================================
   CONTACT SECTIONS - ENGAGING LAYOUT
   ============================================ */

.contact-options {
  padding: 80px 20px;
}

.options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 48px;
}

.option-card {
  flex: 1 1 300px;
  background: #FFFFFF;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-top: 4px solid #00D9FF;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.option-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 217, 255, 0.3);
}

.option-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #1A1A2E;
}

.option-card .value {
  color: #0066CC;
  font-size: 20px;
  font-weight: 700;
  margin: 16px 0;
}

.option-card .availability {
  color: #00D9FF;
  font-weight: 600;
  margin-bottom: 12px;
}

.option-card .note {
  color: #666666;
  font-size: 14px;
  margin-top: 12px;
}

/* ============================================
   ERROR PAGES - FUN & ENGAGING
   ============================================ */

.error-hero {
  background: linear-gradient(135deg, #00D9FF 0%, #0066CC 100%);
  padding: 120px 20px;
  text-align: center;
}

.error-content .error-code {
  font-size: 120px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.error-content h1 {
  color: #FFFFFF;
  font-size: 48px;
  margin-bottom: 16px;
}

.error-subtitle {
  color: #FFFFFF;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.error-suggestions {
  padding: 80px 20px;
}

.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 48px;
}

.suggestion-card {
  flex: 1 1 250px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-top: 4px solid #00D9FF;
  margin-bottom: 24px;
}

.suggestion-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #1A1A2E;
}

/* ============================================
   THANK YOU PAGES - CELEBRATION
   ============================================ */

.thank-you-hero {
  background: linear-gradient(135deg, #00D9FF 0%, #0066CC 100%);
  padding: 120px 20px;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: #FFFFFF;
  color: #00D9FF;
  font-size: 60px;
  line-height: 100px;
  border-radius: 50%;
  margin: 0 auto 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  animation: bounce 1s ease infinite;
}

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

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

.confirmation {
  color: #FFFFFF;
  font-size: 16px;
  margin-top: 24px;
  opacity: 0.9;
}

/* ============================================
   FOOTER - BOLD & ORGANIZED
   ============================================ */

footer {
  background: linear-gradient(135deg, #1A1A2E 0%, #0B0B1A 100%);
  color: #FFFFFF;
  padding: 60px 20px 24px;
  border-top: 4px solid #00D9FF;
}

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

.footer-section {
  flex: 1 1 250px;
}

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

.footer-section p {
  color: #CCCCCC;
  line-height: 1.7;
  margin-bottom: 12px;
}

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

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

.footer-section ul li a {
  color: #CCCCCC;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: #00D9FF;
  padding-left: 8px;
}

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

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

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

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1A1A2E 0%, #0B0B1A 100%);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  border-top: 4px solid #00D9FF;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  color: #FFFFFF;
}

.cookie-text h4 {
  color: #00D9FF;
  margin-bottom: 8px;
  font-size: 18px;
}

.cookie-text p {
  color: #CCCCCC;
  font-size: 14px;
  line-height: 1.6;
}

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

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

#accept-all {
  background: linear-gradient(135deg, #00D9FF 0%, #0066CC 100%);
  color: #FFFFFF;
}

#accept-all:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 217, 255, 0.4);
}

#reject-all {
  background: transparent;
  color: #CCCCCC;
  border: 2px solid #666666;
}

#reject-all:hover {
  background: #666666;
  color: #FFFFFF;
}

#cookie-settings {
  background: transparent;
  color: #00D9FF;
  border: 2px solid #00D9FF;
}

#cookie-settings:hover {
  background: #00D9FF;
  color: #1A1A2E;
}

/* ============================================
   COOKIE MODAL - DETAILED SETTINGS
   ============================================ */

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

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

.modal-content {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.modal-content h3 {
  color: #1A1A2E;
  margin-bottom: 24px;
  font-size: 28px;
}

.cookie-category {
  padding: 20px;
  margin-bottom: 20px;
  background: #F8F9FA;
  border-radius: 8px;
  border-left: 4px solid #00D9FF;
}

.cookie-category h4 {
  color: #1A1A2E;
  margin-bottom: 8px;
  font-size: 18px;
}

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

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

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-toggle label {
  color: #555555;
  font-weight: 600;
  cursor: pointer;
}

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

.modal-buttons button {
  flex: 1 1 150px;
  padding: 14px 24px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

#save-preferences {
  background: linear-gradient(135deg, #00D9FF 0%, #0066CC 100%);
  color: #FFFFFF;
}

#save-preferences:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 217, 255, 0.4);
}

.close-modal {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #999999;
  cursor: pointer;
  width: 40px;
  height: 40px;
  line-height: 1;
  transition: all 0.3s ease;
}

.close-modal:hover {
  color: #0066CC;
  transform: rotate(90deg);
}

/* ============================================
   LEGAL PAGES - READABLE LAYOUT
   ============================================ */

.legal-hero {
  background: linear-gradient(135deg, #0066CC 0%, #1A1A2E 100%);
  padding: 80px 20px;
  text-align: center;
}

.legal-hero h1 {
  color: #FFFFFF;
  font-size: 48px;
  margin-bottom: 16px;
}

.last-updated {
  color: #00D9FF;
  font-size: 14px;
  font-weight: 600;
}

.legal-content {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  color: #1A1A2E;
  font-size: 32px;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 3px solid #00D9FF;
  padding-bottom: 12px;
}

.legal-content h3 {
  color: #0066CC;
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content p {
  color: #555555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.legal-content ul {
  margin: 20px 0;
  padding-left: 32px;
}

.legal-content ul li {
  color: #555555;
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-links {
  margin-top: 48px;
  padding: 32px;
  background: #F8F9FA;
  border-radius: 12px;
  border-left: 4px solid #00D9FF;
}

.legal-links h3 {
  color: #1A1A2E;
  margin-bottom: 16px;
}

.legal-links ul {
  list-style: none;
  padding-left: 0;
}

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

.legal-links ul li a {
  color: #0066CC;
  font-weight: 600;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.legal-links ul li a:hover {
  background: #0066CC;
  color: #FFFFFF;
  padding-left: 24px;
}

/* ============================================
   ANIMATIONS - ENERGETIC MOTION
   ============================================ */

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

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

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

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

@media (max-width: 768px) {
  /* Typography adjustments */
  h1 { font-size: 36px; }
  h2 { font-size: 32px; }
  h3 { font-size: 24px; }
  h4 { font-size: 20px; }
  
  .hero h1 { font-size: 40px; }
  .page-hero h1 { font-size: 36px; }
  
  /* Show mobile menu */
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-menu {
    display: none;
  }
  
  /* Section padding */
  section {
    padding: 40px 16px;
    margin-bottom: 40px;
  }
  
  .hero,
  .page-hero {
    padding: 80px 20px;
  }
  
  /* Grid adjustments */
  .stats-grid,
  .services-grid,
  .process-steps,
  .testimonials-grid,
  .pricing-grid,
  .articles-grid,
  .options-grid,
  .suggestions-grid {
    flex-direction: column;
  }
  
  .stat-item,
  .service-card,
  .step,
  .testimonial-card,
  .pricing-card,
  .article-card,
  .option-card,
  .suggestion-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  /* Button adjustments */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    padding: 14px 24px;
  }
  
  /* Trust indicators */
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Error page */
  .error-content .error-code {
    font-size: 80px;
  }
  
  /* Modal */
  .modal-content {
    padding: 24px;
  }
  
  .modal-buttons {
    flex-direction: column;
  }
  
  .modal-buttons button {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  h1 { font-size: 42px; }
  .hero h1 { font-size: 48px; }
  
  .services-grid,
  .process-steps {
    gap: 24px;
  }
  
  .service-card,
  .step {
    flex: 1 1 calc(50% - 12px);
  }
  
  .stat-item {
    flex: 1 1 calc(50% - 16px);
  }
}

@media (min-width: 1025px) {
  /* Desktop enhancements */
  .hero h1 {
    font-size: 64px;
  }
  
  .container {
    padding: 0 40px;
  }
  
  /* Hover effects enhancement */
  .service-card:hover,
  .stat-item:hover,
  .step:hover {
    transform: translateY(-12px) scale(1.03);
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

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

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

.hidden { display: none; }
.visible { display: block; }

/* ============================================
   ACCESSIBILITY
   ============================================ */

*:focus {
  outline: 3px solid #00D9FF;
  outline-offset: 2px;
}

.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,
  .cta-banner,
  .btn {
    display: none;
  }
  
  body {
    color: #000000;
    background: #FFFFFF;
  }
  
  a {
    color: #000000;
    text-decoration: underline;
  }
}

/* END OF CSS */