/* ===================================
   DYNAMIC DIVIDENDS - 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: #1E293B;
  background: linear-gradient(135deg, #FFF 0%, #F0F4FF 100%);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style-position: inside;
}

/* ===================================
   VIBRANT ENERGETIC COLOR SYSTEM
   Electric & Dynamic
   =================================== */

:root {
  --primary: #FF1493;
  --primary-light: #FF69B4;
  --primary-dark: #C71585;
  --secondary: #00D4FF;
  --secondary-light: #7FEFFF;
  --secondary-dark: #00A8CC;
  --accent: #FFD700;
  --accent-light: #FFE55C;
  --accent-dark: #FFA500;
  --text-dark: #1A1A2E;
  --text-light: #FFFFFF;
  --bg-white: #FFFFFF;
  --bg-light: #FFF5F8;
  --bg-gradient: linear-gradient(135deg, #FF1493 0%, #00D4FF 50%, #FFD700 100%);
  --shadow-sm: 0 2px 8px rgba(255, 20, 147, 0.15);
  --shadow-md: 0 4px 16px rgba(0, 212, 255, 0.2);
  --shadow-lg: 0 8px 32px rgba(255, 215, 0, 0.25);
  --border-radius: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */

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

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ===================================
   TYPOGRAPHY - BOLD & ENERGETIC
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', 'Open Sans', sans-serif;
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 16px;
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

h2 {
  font-size: 36px;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.7;
}

.subheadline {
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary-dark);
  line-height: 1.5;
}

strong {
  font-weight: 700;
  color: var(--primary);
}

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

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  cursor: pointer;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--bg-gradient);
  color: var(--text-light);
  box-shadow: var(--shadow-lg);
}

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

.btn-secondary {
  background: var(--bg-white);
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--text-light);
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-lg);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

/* ===================================
   HEADER - VIBRANT & STICKY
   =================================== */

header {
  background: var(--bg-white);
  border-bottom: 4px solid var(--primary);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: slideDown 0.5s ease;
}

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

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

.logo img {
  height: 60px;
  width: auto;
  transition: var(--transition);
}

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

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

.main-nav a {
  font-weight: 700;
  font-size: 16px;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--bg-gradient);
  transition: width 0.3s ease;
}

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

.main-nav a:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

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

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: var(--bg-gradient);
  color: var(--text-light);
  border: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: var(--bg-gradient);
  z-index: 1999;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  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: var(--bg-white);
  color: var(--primary);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.mobile-menu-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: var(--primary);
  color: var(--text-light);
}

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

.mobile-nav a {
  color: var(--text-light);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 16px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  transition: var(--transition);
  text-align: center;
}

.mobile-nav a:hover {
  background: var(--bg-white);
  color: var(--primary);
  transform: translateX(-8px);
}

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

/* ===================================
   HERO SECTIONS - EXPLOSIVE ENERGY
   =================================== */

.hero {
  background: var(--bg-gradient);
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: moveGrid 20s linear infinite;
}

@keyframes moveGrid {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(40px, 40px);
  }
}

