/* ===================================
   SOFT PASTEL DESIGN SYSTEM - CSS RESET & BASE
   Using ONLY FLEXBOX layouts (NO CSS Grid)
   =================================== */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.7;
  color: #5D5570;
  background: linear-gradient(135deg, #FFF5F7 0%, #F0E6FF 100%);
  overflow-x: hidden;
}

/* ===================================
   SOFT PASTEL COLOR PALETTE
   =================================== */
:root {
  --pastel-pink: #FFB7C5;
  --pastel-lavender: #E0BBE4;
  --pastel-mint: #C7E9F5;
  --pastel-peach: #FFC8A2;
  --pastel-yellow: #FFF4A3;
  --text-primary: #5D5570;
  --text-secondary: #8B7FA8;
  --white: #FFFFFF;
  --soft-shadow: rgba(189, 157, 219, 0.15);
  --hover-shadow: rgba(189, 157, 219, 0.25);
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
}

/* ===================================
   TYPOGRAPHY - SOFT PASTEL STYLE
   =================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: #5D5570;
  margin-bottom: var(--spacing-md);
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 32px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: var(--spacing-sm);
  color: #5D5570;
}

a {
  color: var(--pastel-lavender);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--pastel-pink);
}

ul {
  list-style: none;
}

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

/* ===================================
   CONTAINER & LAYOUT - FLEXBOX ONLY
   =================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  width: 100%;
}

/* ===================================
   HEADER - SOFT PASTEL
   =================================== */
header {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(224, 187, 228, 0.2) 100%);
  backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 24px var(--soft-shadow);
  padding: var(--spacing-sm) 0;
  border-bottom: 3px solid var(--pastel-lavender);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

header img {
  height: 50px;
  filter: drop-shadow(2px 2px 8px var(--soft-shadow));
}

header nav {
  display: flex;
  gap: var(--spacing-lg);
  align-items: center;
  flex-wrap: wrap;
}

header nav a {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 16px;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  position: relative;
}

header nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pastel-pink), var(--pastel-lavender));
  transition: width 0.3s ease;
  border-radius: 2px;
}

header nav a:hover {
  color: var(--pastel-pink);
  background: rgba(255, 183, 197, 0.1);
}

header nav a:hover::after {
  width: 80%;
}

.cta-button {
  background: linear-gradient(135deg, var(--pastel-pink) 0%, var(--pastel-lavender) 100%);
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  box-shadow: 0 6px 20px var(--soft-shadow);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--hover-shadow);
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-pink) 100%);
}

/* ===================================
   MOBILE MENU - SOFT PASTEL
   =================================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 6px 24px var(--soft-shadow);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(224, 187, 228, 0.95) 100%);
  backdrop-filter: blur(20px);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -8px 0 32px var(--soft-shadow);
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--pastel-pink);
  color: var(--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;
}

.mobile-menu-close:hover {
  background: var(--pastel-lavender);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-xl);
}

.mobile-nav a {
  color: var(--text-primary);
  padding: var(--spacing-sm);
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 18px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.5);
}

.mobile-nav a:hover {
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  color: var(--white);
  transform: translateX(8px);
}

/* ===================================
   HERO SECTION - DREAMY PASTEL
   =================================== */
.hero {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(135deg, rgba(255, 245, 247, 0.9) 0%, rgba(240, 230, 255, 0.9) 100%);
  margin-bottom: var(--spacing-xl);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 183, 197, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(224, 187, 228, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

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

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

.hero h1 {
  font-size: 56px;
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-md);
}

.subheadline {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto var(--spacing-lg);
  line-height: 1.8;
}

.cta-group {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-xl);
}

.btn-primary, .btn-secondary, .btn-primary-large {
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  color: var(--white);
  box-shadow: 0 6px 20px var(--soft-shadow);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--hover-shadow);
  background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-pink));
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-primary);
  border: 2px solid var(--pastel-lavender);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, rgba(255, 183, 197, 0.2), rgba(224, 187, 228, 0.2));
  transform: translateY(-4px);
  border-color: var(--pastel-pink);
}

.btn-primary-large {
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  color: var(--white);
  padding: 20px 48px;
  font-size: 18px;
  box-shadow: 0 8px 28px var(--soft-shadow);
}

.btn-primary-large:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px var(--hover-shadow);
}

.trust-indicators {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

.indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px var(--soft-shadow);
  min-width: 150px;
}

