/* =================================================================
   LumSync - Soft Pastel Design Style CSS
   Comprehensive styles for all pages with mobile menu and cookie banner
   ================================================================= */

/* ===== CSS RESET & NORMALIZE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #4A4A4A;
  background: linear-gradient(135deg, #FFF5F7 0%, #F0F4FF 100%);
  min-height: 100vh;
}

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

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

ul, ol {
  list-style: none;
}

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

/* ===== SOFT PASTEL COLOR PALETTE ===== */
:root {
  --pastel-blue: #B8D4F1;
  --pastel-pink: #FFD1DC;
  --pastel-lavender: #E6E6FA;
  --pastel-mint: #D4F4DD;
  --pastel-peach: #FFE5D9;
  --pastel-yellow: #FFF9C4;
  --text-dark: #4A4A4A;
  --text-light: #7A7A7A;
  --white: #FFFFFF;
  --shadow-soft: rgba(180, 180, 220, 0.15);
  --gradient-dream: linear-gradient(135deg, #FFD1DC 0%, #B8D4F1 100%);
  --gradient-sky: linear-gradient(135deg, #E6E6FA 0%, #D4F4DD 100%);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: #4A4A4A;
  line-height: 1.3;
  margin-bottom: 16px;
  font-weight: 600;
}

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

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

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

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

p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #4A4A4A;
}

/* ===== CONTAINER & LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ===== BUTTONS ===== */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  transition: all 0.4s ease;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 6px 20px var(--shadow-soft);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gradient-dream);
  color: #4A4A4A;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 209, 220, 0.4);
}

.btn-secondary {
  background: #FFFFFF;
  color: #4A4A4A;
  border: 2px solid #FFD1DC;
}

.btn-secondary:hover {
  background: var(--gradient-dream);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--shadow-soft);
}

/* ===== HEADER ===== */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px var(--shadow-soft);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
}

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

.logo img {
  height: 50px;
  width: auto;
}

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #4A4A4A;
  position: relative;
  padding: 8px 0;
}

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

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

.header-cta {
  display: flex;
  gap: 16px;
}

/* ===== MOBILE MENU TOGGLE ===== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: var(--gradient-dream);
  color: #4A4A4A;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 0 6px 20px var(--shadow-soft);
  transition: all 0.3s ease;
}

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

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #FFD1DC 0%, #E6E6FA 100%);
  box-shadow: -5px 0 30px var(--shadow-soft);
  z-index: 1000;
  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;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  font-size: 24px;
  color: #4A4A4A;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px var(--shadow-soft);
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #4A4A4A;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--shadow-soft);
}

.mobile-nav a:hover {
  background: #FFFFFF;
  transform: translateX(10px);
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, #FFD1DC 0%, #E6E6FA 50%, #D4F4DD 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(184, 212, 241, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  color: #4A4A4A;
  margin-bottom: 24px;
  text-shadow: 0 2px 10px rgba(255, 209, 220, 0.3);
}

.hero-subtitle {
  font-size: 18px;
  color: #4A4A4A;
  margin-bottom: 32px;
  line-height: 1.8;
}

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

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

.trust-badges span {
  font-size: 14px;
  color: #4A4A4A;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 25px;
  box-shadow: 0 4px 15px var(--shadow-soft);
  font-weight: 500;
}

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

/* ===== FEATURES SECTION ===== */
.features {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  padding: 60px 20px;
}

.features h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #4A4A4A;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.feature-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 250px;
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px var(--shadow-soft);
  transition: all 0.4s ease;
  margin-bottom: 20px;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(230, 230, 250, 0.4);
}

.feature-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  opacity: 0.8;
}

.feature-card h3 {
  color: #4A4A4A;
  margin-bottom: 16px;
  font-size: 20px;
}

.feature-card p {
  color: #7A7A7A;
  font-size: 15px;
  line-height: 1.6;
}

/* ===== SERVICES PREVIEW SECTION ===== */
.services-preview {
  background: linear-gradient(135deg, #E6E6FA 0%, #FFE5D9 100%);
  border-radius: 30px;
  padding: 60px 20px;
}

.services-preview h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 8px 25px var(--shadow-soft);
  transition: all 0.4s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(255, 209, 220, 0.4);
}