.hero .content-wrapper {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero h1 {
  color: var(--text-light);
  background: none;
  -webkit-text-fill-color: var(--text-light);
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  animation: bounceIn 0.8s ease;
}

@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.hero .subheadline {
  color: var(--text-light);
  font-size: 22px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-404 {
  background: var(--bg-gradient);
  padding: 120px 20px;
  text-align: center;
  position: relative;
}

.error-code {
  font-size: 120px;
  font-weight: 900;
  color: var(--text-light);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  margin: 32px 0;
  animation: pulse 2s ease infinite;
}

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

/* ===================================
   SECTIONS - DYNAMIC SPACING
   =================================== */

section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

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

/* ===================================
   CARDS & GRIDS - FLEXBOX ONLY
   =================================== */

.card-container,
.services-grid,
.packages-grid,
.testimonials-grid,
.tech-grid,
.posts-grid,
.articles-grid,
.categories-grid,
.links-grid,
.badges-grid,
.contacts-grid,
.contact-info,
.stats-grid,
.team-grid,
.awards-grid,
.options-grid,
.trends-list,
.scenarios-grid,
.differentiators {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.service-card,
.package-card,
.testimonial-card,
.tech-category,
.post-card,
.article-card,
.category,
.link-card,
.badge,
.contact-item,
.stat-item,
.team-member,
.award,
.option,
.trend-item,
.scenario,
.card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: var(--bg-white);
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  margin-bottom: 20px;
  border: 3px solid transparent;
}

.service-card:hover,
.package-card:hover,
.post-card:hover,
.link-card:hover,
.option:hover,
.card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.service-card::before,
.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--bg-gradient);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.service-card h3,
.package-card h3,
.post-card h3,
.tech-category h3 {
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 24px;
}

.price {
  font-size: 24px;
  font-weight: 900;
  color: var(--accent);
  margin-top: 16px;
  display: block;
}

/* ===================================
   TESTIMONIALS - READABLE CONTRAST
   =================================== */

.testimonial-card {
  background: var(--bg-light);
  border-left: 6px solid var(--primary);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 calc(50% - 24px);
}

.testimonial-card p {
  color: var(--text-dark);
  font-style: italic;
  font-size: 16px;
  line-height: 1.7;
}

.testimonial-card .author {
  font-weight: 700;
  color: var(--primary);
  font-style: normal;
  margin-top: 8px;
}

.rating {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  text-align: center;
  margin-top: 24px;
}

/* ===================================
   TEXT-IMAGE SECTIONS - FLEXBOX
   =================================== */

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.text-image-section > * {
  flex: 1 1 45%;
  min-width: 280px;
}

/* ===================================
   FEATURES & BENEFITS
   =================================== */

.benefits-list,
.values-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.benefits-list li,
.values-list li {
  padding: 16px;
  background: var(--bg-light);
  border-left: 4px solid var(--secondary);
  border-radius: 8px;
  font-size: 16px;
  color: var(--text-dark);
  transition: var(--transition);
}

.benefits-list li:hover,
.values-list li:hover {
  transform: translateX(8px);
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 24px;
  background: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

/* ===================================
   PROCESS & TIMELINE
   =================================== */

.process-steps,
.workflow-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: var(--bg-white);
  padding: 24px;
  border-radius: var(--border-radius);
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--secondary);
  transition: var(--transition);
}

.step:hover {
  transform: scale(1.05);
  border-color: var(--primary);
}

.step h3 {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 12px;
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.milestone {
  flex: 1 1 calc(25% - 16px);
  min-width: 180px;
  background: var(--bg-gradient);
  color: var(--text-light);
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

/* ===================================
   TRUST INDICATORS & STATS
   =================================== */

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

.stat-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: var(--bg-white);
  padding: 32px 24px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--accent);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: var(--shadow-lg);
}

.stat-item strong {
  display: block;
  font-size: 48px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 8px;
}

/* ===================================
   CTA SECTIONS - ATTENTION GRABBING
   =================================== */

.cta-section,
.cta-banner,
.cta-conversion,
.cta-contact {
  background: var(--bg-gradient);
  padding: 60px 20px;
  text-align: center;
  border-radius: var(--border-radius);
  margin: 60px 0;
  box-shadow: var(--shadow-lg);
}

.cta-section h2,
.cta-banner h2,
.cta-conversion h2,
.cta-contact h2 {
  color: var(--text-light);
  background: none;
  -webkit-text-fill-color: var(--text-light);
  margin-bottom: 16px;
}

.cta-section p,
.cta-banner p,
.cta-conversion p,
.cta-contact p {
  color: var(--text-light);
  font-size: 20px;
  margin-bottom: 24px;
}

/* ===================================
   TAGS & CATEGORIES
   =================================== */

.tags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.tag {
  padding: 12px 24px;
  background: var(--bg-white);
  color: var(--primary);
  border-radius: 24px;
  font-weight: 700;
  border: 2px solid var(--primary);
  transition: var(--transition);
  cursor: pointer;
}

.tag:hover {
  background: var(--primary);
  color: var(--text-light);
  transform: scale(1.1);
}

/* ===================================
   FOOTER - BOLD & STRUCTURED
   =================================== */

footer {
  background: var(--text-dark);
  color: var(--text-light);
  padding: 60px 20px 20px;
  margin-top: 80px;
  border-top: 6px solid var(--primary);
}

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