.indicator .number {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.indicator .label {
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
}

/* ===================================
   SECTIONS - SOFT PASTEL SPACING
   =================================== */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.services-preview, .why-us, .testimonials, .cta-banner,
.company-story, .stats, .quality-promise, .cta-section,
.services-detailed, .process, .portfolio, .success-metrics,
.pricing-intro, .pricing-table, .pricing-factors, .payment-terms,
.contact-info, .contact-methods, .faq-contact, .map-section,
.legal-content, .thank-you-hero, .next-steps, .meanwhile,
.contact-reminder, .quick-links {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.page-hero {
  padding: var(--spacing-xl) var(--spacing-md);
  background: linear-gradient(135deg, rgba(255, 245, 247, 0.8) 0%, rgba(240, 230, 255, 0.8) 100%);
  text-align: center;
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-xl);
  box-shadow: 0 8px 32px var(--soft-shadow);
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto var(--spacing-xl);
}

/* ===================================
   CARDS - SOFT PASTEL STYLE
   =================================== */
.card-container, .services-grid, .benefits-grid, .testimonials-grid,
.stats-grid, .process-steps, .metrics-grid, .info-grid, .methods-grid,
.links-grid, .footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.card, .service-card, .benefit, .testimonial-card, .stat-item,
.step, .metric, .info-card, .method-card, .link-card, .project-card,
.service-item, .price-item, .faq-item, .footer-col {
  margin-bottom: 20px;
  position: relative;
}

.service-card, .benefit {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 244, 163, 0.3) 100%);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  box-shadow: 0 6px 24px var(--soft-shadow);
  transition: all 0.3s ease;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.service-card:hover, .benefit:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px var(--hover-shadow);
  background: linear-gradient(135deg, rgba(255, 244, 163, 0.4) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.service-card h3, .benefit h3 {
  color: var(--text-primary);
  font-size: 22px;
  margin-bottom: var(--spacing-sm);
}

.service-card .price, .price-tag {
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  display: inline-block;
  margin-top: auto;
  align-self: flex-start;
}

/* ===================================
   TESTIMONIALS - READABLE CONTRAST
   =================================== */
.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  box-shadow: 0 6px 24px var(--soft-shadow);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  border-left: 4px solid var(--pastel-lavender);
}

.testimonial-card p {
  font-style: italic;
  color: #4A4058;
  font-size: 16px;
  line-height: 1.8;
}

.client-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
}

.client-info strong {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 16px;
}

.client-info span {
  color: var(--text-secondary);
  font-size: 14px;
}

/* ===================================
   STATS & METRICS - PASTEL
   =================================== */
.stats, .success-metrics {
  background: linear-gradient(135deg, rgba(255, 183, 197, 0.15) 0%, rgba(224, 187, 228, 0.15) 100%);
  padding: var(--spacing-xl) var(--spacing-md);
  border-radius: var(--radius-lg);
}

.stat-item, .metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px var(--soft-shadow);
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
}

.stat-number, .metric-number {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label, .metric-label {
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
}

/* ===================================
   PROJECT CARDS & SERVICE ITEMS
   =================================== */
.project-card, .service-item, .price-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(199, 233, 245, 0.3) 100%);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  box-shadow: 0 6px 24px var(--soft-shadow);
  margin-bottom: var(--spacing-md);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.project-card:hover, .service-item:hover, .price-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--hover-shadow);
}

.project-meta {
  color: var(--text-secondary);
  font-size: 14px;
  font-style: italic;
}

/* ===================================
   PROCESS STEPS - FLEXBOX
   =================================== */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--spacing-md);
}

.step, .step-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background: rgba(255, 255, 255, 0.9);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px var(--soft-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  text-align: center;
}

.step-number, .step-num {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  box-shadow: 0 4px 16px var(--soft-shadow);
}

/* ===================================
   FAQ - SOFT PASTEL
   =================================== */
.faq-item {
  background: rgba(255, 255, 255, 0.9);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
  box-shadow: 0 4px 16px var(--soft-shadow);
  border-left: 4px solid var(--pastel-mint);
}

.faq-item h3 {
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
}

/* ===================================
   INFO CARDS - CONTACT
   =================================== */
.info-card, .method-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 200, 162, 0.3) 100%);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  box-shadow: 0 6px 24px var(--soft-shadow);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  text-align: center;
}

/* ===================================
   THANK YOU PAGE - SPECIAL
   =================================== */
.thank-you-hero {
  padding: var(--spacing-xl) var(--spacing-md);
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--pastel-mint), var(--pastel-lavender));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  margin: 0 auto var(--spacing-lg);
  box-shadow: 0 8px 32px var(--soft-shadow);
  animation: scaleIn 0.6s ease;
}

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

.confirmation-text {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-sm);
}

/* ===================================
   CTA BANNER - PROMINENT
   =================================== */
