/* ============================================
   RADIANT MOSAIC - CREATIVE ARTISTIC STYLES
   Design Style: Creative & Artistic
   ============================================ */

/* ============================================
   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', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.7;
  color: #2D3748;
  background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #1E3A8A 0%, #7C3AED 50%, #F59E0B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
  font-size: 36px;
  color: #1E3A8A;
  position: relative;
  padding-bottom: 16px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #F59E0B 0%, #7C3AED 100%);
  border-radius: 2px;
}

h3 {
  font-size: 24px;
  color: #2D3748;
}

h4 {
  font-size: 20px;
  color: #1E3A8A;
}

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

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

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

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

.text-section {
  max-width: 800px;
  margin: 0 auto;
}

/* ============================================
   CREATIVE BUTTONS
   ============================================ */
.btn-primary, .btn-secondary, .btn-link {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  transition: all 0.4s ease;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before,
.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
  transition: left 0.5s ease;
  z-index: -1;
}

.btn-primary {
  background: linear-gradient(135deg, #1E3A8A 0%, #7C3AED 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(30, 58, 138, 0.4);
}

.btn-primary:hover::before {
  left: 0;
}

.btn-secondary {
  background: transparent;
  color: #1E3A8A;
  border: 2px solid #1E3A8A;
}

.btn-secondary:hover {
  background: #1E3A8A;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}

.btn-link {
  padding: 8px 0;
  color: #7C3AED;
  font-weight: 600;
  background: none;
  border: none;
  position: relative;
}

.btn-link::after {
  content: ' →';
  transition: transform 0.3s ease;
  display: inline-block;
}

.btn-link:hover::after {
  transform: translateX(5px);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header {
  background: linear-gradient(135deg, #FFFFFF 0%, #F7FAFC 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

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

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05) rotate(-2deg);
}

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #2D3748;
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #F59E0B 0%, #7C3AED 100%);
  transition: width 0.3s ease;
  border-radius: 2px;
}

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

.header-cta {
  display: flex;
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2000;
  background: linear-gradient(135deg, #1E3A8A 0%, #7C3AED 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, #1E3A8A 0%, #7C3AED 100%);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

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

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

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #FFFFFF;
  padding: 16px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(10px);
}

/* ============================================
   HERO SECTION - CREATIVE ARTISTIC
   ============================================ */
.hero {
  background: linear-gradient(135deg, #1E3A8A 0%, #7C3AED 50%, #F59E0B 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

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

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

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

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

.hero h1 {
  color: #FFFFFF;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  background: none;
  -webkit-text-fill-color: #FFFFFF;
}

.subheadline {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-intro {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 32px;
}

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

.hero-cta .btn-primary {
  background: #FFFFFF;
  color: #1E3A8A;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

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

.hero-cta .btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  backdrop-filter: blur(10px);
}

.hero-cta .btn-secondary:hover {
  background: #FFFFFF;
  color: #1E3A8A;
}

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, #7C3AED 0%, #F59E0B 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.page-hero h1 {
  color: #FFFFFF;
  position: relative;
  z-index: 10;
  -webkit-text-fill-color: #FFFFFF;
}

.last-updated,
.hero-intro {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  position: relative;
  z-index: 10;
}

/* ============================================
   TRUST BAR & STATISTICS
   ============================================ */
.trust-bar {
  background: #FFFFFF;
  padding: 48px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 60px;
}

.trust-stats {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.stat-item {
  text-align: center;
  flex: 1 1 200px;
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, #1E3A8A 0%, #7C3AED 50%, #F59E0B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

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

/* ============================================
   CARD LAYOUTS - FLEXBOX ONLY
   ============================================ */
.services-grid,
.benefits-grid,
.testimonial-grid,
.expertise-grid,
.categories-grid,
.research-grid,
.articles-grid,
.contact-grid,
.rights-grid,
.cookies-grid,
.faq-list,
.process-steps,
.stats-grid,
.timeline-steps,
.action-cards,
.explore-cards,
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.service-card,
.service-card-detail,
.benefit-item,
.testimonial-card,
.expertise-item,
.category-card,
.research-card,
.article-card,
.contact-card,
.right-card,
.cookie-category,
.faq-item,
.process-step,
.stat-box,
.timeline-step,
.action-card,
.explore-card,
.step-card {
  flex: 1 1 300px;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.service-card::before,
.service-card-detail::before,
.benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #F59E0B 0%, #7C3AED 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover,
.service-card-detail:hover,
.benefit-item:hover,
.category-card:hover,
.research-card:hover,
.article-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(124, 58, 237, 0.2);
}

.service-card:hover::before,
.service-card-detail:hover::before,
.benefit-item:hover::before {
  transform: scaleX(1);
}

.service-card h3,
.service-card-detail h2,
.benefit-item h3,
.category-card h3 {
  color: #1E3A8A;
  margin-bottom: 16px;
}

.service-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #F59E0B;
  margin: 20px 0;
}

.service-features ul {
  margin: 20px 0;
  padding-left: 0;
}

.service-features li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #4A5568;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #7C3AED;
  font-weight: 700;
}

/* ============================================
   TESTIMONIALS - READABLE CONTRAST
   ============================================ */
.testimonials {
  background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
  padding: 80px 20px;
}

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

.testimonial-card {
  background: #FFFFFF;
  border-left: 4px solid #F59E0B;
  padding: 32px;
  margin-bottom: 24px;
  position: relative;
}

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

.testimonial-card p {
  font-size: 16px;
  color: #2D3748;
  line-height: 1.8;
  margin-bottom: 20px;
  padding-left: 40px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 40px;
}

.testimonial-author strong {
  color: #1E3A8A;
  font-size: 16px;
}

.testimonial-author span {
  color: #4A5568;
  font-size: 14px;
}

/* ============================================
   CTA SECTIONS
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, #1E3A8A 0%, #7C3AED 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.3) 0%, transparent 70%);
  border-radius: 50%;
}

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

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

.cta-content h2::after {
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255,255,255,0.5) 100%);
  left: 50%;
  transform: translateX(-50%);
}

.cta-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-content .btn-primary {
  background: #FFFFFF;
  color: #1E3A8A;
  margin-bottom: 32px;
}

.contact-info {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  font-size: 14px;
}

/* ============================================
   MISSION & VISION BOXES
   ============================================ */
.mission-vision {
  padding: 80px 20px;
}

.mission-box,
.vision-box {
  background: linear-gradient(135deg, #FFFFFF 0%, #F7FAFC 100%);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 32px;
  border-left: 5px solid #F59E0B;
}

.vision-box {
  border-left-color: #7C3AED;
}

/* ============================================
   PROCESS & TIMELINE
   ============================================ */
.process-section,
.confirmation-details {
  padding: 80px 20px;
  background: #FFFFFF;
}

.process-section h2,
.confirmation-details h2 {
  text-align: center;
  margin-bottom: 48px;
}

.process-steps,
.timeline-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  position: relative;
}

.process-step,
.timeline-step {
  flex: 1 1 220px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #7C3AED 0%, #F59E0B 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

/* ============================================
   BLOG & ARTICLES
   ============================================ */
.featured-post {
  padding: 60px 20px;
  background: linear-gradient(135deg, #F7FAFC 0%, #FFFFFF 100%);
}

.featured-article {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: relative;
}

.featured-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: linear-gradient(135deg, #F59E0B 0%, #7C3AED 100%);
  color: #FFFFFF;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #718096;
}

.article-date,
.article-category,
.reading-time,
.research-date,
.research-category {
  display: inline-block;
  padding: 6px 14px;
  background: #EDF2F7;
  border-radius: 12px;
  font-weight: 600;
}

.article-category,
.research-category {
  background: linear-gradient(135deg, #7C3AED20 0%, #F59E0B20 100%);
  color: #7C3AED;
}

.article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #E2E8F0;
}

/* ============================================
   RESEARCH METADATA
   ============================================ */
.research-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

/* ============================================
   CONTACT FORM PLACEHOLDERS
   ============================================ */
.form-container {
  max-width: 700px;
  margin: 40px auto;
}

.form-intro {
  background: #EDF2F7;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 32px;
  border-left: 4px solid #7C3AED;
}

.contact-form-placeholder {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

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

.form-field label {
  display: block;
  font-weight: 600;
  color: #2D3748;
  margin-bottom: 8px;
  font-size: 15px;
}

.input-placeholder,
.textarea-placeholder {
  width: 100%;
  height: 48px;
  background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
  border: 2px solid #E2E8F0;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.textarea-placeholder {
  height: 120px;
}

.input-placeholder:hover,
.textarea-placeholder:hover {
  border-color: #7C3AED;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.1);
}

.checkbox-placeholder {
  width: 20px;
  height: 20px;
  background: #F7FAFC;
  border: 2px solid #E2E8F0;
  border-radius: 4px;
  display: inline-block;
  margin-right: 12px;
  vertical-align: middle;
}

.form-submit {
  margin-top: 32px;
}

.button-placeholder {
  background: linear-gradient(135deg, #1E3A8A 0%, #7C3AED 100%);
  color: #FFFFFF;
  padding: 16px 40px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.button-placeholder:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(30, 58, 138, 0.4);
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #7C3AED 0%, #F59E0B 100%);
}

.newsletter-box {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.newsletter-benefits {
  text-align: left;
  margin: 32px 0;
}

.newsletter-benefits ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-benefits li {
  padding-left: 32px;
  position: relative;
  color: #2D3748;
}

.newsletter-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #7C3AED;
  font-weight: 700;
  font-size: 18px;
}

.privacy-note {
  font-size: 13px;
  color: #718096;
  margin-top: 24px;
}

.privacy-note a {
  color: #7C3AED;
  text-decoration: underline;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thank-you-hero {
  background: linear-gradient(135deg, #7C3AED 0%, #F59E0B 100%);
  padding: 120px 20px;
  text-align: center;
}

.success-content {
  max-width: 600px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
  animation: scaleIn 0.5s ease;
}

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

.confirmation-message {
  font-size: 18px;
  color: #4A5568;
  margin-bottom: 32px;
}

/* ============================================
   LEGAL CONTENT
   ============================================ */
.legal-content {
  padding: 60px 20px;
  background: #FFFFFF;
}

.legal-content h2 {
  margin-top: 48px;
  margin-bottom: 24px;
}

.legal-content h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: #7C3AED;
}

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

.legal-content li {
  list-style: disc;
  color: #4A5568;
  margin-bottom: 8px;
  padding-left: 8px;
}

.legal-content a {
  color: #7C3AED;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #F59E0B;
}

.methodology-list {
  padding-left: 0;
}

.methodology-list li {
  list-style: none;
  padding: 12px 0 12px 32px;
  position: relative;
  color: #2D3748;
  border-left: 3px solid #F59E0B;
  margin-bottom: 12px;
  padding-left: 20px;
}

.methodology-list li::before {
  content: '→';
  position: absolute;
  left: 8px;
  color: #7C3AED;
  font-weight: 700;
}

/* ============================================
   STATISTICS SECTION
   ============================================ */
.statistics-section,
.social-proof {
  padding: 80px 20px;
  background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
}

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

.stat-box,
.trust-item {
  flex: 1 1 250px;
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.stat-box:hover,
.trust-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(124, 58, 237, 0.2);
}

.stat-box .stat-number,
.trust-value {
  font-size: 56px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  background: linear-gradient(135deg, #1E3A8A 0%, #7C3AED 50%, #F59E0B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.stat-box p,
.trust-item p {
  color: #4A5568;
  font-weight: 600;
  font-size: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: linear-gradient(135deg, #1A202C 0%, #2D3748 100%);
  color: #E2E8F0;
  padding: 60px 20px 24px;
  margin-top: 80px;
}

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

.footer-col {
  flex: 1 1 220px;
}

.footer-col h4 {
  color: #FFFFFF;
  margin-bottom: 20px;
  font-size: 18px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #F59E0B 0%, #7C3AED 100%);
  border-radius: 2px;
}

.footer-col p {
  color: #CBD5E0;
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-col a {
  color: #CBD5E0;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-col a:hover {
  color: #F59E0B;
  transform: translateX(5px);
}

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

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

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1E3A8A 0%, #7C3AED 100%);
  color: #FFFFFF;
  padding: 24px;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-consent-text {
  flex: 1 1 400px;
}

.cookie-consent-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cookie-btn-accept {
  background: #FFFFFF;
  color: #1E3A8A;
}

.cookie-btn-accept:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

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

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

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1999;
  padding: 20px;
}

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

.cookie-modal-content {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.cookie-modal-header h3 {
  color: #1E3A8A;
  margin: 0;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #718096;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  color: #1E3A8A;
  transform: rotate(90deg);
}

.cookie-category-setting {
  padding: 20px;
  background: #F7FAFC;
  border-radius: 12px;
  margin-bottom: 16px;
}

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

.cookie-category-header h4 {
  margin: 0;
  color: #2D3748;
}

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

.cookie-toggle.active {
  background: #7C3AED;
}

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

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

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

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

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

.cookie-modal-buttons .btn-primary,
.cookie-modal-buttons .btn-secondary {
  flex: 1 1 auto;
}

/* ============================================
   SECTION-SPECIFIC SPACING
   ============================================ */
.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #4A5568;
}

.services-overview,
.value-proposition,
.company-story,
.expertise-areas,
.methodology,
.research-categories,
.featured-research,
.blog-grid,
.services-detail,
.cookie-explanation,
.cookie-categories,
.cookie-management,
.mission-vision,
.response-promise,
.faq-quick,
.contact-methods,
.contact-form-section,
.consultation-booking,
.next-actions,
.contact-alternative,
.rights-overview,
.disclaimer,
.dispute-resolution,
.company-details,
.responsible-person,
.next-steps,
.explore-more,
.contact-info {
  padding: 60px 20px;
}

.services-overview h2,
.value-proposition h2,
.research-categories h2,
.featured-research h2,
.blog-grid h2 {
  text-align: center;
  margin-bottom: 16px;
}

/* ============================================
   COOKIE DURATION & METADATA
   ============================================ */
.cookie-duration {
  font-size: 13px;
  color: #7C3AED;
  font-weight: 600;
  margin-top: 12px;
}

/* ============================================
   AVAILABILITY INFO
   ============================================ */
.availability-info,
.booking-benefits {
  background: #F7FAFC;
  padding: 24px;
  border-radius: 12px;
  margin-top: 24px;
  border-left: 4px solid #7C3AED;
}

.booking-benefits ul {
  margin-top: 16px;
  padding-left: 0;
}

.booking-benefits li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #2D3748;
}

.booking-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #7C3AED;
  font-weight: 700;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero {
    padding: 60px 20px;
  }

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

  .subheadline,
  .hero-intro {
    font-size: 16px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .trust-stats {
    flex-direction: column;
    gap: 32px;
  }

  .services-grid,
  .benefits-grid,
  .testimonial-grid,
  .expertise-grid,
  .categories-grid,
  .research-grid,
  .articles-grid,
  .contact-grid,
  .rights-grid,
  .cookies-grid,
  .process-steps,
  .stats-grid,
  .timeline-steps,
  .action-cards,
  .explore-cards,
  .steps-grid {
    flex-direction: column;
  }

  .service-card,
  .service-card-detail,
  .benefit-item,
  .testimonial-card,
  .expertise-item,
  .category-card,
  .research-card,
  .article-card,
  .contact-card,
  .right-card,
  .cookie-category,
  .faq-item,
  .process-step,
  .stat-box,
  .timeline-step,
  .action-card,
  .explore-card,
  .step-card {
    flex: 1 1 100%;
  }

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

  .cookie-consent-content {
    flex-direction: column;
  }

  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
  }

  .cookie-modal-content {
    padding: 24px;
  }

  .featured-article {
    padding: 32px 24px;
  }

  .newsletter-box {
    padding: 32px 24px;
  }

  .success-content {
    padding: 40px 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .main-nav {
    gap: 20px;
  }

  .main-nav a {
    font-size: 14px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }
}

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

.service-card,
.benefit-item,
.testimonial-card,
.article-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; }

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

.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  header,
  footer,
  .cookie-consent,
  .cookie-modal,
  .btn-primary,
  .btn-secondary,
  .hero-cta {
    display: none !important;
  }

  body {
    background: #FFFFFF;
  }

  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }

  .service-card,
  .testimonial-card,
  .article-card {
    page-break-inside: avoid;
  }
}