/* =================================
   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.6;
  color: #333;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-attachment: fixed;
  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-position: inside;
}

/* =================================
   TYPOGRAPHY
   ================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #1a1a1a;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 32px;
  color: #2C5F7D;
}

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

h4 {
  font-size: 18px;
}

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

/* =================================
   LAYOUT CONTAINERS
   ================================= */

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

main {
  background: #fff;
  box-shadow: 0 0 60px rgba(102, 126, 234, 0.2);
}

/* =================================
   HEADER & NAVIGATION
   ================================= */

header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

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

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

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

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

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

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #E8B35F;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

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

/* =================================
   MOBILE MENU
   ================================= */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  color: #fff;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(102, 126, 234, 0.5);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
  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;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  font-size: 32px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

/* =================================
   HERO SECTIONS
   ================================= */

.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

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

.hero p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.subheadline {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 32px;
  font-weight: 400;
}

/* =================================
   TRUST INDICATORS
   ================================= */

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

.trust-indicators span {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.trust-indicators span:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* =================================
   BUTTONS
   ================================= */

.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, #E8B35F 0%, #d4a050 100%);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(232, 179, 95, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

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

/* =================================
   SECTIONS
   ================================= */

section {
  padding: 60px 20px;
  margin-bottom: 0;
  position: relative;
}

section:nth-child(even) {
  background: linear-gradient(to bottom, #F4F6F8 0%, #fff 100%);
}

/* =================================
   PROBLEM-SOLUTION SECTION
   ================================= */

.problem-solution {
  text-align: center;
  background: #fff;
}

.problem-solution h2 {
  margin-bottom: 32px;
}

.problems-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto 32px;
}

.problems-list p {
  padding: 16px 24px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-left: 4px solid #764ba2;
  border-radius: 8px;
  text-align: left;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.problems-list p:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(118, 75, 162, 0.15);
}

.solution {
  font-size: 18px;
  font-weight: 600;
  color: #2C5F7D;
  padding: 24px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-radius: 12px;
  max-width: 800px;
  margin: 32px auto 0;
}

/* =================================
   CARD GRIDS - USING FLEXBOX ONLY
   ================================= */

.services-grid,
.benefits-grid,
.packages-grid,
.guarantees-grid,
.values-grid,
.stats-grid,
.contact-grid,
.resources-grid,
.indicators-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.service-card,
.benefit-card,
.package-card,
.guarantee-card,
.value-card,
.stat-card,
.contact-card,
.resource-card,
.indicator {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  padding: 32px 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.service-card:hover,
.benefit-card:hover,
.package-card:hover,
.guarantee-card:hover,
.value-card:hover,
.contact-card:hover,
.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.2);
}

.service-card h3,
.benefit-card h3,
.package-card h3,
.guarantee-card h3,
.value-card h3,
.contact-card h3,
.resource-card h3 {
  color: #2C5F7D;
  margin-bottom: 12px;
}

.service-card p,
.benefit-card p,
.package-card p,
.guarantee-card p,
.value-card p,
.contact-card p,
.resource-card p {
  color: #555;
  margin-bottom: 8px;
  flex-grow: 1;
}

.price {
  font-size: 18px;
  font-weight: 700;
  color: #E8B35F;
  margin-top: 8px;
  display: block;
}

/* =================================
   FEATURED PACKAGE CARD
   ================================= */

.package-card.featured {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border: 3px solid #E8B35F;
  transform: scale(1.05);
}

.package-card.featured h3,
.package-card.featured p,
.package-card.featured .price {
  color: #fff;
}

.package-card.featured:hover {
  transform: scale(1.08) translateY(-8px);
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #E8B35F;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(232, 179, 95, 0.4);
}

.savings {
  color: #E8B35F;
  font-weight: 700;
  font-size: 16px;
  margin-top: 8px;
}

.package-card.featured .savings {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 12px;
  border-radius: 8px;
  display: inline-block;
}

/* =================================
   STATS & NUMBERS
   ================================= */

.stat {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 8px;
}

.stat-card {
  text-align: center;
}

.stat-card .number {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 8px;
}

.stat-card p {
  color: #555;
  font-weight: 600;
  margin: 0;
}

