:root {
  --primary-color: #4f46e5;
  --primary-light: #818cf8;
  --primary-dark: #3730a3;
  --secondary-color: #f1f5f9;
  --accent-color: #06b6d4;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-light: #cbd5e1;
  --background-main: #ffffff;
  --background-subtle: #f8fafc;
  --surface-color: rgba(255, 255, 255, 0.8);
  --shadow-soft: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 20px 35px -10px rgba(0, 0, 0, 0.15), 0 8px 15px -8px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 35px 60px -12px rgba(0, 0, 0, 0.25), 0 10px 25px -10px rgba(0, 0, 0, 0.1);
  --glass-bg: rgba(255, 255, 255, 0.25);
  --glass-border: rgba(255, 255, 255, 0.18);
  --mesh-gradient: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
  --border-radius: 16px;
  --border-radius-lg: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--background-main);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.75rem; }
h3 { font-size: 2.25rem; }
h4 { font-size: 1.875rem; }
h5 { font-size: 1.5rem; }
h6 { font-size: 1.25rem; }

@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.75rem; }
  h4 { font-size: 1.5rem; }
}

.accent-text {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.progress-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(79, 70, 229, 0.1);
  z-index: 9999;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  width: 0%;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(79, 70, 229, 0.5);
}

.glass-nav {
  background: var(--glass-bg) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
}

.navbar-brand img {
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.1);
}

.nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.75rem 1rem !important;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  color: var(--text-primary) !important;
  font-weight: 500;
}

.nav-icon {
  font-size: 1.2rem;
}

.nav-link:hover, .nav-link.active {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, 
    rgba(79, 70, 229, 0.05) 0%, 
    rgba(6, 182, 212, 0.05) 50%, 
    rgba(79, 70, 229, 0.05) 100%);
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><g fill="none" fill-rule="evenodd"><g fill="%234f46e5" fill-opacity="0.03"><circle cx="30" cy="30" r="1"/></g></svg>');
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(79, 70, 229, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 70, 229, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-gradient {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 600px;
}

.hero-cta {
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
}

.glass-btn {
  position: relative;
  border: 1px solid var(--glass-border) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  font-weight: 500;
  box-shadow: var(--shadow-soft);
}

.btn-primary.glass-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white !important;
}

.btn-outline-primary.glass-btn {
  background: var(--glass-bg);
  color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.glass-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-large);
}

.btn-primary.glass-btn:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--accent-color));
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.4);
}

.btn-outline-primary.glass-btn:hover {
  background: var(--primary-color);
  color: white !important;
  border-color: var(--primary-color) !important;
}

.glass-btn svg {
  transition: transform 0.3s ease;
}

.glass-btn:hover svg {
  transform: translateX(4px);
}

.page-hero {
  padding: 150px 0 100px;
  background: var(--mesh-gradient);
  text-align: center;
}

.page-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.page-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 3rem;
}

.shadow-soft {
  box-shadow: var(--shadow-soft);
}

.cta-benefits-section {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-medium);
}

.benefits-grid {
  display: grid;
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.benefit-icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  color: white;
  flex-shrink: 0;
}

.services-tabs-wrapper {
  background: var(--surface-color);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-medium);
}

.services-tabs .nav-link {
  background: transparent;
  border: 2px solid transparent;
  color: var(--text-secondary);
  border-radius: var(--border-radius);
  padding: 0.75rem 1.5rem;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
  font-weight: 500;
}

.services-tabs .nav-link:hover {
  background: var(--glass-bg);
  border-color: var(--glass-border);
  transform: translateY(-2px);
}

.services-tabs .nav-link.active {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  border-color: var(--primary-color);
  box-shadow: var(--shadow-soft);
}

.services-content {
  padding: 2rem 0;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 2rem;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: var(--accent-color);
  font-weight: bold;
}

.process-timeline {
  position: relative;
  padding: 2rem 0;
}

.process-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
  transform: translateX(-50%);
}

.process-step {
  position: relative;
  margin-bottom: 4rem;
}

.process-step:nth-child(even) .process-content {
  margin-left: calc(50% + 3rem);
}

.process-step:nth-child(odd) .process-content {
  margin-right: calc(50% + 3rem);
  text-align: right;
}

.process-content {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-medium);
  position: relative;
  transition: all 0.3s ease;
}

.process-content:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-large);
}

.process-number {
  position: absolute;
  top: 50%;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  transform: translateY(-50%);
  box-shadow: var(--shadow-medium);
}

.process-step:nth-child(even) .process-number {
  left: -30px;
}