.footer-column {
  flex: 1 1 calc(33.333% - 40px);
  min-width: 250px;
}

.footer-column h3 {
  color: var(--accent);
  margin-bottom: 20px;
  font-size: 20px;
  background: none;
  -webkit-text-fill-color: var(--accent);
}

.footer-column p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.8;
}

.footer-column img {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
}

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

.footer-nav a {
  color: var(--text-light);
  font-size: 14px;
  transition: var(--transition);
  padding: 4px 0;
}

.footer-nav a:hover {
  color: var(--accent);
  transform: translateX(8px);
}

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

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

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  color: var(--text-light);
  padding: 24px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-banner p {
  flex: 1 1 60%;
  margin: 0;
  font-size: 14px;
}

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

.cookie-banner button {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
}

.cookie-accept {
  background: var(--accent);
  color: var(--text-dark);
}

.cookie-accept:hover {
  background: var(--accent-light);
  transform: scale(1.05);
}

.cookie-reject {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.cookie-reject:hover {
  background: var(--text-light);
  color: var(--text-dark);
}

.cookie-settings {
  background: var(--secondary);
  color: var(--text-light);
}

.cookie-settings:hover {
  background: var(--secondary-light);
  transform: scale(1.05);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: var(--bg-white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  z-index: 10000;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.cookie-modal.show {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.cookie-modal h2 {
  color: var(--primary);
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 16px;
  background: var(--bg-light);
  border-radius: 8px;
}

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--secondary);
}

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

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

.cookie-modal-buttons button {
  flex: 1;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

/* ===================================
   LEGAL PAGES - READABLE CONTENT
   =================================== */

.legal-content {
  background: var(--bg-white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
}

.legal-content h2 {
  color: var(--primary);
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content h3 {
  color: var(--secondary);
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content ul,
.legal-content ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.legal-content table th,
.legal-content table td {
  padding: 12px;
  text-align: left;
  border: 1px solid var(--secondary);
}

.legal-content table th {
  background: var(--bg-light);
  color: var(--primary);
  font-weight: 700;
}

/* ===================================
   404 PAGE SPECIFIC
   =================================== */

.error-explanation,
.helpful-links,
.popular-services {
  margin-bottom: 60px;
}

.service-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 240px;
  background: var(--bg-white);
  padding: 24px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  text-align: center;
  font-weight: 700;
  color: var(--primary);
  transition: var(--transition);
  border: 2px solid var(--secondary);
}

.service-item:hover {
  transform: scale(1.05);
  border-color: var(--primary);
}

/* ===================================
   CONTACT PAGE
   =================================== */

.contact-method {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 240px;
  background: var(--bg-light);
  padding: 24px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.contact-method h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

.response-time {
  text-align: center;
  font-weight: 700;
  color: var(--secondary);
  margin-top: 24px;
  font-size: 18px;
}

.form-note {
  background: var(--bg-light);
  padding: 24px;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--accent);
  margin-top: 24px;
}

.faq-item {
  background: var(--bg-white);
  padding: 24px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
  border-left: 4px solid var(--primary);
}

.faq-item h3 {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 12px;
}

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

/* ===================================
   BLOG PAGE
   =================================== */

.meta {
  font-size: 14px;
  color: var(--secondary);
  font-weight: 600;
  margin-top: 12px;
}

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

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .service-card,
  .package-card,
  .testimonial-card,
  .tech-category,
  .post-card,
  .stat-item,
  .step,
  .milestone,
  .contact-method,
  .service-item {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-banner p {
    flex: 1 1 100%;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  .text-image-section {
    flex-direction: column;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  section {
    padding: 32px 16px;
  }
  
  .error-code {
    font-size: 80px;
  }
  
  .stat-item strong {
    font-size: 36px;
  }
}

/* ===================================
   ANIMATIONS & MICRO-INTERACTIONS
   =================================== */

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

.service-card,
.testimonial-card,
.post-card {
  animation: fadeIn 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* ===================================
   ACCESSIBILITY & FOCUS STATES
   =================================== */

*:focus {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

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

@media print {
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-banner,
  .cookie-modal,
  header,
  footer,
  .cta-section,
  .cta-banner {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  a {
    text-decoration: underline;
  }
}

/* ===================================
   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; }

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

/* END OF STYLESHEET */