.stats-bar {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.stats-bar .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stats-bar .number {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}

.stats-bar .label {
  font-size: 14px;
  opacity: 0.9;
  color: #fff;
}

/* =================================
   TESTIMONIALS
   ================================= */

.testimonials {
  background: linear-gradient(to bottom, #F4F6F8 0%, #fff 100%);
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 40px;
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 500px;
  padding: 32px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: 80px;
  color: rgba(102, 126, 234, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.testimonial-card .author {
  font-weight: 600;
  color: #2C5F7D;
  font-size: 14px;
  margin-top: 16px;
  display: block;
  border-top: 2px solid #F4F6F8;
  padding-top: 16px;
}

/* =================================
   PROCESS STEPS
   ================================= */

.process-steps {
  background: #fff;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 48px;
  padding: 32px;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.step:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
}

.step-number,
.number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.step h3 {
  margin-bottom: 12px;
  color: #2C5F7D;
}

.step p {
  color: #555;
  margin-bottom: 8px;
}

.duration {
  font-size: 14px;
  color: #E8B35F;
  font-weight: 600;
  margin-top: 8px;
  display: block;
}

.process-overview {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.process-overview .duration {
  font-size: 18px;
  color: #2C5F7D;
  font-weight: 600;
}

/* =================================
   CASE STUDIES
   ================================= */

.case-study {
  padding: 40px;
  margin-bottom: 40px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 6px solid #667eea;
}

.case-study h3 {
  color: #2C5F7D;
  margin-bottom: 20px;
  font-size: 24px;
}

.challenge,
.solution {
  margin-bottom: 20px;
  padding: 16px;
  background: #F4F6F8;
  border-radius: 8px;
}

.challenge {
  border-left: 4px solid #764ba2;
}

.results {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0;
  padding: 24px;
  background: linear-gradient(135deg, rgba(232, 179, 95, 0.1) 0%, rgba(232, 179, 95, 0.05) 100%);
  border-radius: 12px;
}

.results p {
  flex: 1 1 calc(50% - 16px);
  min-width: 200px;
  font-weight: 600;
  color: #2C5F7D;
  margin: 0;
}

.case-study .testimonial {
  margin-top: 24px;
  padding: 24px;
  background: #fff;
  border-left: 4px solid #E8B35F;
  border-radius: 8px;
}

.case-study .testimonial p {
  font-style: italic;
  color: #333;
  margin-bottom: 12px;
}

.case-study .testimonial span {
  font-weight: 600;
  color: #2C5F7D;
  font-size: 14px;
}

/* =================================
   SERVICES DETAILED
   ================================= */

.service-detail {
  padding: 40px;
  margin-bottom: 32px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-detail:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.2);
}

.service-detail h3 {
  color: #2C5F7D;
  margin-bottom: 16px;
  font-size: 26px;
}

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

.service-detail li {
  padding: 12px 12px 12px 32px;
  margin-bottom: 8px;
  background: #F4F6F8;
  border-radius: 8px;
  position: relative;
  list-style: none;
}

.service-detail li::before {
  content: '✓';
  position: absolute;
  left: 12px;
  color: #667eea;
  font-weight: 700;
  font-size: 16px;
}

.service-detail .price {
  font-size: 20px;
  font-weight: 700;
  color: #E8B35F;
  margin-top: 20px;
  display: block;
}

/* =================================
   TEAM & DEPARTMENTS
   ================================= */

.team-departments {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.department {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  padding: 32px 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.department:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.2);
}

.department h3 {
  color: #2C5F7D;
  margin-bottom: 12px;
}

.department p {
  color: #555;
  margin: 0;
}

/* =================================
   CONTACT SECTIONS
   ================================= */

.contact-card .detail {
  font-size: 18px;
  font-weight: 600;
  color: #2C5F7D;
  margin-bottom: 12px;
}

.contact-card .availability {
  font-size: 14px;
  color: #777;
  margin: 0;
}

.office-info,
.business-hours {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.address {
  font-size: 18px;
  margin: 24px 0;
  padding: 24px;
  background: #F4F6F8;
  border-radius: 12px;
}

.directions {
  margin: 32px 0;
  padding: 24px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  border-radius: 12px;
}

.hours-table {
  padding: 24px;
  background: #F4F6F8;
  border-radius: 12px;
  margin: 24px 0;
}

.hours-table p {
  font-size: 16px;
  font-weight: 600;
  color: #2C5F7D;
  margin-bottom: 8px;
}

.note {
  font-size: 14px;
  color: #777;
  font-style: italic;
  margin-top: 16px;
}

/* =================================
   NEXT STEPS & RESOURCES
   ================================= */

.next-steps {
  background: linear-gradient(to bottom, #F4F6F8 0%, #fff 100%);
  text-align: center;
}

.steps,
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.steps .step,
.steps-grid .step {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
}

.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.resource-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  text-align: center;
}

/* =================================
   CTA SECTIONS
   ================================= */

.cta-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.cta-section .btn {
  position: relative;
  z-index: 1;
}

.value-proposition {
  font-size: 16px;
  font-weight: 600;
  margin-top: 24px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: inline-block;
  backdrop-filter: blur(10px);
}

/* =================================
   THANK YOU PAGE
   ================================= */

.hero.thank-you {
  padding: 120px 20px;
}

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #fff;
  animation: scaleIn 0.5s ease;
}

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

/* =================================
   LEGAL CONTENT
   ================================= */

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: #2C5F7D;
}

.legal-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  margin: 20px 0;
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 12px;
  line-height: 1.6;
}

/* =================================
   FOOTER
   ================================= */

footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #fff;
  padding: 60px 20px 20px;
}

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

.footer-col {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
}

.footer-col h4 {
  color: #E8B35F;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-col p,
.footer-col a {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  display: block;
}

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

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

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

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

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #fff;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  display: none;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

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

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

.cookie-banner-buttons button {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

#accept-all-cookies {
  background: linear-gradient(135deg, #E8B35F 0%, #d4a050 100%);
  color: #fff;
}

#accept-all-cookies:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 179, 95, 0.4);
}

#reject-all-cookies {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

#reject-all-cookies:hover {
  background: rgba(255, 255, 255, 0.2);
}

#cookie-settings {
  background: transparent;
  color: #E8B35F;
  border: 1px solid #E8B35F;
}

