/* ========================================
   VEILED GLADE RENTENBERATUNG - CSS
   Design Style: Gradient Modern
   ======================================== */

/* ========================================
   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, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8f0f7 100%);
  overflow-x: hidden;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: #163d6b;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #163d6b 0%, #2a5a8f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 32px;
  background: linear-gradient(135deg, #1B4B7F 0%, #5A8CB8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

h4 {
  font-size: 18px;
  color: #163d6b;
}

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

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

a:hover {
  color: #D4AF37;
}

ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

li {
  margin-bottom: 8px;
  color: #34495e;
}

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

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
header {
  background: linear-gradient(135deg, #163d6b 0%, #2a5a8f 50%, #5A8CB8 100%);
  box-shadow: 0 4px 20px rgba(22, 61, 107, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

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

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

.logo img:hover {
  transform: scale(1.05);
}

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

.main-nav a {
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  background: transparent;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #D4AF37 0%, #f0d271 100%);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #D4AF37;
  background: rgba(212, 175, 55, 0.1);
}

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

/* ========================================
   MOBILE MENU
   ======================================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #163d6b 0%, #2a5a8f 100%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(22, 61, 107, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(22, 61, 107, 0.4);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, #163d6b 0%, #2a5a8f 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  overflow-y: auto;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(212, 175, 55, 0.2);
  color: #D4AF37;
  transform: translateX(10px);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #D4AF37 0%, #f0d271 100%);
  color: #163d6b;
  position: relative;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  color: #163d6b;
}

.btn-secondary {
  background: linear-gradient(135deg, #163d6b 0%, #2a5a8f 100%);
  color: #ffffff;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 61, 107, 0.4);
  color: #ffffff;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  background: linear-gradient(135deg, #163d6b 0%, #2a5a8f 50%, #5A8CB8 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 20px) scale(1.1); }
}

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

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

.subheadline {
  font-size: 20px;
  color: #e8f0f7;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.trust-indicators span {
  background: rgba(255, 255, 255, 0.15);
  padding: 12px 24px;
  border-radius: 25px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.key-benefit, .key-promise {
  background: rgba(212, 175, 55, 0.15);
  padding: 16px 24px;
  border-radius: 12px;
  color: #ffffff;
  font-weight: 600;
  margin-top: 24px;
  border-left: 4px solid #D4AF37;
}

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

.target-groups span {
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 20px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

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

.section-subheadline {
  text-align: center;
  font-size: 18px;
  color: #5A8CB8;
  margin-bottom: 40px;
  font-style: italic;
}

/* ========================================
   PROBLEM-SOLUTION SECTION
   ======================================== */
.problem-solution {
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(22, 61, 107, 0.1);
}