.cta-banner, .cta-section {
  background: linear-gradient(135deg, var(--pastel-pink) 0%, var(--pastel-lavender) 50%, var(--pastel-mint) 100%);
  padding: var(--spacing-xl) var(--spacing-md);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 12px 48px var(--hover-shadow);
  margin-bottom: var(--spacing-xl);
}

.cta-banner h2, .cta-section h2 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: var(--spacing-md);
}

.cta-banner p, .cta-section p {
  color: var(--white);
  font-size: 18px;
  margin-bottom: var(--spacing-lg);
}

.urgency {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: var(--spacing-md);
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================================
   FOOTER - SOFT PASTEL
   =================================== */
footer {
  background: linear-gradient(135deg, rgba(93, 85, 112, 0.95) 0%, rgba(139, 127, 168, 0.9) 100%);
  color: var(--white);
  padding: var(--spacing-xl) 0 var(--spacing-md);
  margin-top: var(--spacing-xl);
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xl);
  justify-content: space-between;
  margin-bottom: var(--spacing-lg);
}

.footer-col {
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.footer-col h4 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: var(--spacing-sm);
}

.footer-col p, .footer-col li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.8;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-col a:hover {
  color: var(--pastel-pink);
  transform: translateX(4px);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

/* ===================================
   UTILITY CLASSES
   =================================== */
.link-more {
  color: var(--pastel-lavender);
  font-weight: 600;
  display: inline-block;
  margin-top: var(--spacing-sm);
  transition: all 0.3s ease;
}

.link-more:hover {
  color: var(--pastel-pink);
  transform: translateX(6px);
}

.values ul, .factors-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.values li, .factors-list li {
  padding: var(--spacing-sm);
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--pastel-mint);
}

/* ===================================
   COOKIE CONSENT BANNER - SOFT PASTEL
   =================================== */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(224, 187, 228, 0.95) 100%);
  backdrop-filter: blur(20px);
  padding: var(--spacing-md);
  box-shadow: 0 -8px 32px var(--soft-shadow);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid var(--pastel-lavender);
}

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

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

.cookie-text {
  flex: 1 1 60%;
  min-width: 300px;
  color: var(--text-primary);
}

.cookie-buttons {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 14px;
}

.cookie-accept {
  background: linear-gradient(135deg, var(--pastel-mint), var(--pastel-lavender));
  color: var(--white);
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--soft-shadow);
}

.cookie-reject {
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-primary);
  border: 2px solid var(--pastel-lavender);
}

.cookie-settings {
  background: transparent;
  color: var(--pastel-lavender);
  text-decoration: underline;
}

/* Cookie Modal */
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(93, 85, 112, 0.8);
  backdrop-filter: blur(10px);
  z-index: 2001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md);
}

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

.modal-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 230, 255, 0.95) 100%);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.3);
}

.cookie-category {
  margin-bottom: var(--spacing-md);
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

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

.cookie-toggle.active {
  background: linear-gradient(135deg, var(--pastel-mint), var(--pastel-lavender));
}

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

.cookie-toggle.active::after {
  left: 27px;
}

/* ===================================
   RESPONSIVE DESIGN - MOBILE FIRST
   =================================== */
@media (max-width: 768px) {
  /* Typography adjustments */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 42px; }
  
  /* Hide desktop nav, show mobile menu */
  header nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Adjust card layouts */
  .service-card, .benefit, .testimonial-card,
  .stat-item, .metric, .step, .step-item,
  .info-card, .method-card, .footer-col {
    flex: 1 1 100%;
  }
  
  /* Spacing adjustments */
  .section, section {
    padding: var(--spacing-md) var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
  }
  
  /* CTA buttons */
  .cta-group, .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-primary, .btn-secondary, .btn-primary-large {
    width: 100%;
    text-align: center;
  }
  
  /* Cookie banner mobile */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-text {
    flex: 1 1 100%;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Footer mobile */
  .footer-columns {
    flex-direction: column;
    gap: var(--spacing-lg);
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .service-card, .benefit, .stat-item, .metric {
    flex: 1 1 calc(50% - 24px);
  }
  
  .step, .step-item {
    flex: 1 1 calc(50% - 24px);
  }
}

/* ===================================
   ANIMATIONS & TRANSITIONS
   =================================== */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Smooth scroll appearance */
.animate-in {
  animation: slideInUp 0.6s ease forwards;
}

/* Focus states for accessibility */
a:focus, button:focus {
  outline: 3px solid var(--pastel-lavender);
  outline-offset: 3px;
}

/* Print styles */
@media print {
  header, footer, .mobile-menu-toggle, .mobile-menu, #cookie-consent {
    display: none;
  }
}