/* ===================================
   PassiOrtho - Gradient Modern Design
   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, Arial, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
}

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

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

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

/* ===================================
   Container & Layout
   =================================== */

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

/* ===================================
   Typography
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #1A4A6E 0%, #2C5F8D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

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

h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

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

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

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

/* ===================================
   Header & Navigation
   =================================== */

header {
  background: linear-gradient(135deg, rgba(26, 74, 110, 0.95) 0%, rgba(44, 95, 141, 0.95) 100%);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

header img {
  height: 45px;
  width: auto;
  filter: brightness(0) invert(1);
}

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

header nav a {
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  padding: 8px 0;
}

header nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #D4A574 0%, #B8873F 100%);
  transition: width 0.3s ease;
}

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

header .phone {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

header .phone:hover {
  color: #D4A574;
}

.cta-button {
  background: linear-gradient(135deg, #D4A574 0%, #B8873F 100%);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 165, 116, 0.6);
}

/* ===================================
   Mobile Menu
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background: linear-gradient(135deg, #1A4A6E 0%, #2C5F8D 100%);
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(26, 74, 110, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(26, 74, 110, 0.6);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #1A4A6E 0%, #2C5F8D 100%);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  z-index: 1200;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
}

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

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

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

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

.mobile-nav a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #D4A574;
  padding-left: 10px;
}

@media (max-width: 968px) {
  header nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  header .phone,
  header .cta-button {
    display: none;
  }
}

/* ===================================
   Hero Section
   =================================== */

.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.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"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

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

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

.hero .subheadline {
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  opacity: 0.95;
}

.hero .value-proposition {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.9;
}

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

.cta-primary {
  background: linear-gradient(135deg, #D4A574 0%, #B8873F 100%);
  color: #ffffff;
  padding: 16px 40px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.5);
  transition: all 0.3s ease;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 165, 116, 0.7);
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 16px 40px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 18px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

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

.trust-indicators span {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  border-radius: 20px;
}

/* ===================================
   Hero Internal
   =================================== */

.hero-internal {
  background: linear-gradient(135deg, #1A4A6E 0%, #2C5F8D 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.hero-internal h1 {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
  font-size: 48px;
  margin-bottom: 16px;
}

.hero-internal p {
  color: #ffffff;
  font-size: 20px;
  opacity: 0.9;
}

/* ===================================
   Section Styles
   =================================== */

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

section h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 42px;
}

section > .container > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #5a6c7d;
}

/* ===================================
   Benefits Section
   =================================== */

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

.benefit-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  flex: 1 1 300px;
  max-width: 380px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.benefit-card h3 {
  color: #1A4A6E;
  margin-bottom: 16px;
  background: none;
  -webkit-text-fill-color: #1A4A6E;
}

.benefit-card p {
  color: #5a6c7d;
  line-height: 1.7;
}

/* ===================================
   Services Preview
   =================================== */

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

.service-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  flex: 1 1 320px;
  max-width: 380px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #D4A574 0%, #B8873F 100%);
  border-radius: 16px 16px 0 0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
  color: #1A4A6E;
  margin-bottom: 12px;
  background: none;
  -webkit-text-fill-color: #1A4A6E;
}

.service-card p {
  color: #5a6c7d;
  flex-grow: 1;
}

.service-card .price {
  color: #B8873F;
  font-weight: 700;
  font-size: 24px;
  margin-top: 12px;
}