.problem-list {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.problem-list li {
  background: linear-gradient(135deg, #fef5e7 0%, #fff9ed 100%);
  padding: 20px 24px;
  margin-bottom: 16px;
  border-radius: 12px;
  border-left: 4px solid #D4AF37;
  font-weight: 600;
  color: #163d6b;
  position: relative;
  transition: all 0.3s ease;
}

.problem-list li::before {
  content: '⚠';
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #D4AF37;
}

.problem-list li:hover {
  transform: translateX(10px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

/* ========================================
   SERVICES SECTIONS
   ======================================== */
.services-overview, .services-detailed {
  background: #ffffff;
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(22, 61, 107, 0.08);
}

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

.service-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 16px;
  padding: 32px 24px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  box-shadow: 0 5px 20px rgba(22, 61, 107, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #163d6b 0%, #D4AF37 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(22, 61, 107, 0.15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  flex-grow: 1;
  margin-bottom: 16px;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, #D4AF37 0%, #f0d271 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: auto;
}

.service-detail {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 16px;
  padding: 40px 32px;
  margin-bottom: 32px;
  border-left: 6px solid #163d6b;
  box-shadow: 0 5px 20px rgba(22, 61, 107, 0.08);
  position: relative;
}

.service-detail .price {
  display: inline-block;
  background: linear-gradient(135deg, #D4AF37 0%, #f0d271 100%);
  color: #163d6b;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
}

/* ========================================
   BENEFITS SECTION
   ======================================== */
.benefits {
  background: linear-gradient(135deg, #163d6b 0%, #2a5a8f 100%);
  border-radius: 20px;
  padding: 60px 40px;
  color: #ffffff;
}

.benefits h2 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 48px;
  background: none;
  -webkit-text-fill-color: #ffffff;
}

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

.benefit {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 32px 24px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.benefit:hover {
  background: rgba(212, 175, 55, 0.15);
  transform: translateY(-5px);
  border-color: #D4AF37;
}

.benefit img {
  width: 48px;
  height: 48px;
  filter: brightness(0) invert(1);
}

.benefit h3 {
  color: #D4AF37;
}

.benefit p {
  color: #e8f0f7;
}

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

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

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

.testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  box-shadow: 0 5px 25px rgba(22, 61, 107, 0.1);
  position: relative;
  border-left: 4px solid #D4AF37;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 64px;
  color: rgba(212, 175, 55, 0.15);
  font-family: Georgia, serif;
}

.testimonial-card p {
  color: #2c3e50;
  font-style: italic;
  position: relative;
  z-index: 1;
  font-size: 16px;
  line-height: 1.7;
}

.testimonial-card .author {
  font-weight: 700;
  color: #163d6b;
  margin-top: 16px;
  font-style: normal;
}

.testimonial-card .result {
  display: inline-block;
  background: linear-gradient(135deg, #D4AF37 0%, #f0d271 100%);
  color: #163d6b;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  margin-top: 12px;
  font-style: normal;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 32px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 2px solid rgba(22, 61, 107, 0.1);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1 1 200px;
  text-align: center;
}

.stat .number {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, #163d6b 0%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat .label {
  font-size: 14px;
  color: #5A8CB8;
  font-weight: 600;
}

/* ========================================
   CASE STUDIES
   ======================================== */
.case-studies {
  background: #ffffff;
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(22, 61, 107, 0.08);
}

.case-study {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 32px;
  border-left: 6px solid #D4AF37;
  box-shadow: 0 5px 20px rgba(22, 61, 107, 0.08);
}

.case-study h3 {
  color: #163d6b;
  margin-bottom: 20px;
}

.case-study blockquote {
  background: rgba(212, 175, 55, 0.1);
  border-left: 4px solid #D4AF37;
  padding: 20px;
  margin: 24px 0;
  font-style: italic;
  color: #2c3e50;
  border-radius: 8px;
}

/* ========================================
   COUNTRIES & LEGAL SECTIONS
   ======================================== */
.countries-coverage, .legal-basis {
  background: #ffffff;
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(22, 61, 107, 0.08);
}

.country-groups {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.country-group {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 16px;
  padding: 32px;
  border-left: 4px solid #163d6b;
  box-shadow: 0 5px 20px rgba(22, 61, 107, 0.08);
}

.country-group h3 {
  color: #163d6b;
  margin-bottom: 16px;
}

.legal-frameworks {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.framework {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 16px;
  padding: 32px;
  border-left: 4px solid #D4AF37;
  box-shadow: 0 5px 20px rgba(22, 61, 107, 0.08);
}

/* ========================================
   TEAM SECTION
   ======================================== */
.team {
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 60px 40px;
}

.team-members {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 40px;
}

.team-member {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  box-shadow: 0 5px 25px rgba(22, 61, 107, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(22, 61, 107, 0.15);
}

.team-member h3 {
  color: #163d6b;
  margin-bottom: 8px;
}

.team-member p strong {
  color: #D4AF37;
  display: block;
  margin-bottom: 12px;
}

/* ========================================
   CONTACT SECTIONS
   ======================================== */
.contact-options {
  background: #ffffff;
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(22, 61, 107, 0.08);
}

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

.contact-method {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  box-shadow: 0 5px 20px rgba(22, 61, 107, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(22, 61, 107, 0.15);
}

.contact-method img {
  width: 64px;
  height: 64px;
}

.contact-info {
  background: linear-gradient(135deg, #163d6b 0%, #2a5a8f 100%);
  border-radius: 20px;
  padding: 60px 40px;
  color: #ffffff;
}

.office-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 32px;
}

.office-details > div {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
}

.office-details h3 {
  color: #D4AF37;
  margin-bottom: 16px;
}

.office-details p {
  color: #e8f0f7;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-contact, .faq-list {
  background: #ffffff;
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(22, 61, 107, 0.08);
}

.faq-item {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  border-left: 4px solid #163d6b;
  box-shadow: 0 3px 15px rgba(22, 61, 107, 0.05);
}

.faq-item h3 {
  color: #163d6b;
  margin-bottom: 12px;
}

/* ========================================
   CTA SECTIONS
   ======================================== */
.cta, .cta-final {
  background: linear-gradient(135deg, #163d6b 0%, #2a5a8f 50%, #5A8CB8 100%);
  border-radius: 20px;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before, .cta-final::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  animation: ctaGlow 10s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(10%, 10%) rotate(180deg); }
}

.cta h2, .cta-final h2 {
  color: #ffffff;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  background: none;
  -webkit-text-fill-color: #ffffff;
}

.cta p, .cta-final p {
  color: #e8f0f7;
  font-size: 18px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta .cta-buttons, .cta-final .cta-buttons {
  position: relative;
  z-index: 1;
}

.trust-badges, .trust-elements, .trust-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}

.trust-badges span, .trust-elements span {
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 20px;
  border-radius: 20px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-line {
  color: #e8f0f7;
  font-weight: 600;
  font-size: 16px;
}

.languages-note, .russian-note {
  color: #e8f0f7;
  font-style: italic;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

/* ========================================
   PRICING & RECOGNITION
   ======================================== */
.pricing-transparency, .recognition-process, .service-details {
  background: #ffffff;
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(22, 61, 107, 0.08);
}

.pricing {
  display: inline-block;
  background: linear-gradient(135deg, #D4AF37 0%, #f0d271 100%);
  color: #163d6b;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 24px;
  font-weight: 700;
  margin: 24px 0;
}

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

.category {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  border-left: 4px solid #163d6b;
  box-shadow: 0 5px 20px rgba(22, 61, 107, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.category:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(22, 61, 107, 0.15);
}

.category h3 {
  color: #163d6b;
  margin-bottom: 16px;
}

/* ========================================
   ARCHIVE RESEARCH
   ======================================== */
.archive-research {
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 60px 40px;
}

.archive-countries {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.archive-country {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  box-shadow: 0 5px 25px rgba(22, 61, 107, 0.1);
  border-top: 4px solid #D4AF37;
  transition: all 0.3s ease;
}

.archive-country:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(22, 61, 107, 0.15);
}

.success-rate {
  margin-top: 32px;
  padding: 20px;
  background: linear-gradient(135deg, #D4AF37 0%, #f0d271 100%);
  border-radius: 12px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #163d6b;
}

/* ========================================
   STATISTICS GRID
   ======================================== */
.statistics {
  background: linear-gradient(135deg, #163d6b 0%, #2a5a8f 100%);
  border-radius: 20px;
  padding: 60px 40px;
  color: #ffffff;
}

.statistics h2 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 48px;
  background: none;
  -webkit-text-fill-color: #ffffff;
}

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

.stats-grid .stat {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-grid .stat .number {
  background: none;
  -webkit-text-fill-color: #D4AF37;
  color: #D4AF37;
}

.stats-grid .stat .label {
  color: #e8f0f7;
}

/* ========================================
   MISSION & COMPANY STORY
   ======================================== */
.mission, .company-story, .why-choose-us {
  background: #ffffff;
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(22, 61, 107, 0.08);
}

/* ========================================
   THANK YOU PAGE
   ======================================== */
.thank-you {
  background: linear-gradient(135deg, #163d6b 0%, #2a5a8f 100%);
  border-radius: 20px;
  padding: 80px 40px;
  text-align: center;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 32px;
  filter: brightness(0) invert(1);
}

.thank-you h1 {
  color: #ffffff;
  margin-bottom: 24px;
  background: none;
  -webkit-text-fill-color: #ffffff;
}

.thank-you .subheadline, .thank-you .confirmation, .thank-you .message {
  color: #e8f0f7;
  font-size: 18px;
  margin-bottom: 24px;
}

.thank-you ol {
  text-align: left;
  max-width: 500px;
  margin: 32px auto;
  background: rgba(255, 255, 255, 0.1);
  padding: 24px 32px;
  border-radius: 12px;
}

.thank-you ol li {
  color: #e8f0f7;
  margin-bottom: 12px;
}

.what-to-prepare, .resources, .back-home {
  background: #ffffff;
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(22, 61, 107, 0.08);
}

.resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.resource {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  box-shadow: 0 5px 20px rgba(22, 61, 107, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.resource:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(22, 61, 107, 0.15);
}

.back-home {
  text-align: center;
}

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-page {
  background: #ffffff;
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(22, 61, 107, 0.08);
  max-width: 900px;
  margin: 40px auto;
}

.legal-page h1 {
  margin-bottom: 32px;
}

.legal-page h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-page h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}

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

.legal-page li {
  margin-bottom: 12px;
  line-height: 1.7;
}

.note, .cta-text {
  background: rgba(212, 175, 55, 0.1);
  border-left: 4px solid #D4AF37;
  padding: 16px 20px;
  border-radius: 8px;
  margin: 24px 0;
  font-style: italic;
  color: #163d6b;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
  background: linear-gradient(135deg, #0f2942 0%, #163d6b 100%);
  color: #e8f0f7;
  padding: 60px 20px 24px;
  margin-top: 80px;
}

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

.footer-info, .footer-links, .footer-legal {
  flex: 1 1 calc(33.333% - 40px);
  min-width: 250px;
}

.footer-info img {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

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

.footer-links h4, .footer-legal h4 {
  color: #D4AF37;
  font-size: 16px;
  margin-bottom: 16px;
  font-family: 'Open Sans', sans-serif;
}

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

.footer-links a, .footer-legal a {
  color: #e8f0f7;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover, .footer-legal a:hover {
  color: #D4AF37;
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(232, 240, 247, 0.2);
  padding-top: 24px;
  text-align: center;
}

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

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #a1afc0 0%, #2a5a8f 100%);
  color: #ffffff;
  padding: 24px 20px;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.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: 20px;
}

.cookie-text {
  flex: 1 1 300px;
  color: #e8f0f7;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-buttons .btn {
  padding: 10px 24px;
  font-size: 14px;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

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

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: #163d6b;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: rgba(22, 61, 107, 0.1);
  transform: rotate(90deg);
}

.cookie-category {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  border-left: 4px solid #163d6b;
}

.cookie-category h3 {
  color: #163d6b;
  font-size: 18px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category p {
  font-size: 14px;
  color: #5A8CB8;
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  transition: 0.4s;
  border-radius: 26px;
}

.cookie-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .cookie-slider {
  background: #163d6b;
}

input:checked + .cookie-slider:before {
  transform: translateX(24px);
}

input:disabled + .cookie-slider {
  background: #5A8CB8;
  cursor: not-allowed;
}

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

/* ========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ======================================== */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  p, .subheadline {
    font-size: 16px;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Header adjustments */
  header {
    padding: 12px 0;
  }
  
  .logo img {
    height: 50px;
  }
  
  /* Sections */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  /* Hero section */
  .hero {
    padding: 60px 20px;
    margin-bottom: 40px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 12px;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Service cards */
  .services-grid, .benefits-grid, .testimonials-grid {
    flex-direction: column;
  }
  
  .service-card, .benefit, .testimonial-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Stats */
  .stats {
    flex-direction: column;
    gap: 24px;
  }
  
  .stat .number {
    font-size: 36px;
  }
  
  /* Contact methods */
  .contact-methods, .office-details, .team-members, .resource-links, .archive-countries, .categories {
    flex-direction: column;
  }
  
  .contact-method, .team-member, .resource, .archive-country, .category {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-info, .footer-links, .footer-legal {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  /* Modal */
  .cookie-modal-content {
    padding: 24px;
  }
  
  /* Legal pages */
  .legal-page {
    padding: 32px 20px;
  }
  
  /* Problem list */
  .problem-list li::before {
    display: none;
  }
  
  /* Service detail */
  .service-detail {
    padding: 24px 20px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .service-card, .benefit, .testimonial-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .team-member, .resource, .archive-country, .category {
    flex: 1 1 calc(50% - 24px);
  }
  
  h1 {
    font-size: 40px;
  }
  
  h2 {
    font-size: 28px;
  }
}

/* ========================================
   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; }
.mt-5 { margin-top: 40px; }

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

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

@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slideInFromLeft {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

/* Apply fade-in animation to sections */
section {
  animation: fadeIn 0.8s ease-out;
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer,
  .cta,
  .cta-final {
    display: none;
  }
  
  body {
    background: white;
  }
  
  section {
    page-break-inside: avoid;
  }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus {
  outline: 3px solid #D4AF37;
  outline-offset: 2px;
}

/* ========================================
   END OF STYLESHEET
   ======================================== */