#cookie-settings:hover {
  background: rgba(232, 179, 95, 0.1);
}

/* =================================
   COOKIE PREFERENCES MODAL
   ================================= */

#cookie-preferences-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.cookie-modal-content {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

#cookie-preferences-modal.show .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: #2C5F7D;
  margin: 0;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 32px;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #f5f5f5;
  color: #333;
}

.cookie-category {
  padding: 20px;
  margin-bottom: 16px;
  background: #F4F6F8;
  border-radius: 12px;
  border-left: 4px solid #667eea;
}

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

.cookie-category h4 {
  color: #2C5F7D;
  margin: 0;
  font-size: 16px;
}

.cookie-category p {
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  flex-shrink: 0;
}

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

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

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

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

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

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

.cookie-modal-buttons button {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

#save-preferences {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}

#save-preferences:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* =================================
   RESPONSIVE DESIGN
   ================================= */

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

  .mobile-menu {
    display: block;
  }

  .main-nav {
    display: none;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero {
    padding: 60px 20px;
  }

  section {
    padding: 40px 20px;
  }

  .service-card,
  .benefit-card,
  .package-card,
  .guarantee-card,
  .value-card,
  .stat-card,
  .contact-card,
  .resource-card,
  .testimonial-card {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .footer-col {
    flex: 1 1 100%;
  }

  .trust-indicators {
    gap: 16px;
  }

  .trust-indicators span {
    font-size: 12px;
    padding: 8px 16px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .step {
    flex-direction: column;
    text-align: center;
  }

  .stats-bar {
    gap: 24px;
  }

  .stats-bar .number {
    font-size: 28px;
  }

  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }

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

  .cookie-banner-buttons button {
    width: 100%;
  }

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

  .department {
    flex: 1 1 100%;
  }

  .results {
    flex-direction: column;
  }

  .results p {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .hero {
    padding: 40px 16px;
  }

  section {
    padding: 32px 16px;
  }

  .service-card,
  .benefit-card,
  .package-card,
  .step,
  .case-study,
  .service-detail {
    padding: 20px;
  }

  .step-number,
  .number {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

/* =================================
   ANIMATIONS
   ================================= */

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

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

/* =================================
   ACCESSIBILITY
   ================================= */

:focus {
  outline: 2px solid #667eea;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #E8B35F;
  outline-offset: 2px;
}

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

@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-preferences-modal,
  .cta-section {
    display: none;
  }

  body {
    background: #fff;
  }

  a {
    text-decoration: underline;
  }
}