.service-card h3 {
  color: #4A4A4A;
  font-size: 20px;
  margin-bottom: 12px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #4A4A4A;
  font-family: 'Montserrat', sans-serif;
  margin-top: auto;
}

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

/* ===== BENEFITS SECTION ===== */
.benefits {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  padding: 60px 20px;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.benefits-list {
  flex: 1 1 400px;
}

.benefits-list li {
  font-size: 18px;
  color: #4A4A4A;
  padding: 16px 0 16px 40px;
  position: relative;
  line-height: 1.6;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 16px;
  width: 30px;
  height: 30px;
  background: var(--gradient-dream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4A4A4A;
  font-weight: bold;
  font-size: 16px;
}

.statistics {
  flex: 1 1 400px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.stat {
  flex: 1 1 calc(50% - 24px);
  min-width: 150px;
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #4A4A4A;
  font-family: 'Montserrat', sans-serif;
  display: block;
}

.stat-label {
  font-size: 14px;
  color: #7A7A7A;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  background: linear-gradient(135deg, #D4F4DD 0%, #B8D4F1 100%);
  border-radius: 30px;
  padding: 60px 20px;
}

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

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

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background: #FFFFFF;
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: 0 8px 25px var(--shadow-soft);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.testimonial-author {
  font-weight: 600;
  color: #4A4A4A !important;
  font-style: normal !important;
  font-size: 14px !important;
  margin-top: 12px;
}

.rating {
  text-align: center;
  font-size: 16px;
  color: #4A4A4A;
  font-weight: 600;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  box-shadow: 0 4px 15px var(--shadow-soft);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--gradient-dream);
  border-radius: 30px;
  padding: 80px 20px;
  text-align: center;
  box-shadow: 0 10px 40px var(--shadow-soft);
}

.cta-content h2 {
  color: #4A4A4A;
  margin-bottom: 24px;
}

.cta-content p {
  font-size: 18px;
  color: #4A4A4A;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info {
  margin-top: 32px;
  font-size: 16px;
  color: #4A4A4A;
  font-weight: 600;
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, #4A4A4A 0%, #5A5A5A 100%);
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

.footer-col {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-col h4 {
  color: #FFD1DC;
  font-size: 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #FFD1DC;
  padding-left: 8px;
}

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

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

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--gradient-sky);
  padding: 60px 20px 40px;
  border-radius: 0 0 30px 30px;
  margin-bottom: 40px;
}

.breadcrumb {
  font-size: 14px;
  color: #4A4A4A;
  margin-bottom: 20px;
}

.breadcrumb a {
  color: #4A4A4A;
  text-decoration: underline;
}

.breadcrumb a:hover {
  color: #7A7A7A;
}

.page-hero h1 {
  color: #4A4A4A;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #4A4A4A;
}

/* ===== PRODUCTS PAGE ===== */
.products {
  padding: 40px 20px;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.product-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 8px 25px var(--shadow-soft);
  transition: all 0.4s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(230, 230, 250, 0.5);
}

.product-card h3 {
  color: #4A4A4A;
  font-size: 22px;
  margin-bottom: 12px;
}

.product-card p {
  color: #4A4A4A;
  font-size: 15px;
  line-height: 1.6;
}

.product-specs {
  font-size: 14px;
  color: #7A7A7A;
  font-style: italic;
  margin-top: 8px;
}

.product-features {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  padding: 60px 20px;
}

.features-list {
  max-width: 700px;
  margin: 0 auto;
}

.features-list li {
  font-size: 16px;
  color: #4A4A4A;
  padding: 12px 0 12px 35px;
  position: relative;
  line-height: 1.6;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 12px;
  width: 24px;
  height: 24px;
  background: var(--gradient-dream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4A4A4A;
  font-weight: bold;
  font-size: 14px;
}

/* ===== SERVICES PAGE ===== */
.services-detailed {
  padding: 40px 20px;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.service-detail {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background: #FFFFFF;
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: 0 8px 25px var(--shadow-soft);
  transition: all 0.4s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.service-detail:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(255, 209, 220, 0.4);
}

.service-detail h3 {
  color: #4A4A4A;
  font-size: 22px;
  margin-bottom: 12px;
}

.service-packages {
  background: var(--gradient-sky);
  border-radius: 30px;
  padding: 60px 20px;
}

.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.package-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 40px 28px;
  border-radius: 20px;
  box-shadow: 0 8px 25px var(--shadow-soft);
  transition: all 0.4s ease;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(184, 212, 241, 0.5);
}

.package-card.featured {
  background: var(--gradient-dream);
  transform: scale(1.05);
}

.package-card h3 {
  color: #4A4A4A;
  font-size: 24px;
  margin-bottom: 12px;
}

.package-card ul {
  margin-top: 20px;
}

.package-card ul li {
  font-size: 15px;
  color: #4A4A4A;
  padding: 10px 0 10px 30px;
  position: relative;
  line-height: 1.5;
}

.package-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 10px;
  color: #4A4A4A;
  font-weight: bold;
}

.badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: #FFD1DC;
  color: #4A4A4A;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 4px 15px var(--shadow-soft);
}

.guarantees {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  padding: 60px 20px;
}

.guarantees-list {
  max-width: 700px;
  margin: 0 auto;
}

.guarantees-list li {
  font-size: 16px;
  color: #4A4A4A;
  padding: 12px 0 12px 35px;
  position: relative;
  line-height: 1.6;
}

.guarantees-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 12px;
  width: 24px;
  height: 24px;
  background: var(--gradient-dream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4A4A4A;
  font-weight: bold;
  font-size: 14px;
}

/* ===== ABOUT PAGE ===== */
.about-story {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  padding: 60px 20px;
}

.about-story p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.milestone {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: #FFFFFF;
  padding: 24px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 6px 20px var(--shadow-soft);
  font-weight: 600;
  color: #4A4A4A;
  transition: all 0.3s ease;
}

.milestone:hover {
  transform: translateY(-5px);
}

.values {
  background: var(--gradient-sky);
  border-radius: 30px;
  padding: 60px 20px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.value-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px var(--shadow-soft);
  transition: all 0.4s ease;
  margin-bottom: 20px;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(230, 230, 250, 0.4);
}

.value-card h3 {
  color: #4A4A4A;
  font-size: 20px;
  margin-bottom: 12px;
}

.value-card p {
  color: #7A7A7A;
  font-size: 15px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.certifications {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  padding: 60px 20px;
}

.cert-list {
  max-width: 700px;
  margin: 0 auto;
}

.cert-list li {
  font-size: 16px;
  color: #4A4A4A;
  padding: 12px 0 12px 35px;
  position: relative;
  line-height: 1.6;
}

.cert-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 12px;
  width: 24px;
  height: 24px;
  background: var(--gradient-dream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4A4A4A;
  font-weight: bold;
  font-size: 14px;
}

/* ===== REFERENCES PAGE ===== */
.testimonials-detailed {
  padding: 40px 20px;
}

.testimonial-full {
  background: #FFFFFF;
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: 0 8px 25px var(--shadow-soft);
  margin-bottom: 24px;
}

.testimonial-text {
  font-size: 17px;
  line-height: 1.8;
  color: #4A4A4A;
  font-style: italic;
  margin-bottom: 20px;
}

.case-studies {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  padding: 60px 20px;
}

.case-study-card {
  background: #FFFFFF;
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: 0 8px 25px var(--shadow-soft);
  margin-bottom: 24px;
  transition: all 0.4s ease;
}

.case-study-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 209, 220, 0.4);
}