.process-step:nth-child(odd) .process-number {
  right: -30px;
}

.process-icon {
  font-size: 3rem;
  margin: 1rem 0;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .process-line {
    left: 30px;
  }
  
  .process-step:nth-child(even) .process-content,
  .process-step:nth-child(odd) .process-content {
    margin-left: 4rem;
    margin-right: 0;
    text-align: left;
  }
  
  .process-step:nth-child(even) .process-number,
  .process-step:nth-child(odd) .process-number {
    left: 0;
    right: auto;
  }
}

.floating-contact {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

.floating-btn {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: var(--shadow-large);
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
}

.floating-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 15px 30px rgba(79, 70, 229, 0.5);
  color: white;
}

.footer {
  background: var(--text-primary);
  color: white;
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}

.footer-content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  height: 40px;
  filter: brightness(0) invert(1);
}

.footer-description {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.footer h5 {
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.contact-info p {
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

.contact-info a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--accent-color);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  color: var(--text-light);
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-primary);
  color: white;
  padding: 1.5rem;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

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

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

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
}

.legal-page {
  padding: 150px 0 100px;
  min-height: 100vh;
}

.legal-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.legal-date {
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 3rem;
}

.legal-content {
  background: var(--surface-color);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-medium);
}

.legal-content h2 {
  font-size: 1.75rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.legal-content h3, .legal-content h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.legal-content a:hover {
  color: var(--primary-dark);
}

.thanks-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--mesh-gradient);
}

.thanks-content {
  text-align: center;
  background: var(--surface-color);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 4rem 3rem;
  box-shadow: var(--shadow-large);
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #10b981, #059669);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.thanks-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.thanks-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.next-steps {
  margin-bottom: 3rem;
}

.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  text-align: left;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--border-radius);
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.step-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.step-content h4 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.step-content p {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.step-time {
  font-size: 0.875rem;
  color: var(--accent-color);
  font-weight: 600;
}

.thanks-actions {
  margin-bottom: 3rem;
}

.contact-reminder {
  background: rgba(79, 70, 229, 0.05);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(79, 70, 229, 0.1);
}

.phone-link {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: var(--primary-dark);
}

@media (max-width: 768px) {
  .thanks-content {
    padding: 3rem 2rem;
  }
  
  .step-item {
    flex-direction: column;
    text-align: center;
  }
  
  .thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}

.contact-form-wrapper {
  background: var(--surface-color);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-large);
}

.form-header h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-label {
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.required {
  color: #ef4444;
}

.form-control, .form-select {
  border: 2px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(79, 70, 229, 0.25);
  transform: translateY(-1px);
}

.interest-checkboxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.form-check {
  background: rgba(255, 255, 255, 0.5);
  padding: 1rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.form-check:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-1px);
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.contact-sidebar {
  position: sticky;
  top: 120px;
}

.contact-info-card, .consultation-benefits, .response-time {
  background: var(--surface-color);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-medium);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-content h5 {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-content p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

.contact-content a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-content a:hover {
  color: var(--primary-dark);
}

.consultation-benefits ul {
  list-style: none;
  padding: 0;
}

.consultation-benefits li {
  padding: 0.5rem 0;
  font-weight: 500;
}

.faq-accordion .accordion-item {
  background: var(--surface-color);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-soft);
}

.faq-accordion .accordion-button {
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-weight: 600;
  padding: 1.5rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(79, 70, 229, 0.05);
  color: var(--primary-color);
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.faq-accordion .accordion-body {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .contact-sidebar {
    position: static;
    margin-top: 3rem;
  }
}

.advantage-card, .service-card {
  background: var(--surface-color);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  height: 100%;
  box-shadow: var(--shadow-medium);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.advantage-card:hover, .service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-large);
}

.advantage-icon, .service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.advantage-card h4, .service-card h3, .service-card h4 {
  margin-bottom: 1rem;
  font-weight: 600;
}

.advantage-list, .service-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.advantage-list li, .service-features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-secondary);
}

.advantage-list li::before, .service-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.service-card.premium {
  border: 2px solid var(--primary-color);
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(6, 182, 212, 0.05));
}

.service-card.compact {
  padding: 2rem;
}

.service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.service-details {
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--border-radius);
  border: 1px solid var(--glass-border);
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-label {
  font-weight: 500;
  color: var(--text-secondary);
}

.detail-value {
  font-weight: 600;
  color: var(--text-primary);
}

.service-outcomes {
  margin: 2rem 0;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.outcome-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.3);
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.outcome-item:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.outcome-icon {
  font-size: 1.25rem;
}