.cta-link {
  display: inline-block;
  margin: 0 auto;
  color: #1A4A6E;
  font-weight: 600;
  font-size: 18px;
  padding: 12px 32px;
  border: 2px solid #1A4A6E;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.cta-link:hover {
  background: linear-gradient(135deg, #1A4A6E 0%, #2C5F8D 100%);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ===================================
   Process Section
   =================================== */

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

.step {
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
  position: relative;
}

.step .number {
  display: inline-block;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.step h3 {
  color: #1A4A6E;
  margin-bottom: 12px;
  background: none;
  -webkit-text-fill-color: #1A4A6E;
}

.step p {
  color: #5a6c7d;
}

/* ===================================
   Testimonials
   =================================== */

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.testimonial-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  flex: 1 1 450px;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

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

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

.testimonial-card .author {
  color: #1A4A6E;
  font-weight: 600;
  font-size: 16px;
  margin-top: 8px;
}

.testimonial-card .rating {
  color: #FFD700;
  font-size: 20px;
  letter-spacing: 4px;
}

.testimonial-card .project {
  color: #7f8c8d;
  font-size: 14px;
}

/* ===================================
   CTA Section
   =================================== */

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

.cta-section::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.05)"/></svg>');
  opacity: 0.5;
}

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

.cta-section h2 {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
  margin-bottom: 20px;
}

.cta-section p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.cta-section .cta-button {
  background: linear-gradient(135deg, #D4A574 0%, #B8873F 100%);
  margin: 0 auto 20px;
}

.cta-section .phone {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
}

/* ===================================
   Services Detailed
   =================================== */

.services-detailed .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-card-detailed {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.service-card-detailed::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px 0 0 16px;
}

.service-card-detailed:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.service-card-detailed h3 {
  color: #1A4A6E;
  margin-bottom: 16px;
  background: none;
  -webkit-text-fill-color: #1A4A6E;
  font-size: 28px;
}

.service-card-detailed p {
  color: #5a6c7d;
  margin-bottom: 20px;
}

.service-card-detailed ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.service-card-detailed li {
  background: rgba(102, 126, 234, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  list-style: none;
  color: #1A4A6E;
  font-size: 14px;
  font-weight: 500;
}

.service-card-detailed .price {
  color: #B8873F;
  font-weight: 700;
  font-size: 28px;
  display: block;
  margin-top: 16px;
}

.service-card-detailed .time {
  color: #7f8c8d;
  font-size: 16px;
  display: block;
  margin-top: 8px;
}

.service-card-detailed .note {
  color: #7f8c8d;
  font-size: 14px;
  font-style: italic;
  display: block;
  margin-top: 8px;
}

/* ===================================
   Portfolio / Realizace
   =================================== */

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

.stat {
  text-align: center;
  flex: 1 1 200px;
  max-width: 250px;
}

.stat .number {
  display: block;
  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;
  margin-bottom: 8px;
}

.stat .label {
  display: block;
  color: #5a6c7d;
  font-size: 16px;
}

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

.project-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  flex: 1 1 450px;
  max-width: 550px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.project-card h3 {
  color: #1A4A6E;
  margin-bottom: 12px;
  background: none;
  -webkit-text-fill-color: #1A4A6E;
}

.project-card .category {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.project-card .location {
  color: #7f8c8d;
  font-size: 14px;
}

.project-card p {
  color: #5a6c7d;
  flex-grow: 1;
}

.project-card .investment {
  color: #B8873F;
  font-weight: 700;
  font-size: 24px;
  margin-top: 12px;
}

/* ===================================
   Contact Page
   =================================== */

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

.contact-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  flex: 1 1 260px;
  max-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.contact-card h3 {
  color: #1A4A6E;
  margin-bottom: 16px;
  background: none;
  -webkit-text-fill-color: #1A4A6E;
  font-size: 22px;
}

.contact-card .detail {
  color: #B8873F;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 12px;
}

.contact-card p {
  color: #5a6c7d;
  margin-bottom: 20px;
}

.contact-card .cta {
  display: inline-block;
  background: linear-gradient(135deg, #1A4A6E 0%, #2C5F8D 100%);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-card .cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 74, 110, 0.4);
}

.contact-form {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  max-width: 800px;
  margin: 0 auto;
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 16px;
}

.contact-form > .container > p {
  text-align: center;
  margin-bottom: 32px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.text-section p {
  color: #2c3e50;
}

.text-section strong {
  color: #1A4A6E;
  font-weight: 600;
}

.gdpr-text {
  font-size: 14px;
  color: #7f8c8d;
  font-style: italic;
  margin-top: 20px;
}

/* Opening Hours */
.hours-table {
  max-width: 500px;
  margin: 0 auto;
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.hour-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e0e6ed;
}

.hour-row:last-child {
  border-bottom: none;
}

.hour-row span:first-child {
  color: #1A4A6E;
  font-weight: 600;
}

.hour-row span:last-child {
  color: #5a6c7d;
}

.notice {
  text-align: center;
  margin-top: 24px;
  color: #7f8c8d;
  font-style: italic;
}

/* Consultation Types */
.consultation-types {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.consultation-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  flex: 1 1 300px;
  max-width: 350px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.consultation-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.consultation-card h3 {
  color: #1A4A6E;
  margin-bottom: 12px;
  background: none;
  -webkit-text-fill-color: #1A4A6E;
}

.consultation-card .duration {
  color: #B8873F;
  font-weight: 600;
  font-size: 16px;
}

.consultation-card p {
  color: #5a6c7d;
  flex-grow: 1;
}

.consultation-card .price {
  color: #1A4A6E;
  font-weight: 700;
  font-size: 24px;
  margin-top: 12px;
}

/* ===================================
   Legal Pages
   =================================== */

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.legal-content h2 {
  text-align: left;
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 28px;
}

.legal-content h3 {
  text-align: left;
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 22px;
}

.legal-content p {
  margin-bottom: 16px;
  text-align: left;
}

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

.legal-content li {
  margin-bottom: 8px;
  text-align: left;
}

.legal-content em {
  color: #7f8c8d;
  display: block;
  margin-bottom: 24px;
}

/* ===================================
   Thank You Page
   =================================== */

.thank-you-message {
  text-align: center;
  padding: 60px 20px;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin: 0 auto 32px;
  box-shadow: 0 8px 24px rgba(76, 175, 80, 0.4);
}

.thank-you-message .message {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 24px;
  font-weight: 500;
}

.next-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 48px 0;
}

.next-steps .step {
  flex: 1 1 280px;
  max-width: 320px;
}

.expected-response {
  background: rgba(102, 126, 234, 0.1);
  padding: 16px 32px;
  border-radius: 30px;
  color: #1A4A6E;
  font-weight: 600;
  display: inline-block;
  margin: 24px 0;
}

.urgent-contact {
  color: #5a6c7d;
  font-size: 16px;
}

.info-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.info-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  flex: 1 1 300px;
  max-width: 350px;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.info-card h3 {
  color: #1A4A6E;
  margin-bottom: 12px;
  background: none;
  -webkit-text-fill-color: #1A4A6E;
}

.info-card p {
  color: #5a6c7d;
  margin-bottom: 20px;
}

.info-card .link {
  color: #1A4A6E;
  font-weight: 600;
  text-decoration: underline;
}

.info-card .link:hover {
  color: #B8873F;
}

.confirmation-details {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  max-width: 700px;
  margin: 40px auto;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.confirmation-note,
.check-spam,
.data-protection {
  text-align: center;
  margin-bottom: 12px;
}

.social-proof-compact {
  margin-top: 60px;
}

.social-proof-compact .stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

/* ===================================
   Story & Values Sections
   =================================== */

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.highlights span {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

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

.value-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  flex: 1 1 260px;
  max-width: 280px;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.value-card h3 {
  color: #1A4A6E;
  margin-bottom: 12px;
  background: none;
  -webkit-text-fill-color: #1A4A6E;
}

.value-card p {
  color: #5a6c7d;
}

/* Team */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.team-member {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  flex: 1 1 300px;
  max-width: 350px;
  text-align: center;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.team-member h3 {
  color: #1A4A6E;
  margin-bottom: 8px;
  background: none;
  -webkit-text-fill-color: #1A4A6E;
}

.team-member .role {
  display: block;
  color: #B8873F;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 16px;
}

.team-member p {
  color: #5a6c7d;
}

/* ===================================
   Footer
   =================================== */

footer {
  background: linear-gradient(135deg, #1A4A6E 0%, #2C5F8D 100%);
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

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

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

.footer-col p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  font-size: 15px;
}

.footer-col h4 {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
}

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

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

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 16px;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.legal-links a:hover {
  color: #D4A574;
}

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

/* ===================================
   Cookie Consent Banner
   =================================== */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(26, 74, 110, 0.98) 0%, rgba(44, 95, 141, 0.98) 100%);
  backdrop-filter: blur(10px);
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-consent .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-consent p {
  color: #ffffff;
  margin: 0;
  flex: 1 1 300px;
}

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

.cookie-buttons button {
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.accept-all {
  background: linear-gradient(135deg, #D4A574 0%, #B8873F 100%);
  color: #ffffff;
}

.accept-all:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.5);
}

.reject-all {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

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

.cookie-settings {
  background: transparent;
  color: #ffffff;
  text-decoration: underline;
}

.cookie-settings:hover {
  color: #D4A574;
}

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

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

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

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

.cookie-modal-content h3 {
  color: #1A4A6E;
  margin-bottom: 20px;
  background: none;
  -webkit-text-fill-color: #1A4A6E;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 8px;
}

.cookie-category h4 {
  color: #2c3e50;
  margin-bottom: 8px;
  background: none;
  -webkit-text-fill-color: #2c3e50;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

.cookie-toggle.active {
  background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
}

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

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

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

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

.save-preferences {
  background: linear-gradient(135deg, #1A4A6E 0%, #2C5F8D 100%);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 600;
  flex: 1;
}

.save-preferences:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(26, 74, 110, 0.4);
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 42px;
  }
  
  .hero .subheadline {
    font-size: 20px;
  }
  
  .hero .value-proposition {
    font-size: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-primary,
  .cta-secondary {
    width: 100%;
    text-align: center;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  .benefits-grid,
  .services-grid,
  .process-steps,
  .testimonial-slider,
  .contact-grid,
  .consultation-types,
  .team-grid,
  .values-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .benefit-card,
  .service-card,
  .step,
  .testimonial-card,
  .contact-card,
  .consultation-card,
  .team-member,
  .value-card {
    max-width: 100%;
  }
  
  .footer-grid {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-col {
    max-width: 100%;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 12px;
  }
  
  .cookie-consent .container {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  .legal-content,
  .contact-form {
    padding: 24px;
  }
  
  header .container {
    justify-content: center;
  }
  
  section {
    padding: 30px 15px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
  
  .container {
    padding: 0 15px;
  }
}

/* ===================================
   Animations
   =================================== */

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

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

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

/* ===================================
   Utility Classes
   =================================== */

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

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
}

/* ===================================
   Print Styles
   =================================== */

@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cta-section {
    display: none;
  }
  
  body {
    background: #ffffff;
  }
  
  a {
    color: #000000;
    text-decoration: underline;
  }
}