.case-study-card h3 {
  color: #4A4A4A;
  font-size: 22px;
  margin-bottom: 16px;
}

.case-study-card p {
  color: #4A4A4A;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.results-metrics {
  background: var(--gradient-dream);
  border-radius: 30px;
  padding: 60px 20px;
}

.metrics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.metric {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px var(--shadow-soft);
  font-size: 20px;
  font-weight: 600;
  color: #4A4A4A;
  transition: all 0.3s ease;
}

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

.review-platforms {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  padding: 60px 20px;
}

.platforms-list {
  max-width: 700px;
  margin: 0 auto;
}

.platforms-list li {
  font-size: 16px;
  color: #4A4A4A;
  padding: 12px 0 12px 35px;
  position: relative;
  line-height: 1.6;
}

.platforms-list li::before {
  content: '★';
  position: absolute;
  left: 0;
  top: 12px;
  width: 24px;
  height: 24px;
  background: var(--gradient-dream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4A4A4A;
  font-weight: bold;
  font-size: 14px;
}

/* ===== CONTACT PAGE ===== */
.contact-methods {
  padding: 40px 20px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.contact-method {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px var(--shadow-soft);
  transition: all 0.4s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.contact-method:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(184, 212, 241, 0.4);
}

.contact-method img {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
}

.contact-method h3 {
  color: #4A4A4A;
  font-size: 20px;
  margin-bottom: 12px;
}

.contact-method p {
  color: #4A4A4A;
  font-size: 15px;
  line-height: 1.6;
}

.contact-form-section {
  background: var(--gradient-sky);
  border-radius: 30px;
  padding: 60px 20px;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 10px 40px var(--shadow-soft);
}

.form-note {
  font-size: 14px;
  color: #7A7A7A;
  margin-bottom: 24px;
  text-align: center;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-group label {
  font-size: 14px;
  font-weight: 600;
  color: #4A4A4A;
}

.field-group input,
.field-group select,
.field-group textarea {
  padding: 14px 16px;
  border: 2px solid #E6E6FA;
  border-radius: 12px;
  font-size: 15px;
  font-family: 'Open Sans', sans-serif;
  color: #4A4A4A;
  background: #FFFFFF;
  transition: all 0.3s ease;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  outline: none;
  border-color: #FFD1DC;
  box-shadow: 0 0 0 3px rgba(255, 209, 220, 0.2);
}

.field-group input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
}

.office-details,
.response-times {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  padding: 60px 20px;
}

.office-info {
  max-width: 700px;
  margin: 0 auto;
}

.office-info p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.response-list {
  max-width: 700px;
  margin: 0 auto;
}

.response-list li {
  font-size: 16px;
  color: #4A4A4A;
  padding: 12px 0 12px 35px;
  position: relative;
  line-height: 1.6;
}

.response-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 12px;
  width: 24px;
  height: 24px;
  background: var(--gradient-dream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4A4A4A;
  font-weight: bold;
  font-size: 14px;
}

/* ===== LEGAL PAGES ===== */
.legal-content {
  padding: 40px 20px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px var(--shadow-soft);
}

.content-wrapper h2 {
  color: #4A4A4A;
  font-size: 28px;
  margin-top: 32px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD1DC;
  padding-bottom: 12px;
}

.content-wrapper h3 {
  color: #4A4A4A;
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 16px;
}

.content-wrapper p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-wrapper ul {
  margin: 16px 0;
  padding-left: 24px;
}

.content-wrapper ul li {
  font-size: 16px;
  color: #4A4A4A;
  line-height: 1.7;
  margin-bottom: 8px;
  list-style: disc;
}

/* ===== THANK YOU PAGE ===== */
.thank-you-hero {
  background: var(--gradient-dream);
  padding: 100px 20px 80px;
  text-align: center;
  border-radius: 0 0 30px 30px;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #4A4A4A;
  margin: 0 auto 32px;
  box-shadow: 0 10px 40px var(--shadow-soft);
}

.thank-you-hero h1 {
  color: #4A4A4A;
  margin-bottom: 16px;
}

.subtitle {
  font-size: 20px;
  color: #4A4A4A;
  font-weight: 600;
}

.confirmation {
  padding: 60px 20px;
}

.confirmation-box {
  max-width: 700px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 10px 40px var(--shadow-soft);
}

.confirmation-box h3 {
  color: #4A4A4A;
  margin-top: 24px;
  margin-bottom: 16px;
}

.steps-list {
  counter-reset: step-counter;
  margin: 24px 0;
}

.steps-list li {
  font-size: 16px;
  color: #4A4A4A;
  padding: 12px 0 12px 50px;
  position: relative;
  line-height: 1.6;
  counter-increment: step-counter;
}

.steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 12px;
  width: 32px;
  height: 32px;
  background: var(--gradient-dream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4A4A4A;
  font-weight: bold;
  font-size: 16px;
}

.urgent-contact {
  background: var(--gradient-sky);
  border-radius: 30px;
  padding: 60px 20px;
  text-align: center;
}

.related-links {
  padding: 60px 20px;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.link-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px var(--shadow-soft);
  font-weight: 600;
  color: #4A4A4A;
  transition: all 0.4s ease;
}

.link-card:hover {
  transform: translateY(-10px);
  background: var(--gradient-dream);
  box-shadow: 0 15px 40px rgba(255, 209, 220, 0.4);
}

.social-proof {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  padding: 60px 20px;
}

.links-inline {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
}

.links-inline a {
  color: #4A4A4A;
  font-weight: 600;
  text-decoration: underline;
}

.links-inline a:hover {
  color: #7A7A7A;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #FFD1DC 0%, #E6E6FA 100%);
  padding: 24px 20px;
  box-shadow: 0 -5px 30px var(--shadow-soft);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

.cookie-text {
  flex: 1 1 400px;
  color: #4A4A4A;
  font-size: 15px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cookie-btn.accept {
  background: #FFFFFF;
  color: #4A4A4A;
  border-color: #4A4A4A;
}

.cookie-btn.accept:hover {
  background: #4A4A4A;
  color: #FFFFFF;
}

.cookie-btn.reject {
  background: transparent;
  color: #4A4A4A;
  border-color: #4A4A4A;
}

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

.cookie-btn.settings {
  background: transparent;
  color: #4A4A4A;
  text-decoration: underline;
}

/* ===== COOKIE MODAL ===== */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(74, 74, 74, 0.8);
  backdrop-filter: blur(5px);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-content {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F7 100%);
  border-radius: 30px;
  padding: 40px 32px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.4s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.cookie-modal-header h3 {
  color: #4A4A4A;
  font-size: 24px;
}

.cookie-modal-close {
  width: 36px;
  height: 36px;
  background: rgba(74, 74, 74, 0.1);
  border-radius: 50%;
  font-size: 20px;
  color: #4A4A4A;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #4A4A4A;
  color: #FFFFFF;
  transform: rotate(90deg);
}

.cookie-category {
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 16px;
  border: 2px solid #E6E6FA;
}

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

.cookie-category h4 {
  color: #4A4A4A;
  font-size: 18px;
  margin: 0;
}

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

.cookie-toggle.active {
  background: var(--gradient-dream);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

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

.cookie-category p {
  font-size: 14px;
  color: #7A7A7A;
  line-height: 1.5;
  margin: 0;
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  h1 { font-size: 40px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  
  .feature-card,
  .product-card,
  .package-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .stat {
    flex: 1 1 calc(50% - 24px);
  }
}

@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Cards to full width on mobile */
  .feature-card,
  .service-card,
  .product-card,
  .package-card,
  .contact-method,
  .value-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Benefits layout */
  .benefits-content {
    flex-direction: column;
  }
  
  .statistics {
    width: 100%;
  }
  
  .stat {
    flex: 1 1 calc(50% - 24px);
  }
  
  /* Footer columns stack */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-col {
    width: 100%;
  }
  
  /* Cookie banner stacks */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1 1 auto;
  }
  
  /* Modal adjustments */
  .cookie-modal-content {
    padding: 32px 24px;
  }
  
  /* Form adjustments */
  .form-container {
    padding: 32px 24px;
  }
  
  /* Content wrapper */
  .content-wrapper {
    padding: 40px 24px;
  }
  
  /* Thank you page */
  .thank-you-hero {
    padding: 80px 20px 60px;
  }
  
  .success-icon {
    width: 80px;
    height: 80px;
    font-size: 50px;
  }
  
  .links-grid .link-card {
    flex: 1 1 calc(50% - 24px);
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  h3 { font-size: 18px; }
  
  .container {
    padding: 0 16px;
  }
  
  section {
    padding: 32px 16px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 15px;
  }
  
  .hero h1 {
    font-size: 26px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .stat {
    flex: 1 1 100%;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .mobile-menu {
    width: 90%;
    padding: 70px 24px 24px;
  }
  
  .cookie-modal {
    padding: 12px;
  }
  
  .cookie-modal-content {
    padding: 24px 20px;
  }
  
  .links-grid .link-card {
    flex: 1 1 100%;
  }
  
  .milestone,
  .metric {
    flex: 1 1 100%;
  }
}

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

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

/* Smooth scrolling for all browsers */
html {
  scroll-behavior: smooth;
}

/* Selection styling */
::selection {
  background: #FFD1DC;
  color: #4A4A4A;
}

/* Focus states for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #FFD1DC;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }
}