.compact-features ul {
  margin: 1rem 0;
}

.service-highlight {
  margin: 1.5rem 0;
  padding: 1rem;
  background: rgba(79, 70, 229, 0.1);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
}

.highlight-text {
  font-weight: 600;
  color: var(--primary-color);
}

.process-step-inline {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--border-radius);
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.process-step-inline:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.process-step-inline .step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.process-step-inline .step-content h5 {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.process-step-inline .step-content p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .process-step-inline {
    flex-direction: column;
    text-align: center;
  }
  
  .outcomes-grid {
    grid-template-columns: 1fr;
  }
}

.assessment-dimension {
  background: var(--surface-color);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  height: 100%;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.assessment-dimension:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-large);
}

.dimension-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.assessment-dimension h4 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.assessment-dimension p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.dimension-elements {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.dimension-elements span {
  background: rgba(79, 70, 229, 0.1);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.875rem;
  font-weight: 500;
}

.evaluation-process {
  display: grid;
  gap: 3rem;
  margin-top: 3rem;
}

.evaluation-process .process-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--surface-color);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
}

.evaluation-process .process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-large);
}

.evaluation-process .process-step:nth-child(even) {
  direction: rtl;
}

.evaluation-process .process-step:nth-child(even) .step-content {
  direction: ltr;
}

.step-visual {
  position: relative;
}

.step-image {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
}

.evaluation-process .step-number {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: var(--shadow-medium);
}

.step-features {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.step-features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-secondary);
}

.step-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

@media (max-width: 768px) {
  .evaluation-process .process-step {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .evaluation-process .process-step:nth-child(even) {
    direction: ltr;
  }
}

.assessment-offer {
  background: var(--surface-color);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-medium);
}

.offer-highlight {
  text-align: center;
  margin-bottom: 2rem;
}

.offer-badge {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.offer-includes ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.offer-includes li {
  padding: 0.5rem 0;
  font-weight: 500;
}

.offer-value {
  text-align: center;
  margin-top: 1.5rem;
}

.original-price {
  text-decoration: line-through;
  color: var(--text-secondary);
  margin-right: 1rem;
}

.current-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #10b981;
}

.assessment-cta-card {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(6, 182, 212, 0.05));
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-large);
}

.assessment-cta-card h3 {
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--primary-color);
}

.cta-benefits {
  margin: 2rem 0;
}

.cta-benefits .benefit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.cta-benefits .benefit-icon {
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  .assessment-offer, .assessment-cta-card {
    padding: 1.5rem;
  }
}

.philosophy-highlights, .assessment-benefits {
  margin: 2rem 0;
}

.philosophy-highlights .highlight-item, .assessment-benefits .benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.philosophy-highlights .highlight-item:hover, .assessment-benefits .benefit-item:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.highlight-icon, .benefit-icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  color: white;
  flex-shrink: 0;
}

.assessment-benefits .benefit-content h5 {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.assessment-benefits .benefit-content p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.methodology-steps {
  margin: 2rem 0;
}

.method-step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--border-radius);
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.method-step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.method-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.method-content h5 {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.method-content p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .method-step {
    flex-direction: column;
    text-align: center;
  }
}

.cookie-category {
  background: rgba(255, 255, 255, 0.3);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin: 2rem 0;
  border: 1px solid var(--glass-border);
}

.cookie-category h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.cookie-preferences {
  background: rgba(255, 255, 255, 0.3);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin: 2rem 0;
  border: 1px solid var(--glass-border);
}

.preference-item {
  background: rgba(255, 255, 255, 0.5);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  border: 1px solid var(--glass-border);
}

.preference-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.preference-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cookie-toggle {
  transform: scale(1.2);
}

.preference-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.browser-instructions {
  background: rgba(255, 255, 255, 0.3);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin: 2rem 0;
  border: 1px solid var(--glass-border);
}

.browser-instructions h4 {
  color: var(--primary-color);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.browser-instructions h4:first-child {
  margin-top: 0;
}

@media (max-width: 768px) {
  .preference-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .preference-actions {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .hero-section, .page-hero {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .floating-contact {
    bottom: 1rem;
    right: 1rem;
  }
  
  .floating-btn {
    width: 50px;
    height: 50px;
  }
  
  .process-timeline {
    padding: 1rem 0;
  }
  
  .services-tabs {
    flex-direction: column;
  }
  
  .services-tabs .nav-link {
    margin: 0.25rem 0;
  }
}

.iti {
  width: 100%;
}

.iti__country-list {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--glass-border);
}

.iti__selected-flag {
  padding: 0 0 0 0.75rem;
}