* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Exo 2', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #2c3e50;
  background-color: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: calc(1.875rem + 1.5vw); }
h2 { font-size: calc(1.325rem + .9vw); }
h3 { font-size: calc(1.3rem + .6vw); }
h4 { font-size: calc(1.275rem + .3vw); }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p { margin-top: 0; margin-bottom: 1rem; }

a {
  text-decoration: none;
  display: inline-block;
  transition: all .3s ease;
  color: #6366f1;
}

a:hover { opacity: .8; }

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

button { cursor: pointer; }

input, button, select, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.display-2 { font-size: calc(1.675rem + 5.1vw); font-weight: 700; line-height: 1.1; }
.display-3 { font-size: calc(1.575rem + 3.9vw); font-weight: 700; line-height: 1.1; }
.display-4 { font-size: calc(1.475rem + 2.7vw); font-weight: 700; line-height: 1.1; }
.display-5 { font-size: calc(1.425rem + 2.1vw); font-weight: 700; line-height: 1.1; }
.display-6 { font-size: calc(1.375rem + 1.5vw); font-weight: 700; line-height: 1.1; }

.container {
  width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.75rem;
  margin-left: -0.75rem;
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.col-6 { flex: 0 0 auto; width: 50%; }
.col-12 { flex: 0 0 auto; width: 100%; }

.form-label {
  margin-bottom: .5rem;
  display: inline-block;
}

.form-control, .form-select {
  display: block;
  width: 100%;
  padding: .825rem 1.1875rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.2;
  background-color: #fff;
  border: 2px solid #e2e8f0;
  border-radius: .625rem;
  transition: border-color .3s ease, box-shadow .3s ease;
}

.form-control:focus, .form-select:focus {
  outline: 0;
  border-color: #6366f1;
  box-shadow: 0 0 0 0.25rem rgba(99, 102, 241, 0.15);
}

.form-select {
  padding-right: 3.5625rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%236366f1' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1875rem center;
  background-size: 16px 12px;
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 0;
  margin-bottom: 0;
}

.form-check-input {
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0;
  margin-right: .5rem;
  vertical-align: top;
  background-color: #fff;
  border: 2px solid #cbd5e1;
  appearance: none;
  border-radius: .375rem;
  transition: all .3s ease;
}

.form-check-input:checked {
  background-color: #6366f1;
  border-color: #6366f1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.form-check-label { cursor: pointer; }

.btn {
  display: inline-block;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  user-select: none;
  border: 2px solid transparent;
  padding: .825rem 1.1875rem;
  font-size: 1.125rem;
  border-radius: .625rem;
  transition: all .3s ease;
}

.btn-lg {
  padding: 1rem 1.5rem;
  font-size: 1.25rem;
  border-radius: .75rem;
}

.btn-action-1 {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
}

.btn-action-1:hover {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
  transform: translateY(-2px);
  opacity: 1;
  color: white;
}

.btn-outline-light {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: white;
  color: white;
}

.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.d-flex { display: flex !important; }
.d-inline-block { display: inline-block !important; }
.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }
.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }
.min-vh-100 { min-height: 100vh !important; }
.flex-column { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.flex-shrink-0 { flex-shrink: 0 !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.align-items-center { align-items: center !important; }
.align-items-start { align-items: flex-start !important; }
.text-center { text-align: center !important; }
.text-white { color: white !important; }
.text-muted { color: #64748b !important; }
.text-primary { color: #6366f1 !important; }
.text-success { color: #10b981 !important; }
.text-warning { color: #f59e0b !important; }
.fw-bold { font-weight: 700 !important; }
.opacity-75 { opacity: .75 !important; }
.opacity-90 { opacity: .9 !important; }
.lh-lg { line-height: 1.8 !important; }
.small { font-size: .875rem !important; }

.mt-4 { margin-top: 1rem !important; }
.mt-6 { margin-top: 1.5rem !important; }
.mt-8 { margin-top: 2rem !important; }
.mt-10 { margin-top: 2.5rem !important; }
.mt-12 { margin-top: 3rem !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: .5rem !important; }
.mb-3 { margin-bottom: .75rem !important; }
.mb-4 { margin-bottom: 1rem !important; }
.mb-5 { margin-bottom: 1.25rem !important; }
.mb-6 { margin-bottom: 1.5rem !important; }
.mb-8 { margin-bottom: 2rem !important; }
.mb-10 { margin-bottom: 2.5rem !important; }
.mb-12 { margin-bottom: 3rem !important; }
.mb-15 { margin-bottom: 3.75rem !important; }
.me-2 { margin-right: .5rem !important; }
.me-3 { margin-right: .75rem !important; }
.me-4 { margin-right: 1rem !important; }
.me-6 { margin-right: 1.5rem !important; }
.ms-2 { margin-left: .5rem !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }

.p-6 { padding: 1.5rem !important; }
.p-8 { padding: 2rem !important; }
.p-10 { padding: 2.5rem !important; }
.py-3 { padding-top: .75rem !important; padding-bottom: .75rem !important; }
.py-4 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-8 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
.py-10 { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
.py-12 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.py-15 { padding-top: 3.75rem !important; padding-bottom: 3.75rem !important; }
.px-6 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.px-8 { padding-left: 2rem !important; padding-right: 2rem !important; }
.px-10 { padding-left: 2.5rem !important; padding-right: 2.5rem !important; }
.px-12 { padding-left: 3rem !important; padding-right: 3rem !important; }
.pt-8 { padding-top: 2rem !important; }
.pe-8 { padding-right: 2rem !important; }

.fs-1 { font-size: 1.5rem !important; }
.fs-2 { font-size: 1.375rem !important; }
.fs-3 { font-size: 1.25rem !important; }
.fs-4 { font-size: 1.125rem !important; }
.fs-5 { font-size: 1rem !important; }

.rounded-3 { border-radius: .5rem !important; }
.rounded-4 { border-radius: .625rem !important; }
.rounded-5 { border-radius: .75rem !important; }
.rounded-circle { border-radius: 50% !important; }

.shadow-sm { box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important; }
.shadow-lg { box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important; }

.overflow-hidden { overflow: hidden !important; }

.border-top { border-top: 1px solid !important; }
.border-white { border-color: white !important; }
.border-opacity-25 { opacity: .25 !important; }

.bg-light { background-color: #f8f9fa !important; }
.bg-white { background-color: #fff !important; }
.bg-secondary { background-color: #1e293b !important; }

.gradient-bg {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
}

.gradient-text {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-section {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  min-height: 600px;
}

.hero-bg {
  background-image: url('imageвgeneral/imgca1.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}

.hero-overlay {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.95) 0%, rgba(124, 58, 237, 0.95) 100%);
}

.hero-wave {
  height: 80px;
}

.badge-custom {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  display: inline-block;
}

.badge-outline {
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  padding: .5rem 1.5rem;
  display: inline-block;
  font-weight: 700;
}

.card-custom {
  background: white;
  transition: all .4s ease;
  border: 2px solid transparent;
}

.card-custom:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
  border-color: #6366f1;
}

.featured-card {
  border: 2px solid #6366f1;
  position: relative;
}

.featured-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: .625rem .625rem 0 0;
}

.shadow-hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: box-shadow .4s ease, transform .4s ease;
}

.shadow-hover:hover {
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto;
}

.icon-wrapper-large {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.icon-circle {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem 1.5rem;
  border-radius: .75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  backdrop-filter: blur(10px);
}

.decorative-circle {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  top: -200px;
  right: -200px;
  z-index: 1;
}

.image-stack {
  padding-left: 30px;
}

.bg-accent-shape {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: .625rem;
  top: 30px;
  left: -30px;
  z-index: 1;
  opacity: 0.1;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all .3s ease;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.contact-wrapper {
  background: white;
}

.contact-info-section {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.contact-details {
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
}

.footer-section {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.footer-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
  radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.footer-link {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color .3s ease;
}

.footer-link:hover {
  color: white;
  opacity: 1;
}

.contact-footer {
  display: flex;
  align-items: flex-start;
}

.value-card {
  background: white;
  border: 2px solid #f1f5f9;
  transition: all .3s ease;
}

.value-card:hover {
  border-color: #6366f1;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
  transform: translateY(-4px);
}

.advantage-card {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  border: 2px solid rgba(99, 102, 241, 0.1);
  transition: all .3s ease;
}

.advantage-card:hover {
  border-color: #6366f1;
  transform: translateY(-4px);
}

.number-badge {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 auto;
}

.success-icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon i {
  font-size: 6rem;
}

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

@media (min-width: 576px) {
  .container { max-width: 540px; }
}

@media (min-width: 768px) {
  .container { max-width: 720px; }
  .col-md-6 { flex: 0 0 auto; width: 50%; }
  .flex-md-row { flex-direction: row !important; }
  .text-md-start { text-align: left !important; }
  .text-md-end { text-align: right !important; }
  .mb-md-0 { margin-bottom: 0 !important; }
}

@media (min-width: 992px) {
  .container { max-width: 960px; }
  .col-lg-3 { flex: 0 0 auto; width: 25%; }
  .col-lg-4 { flex: 0 0 auto; width: 33.33333333%; }
  .col-lg-5 { flex: 0 0 auto; width: 41.66666667%; }
  .col-lg-6 { flex: 0 0 auto; width: 50%; }
  .col-lg-7 { flex: 0 0 auto; width: 58.33333333%; }
  .col-lg-8 { flex: 0 0 auto; width: 66.66666667%; }
  .col-lg-9 { flex: 0 0 auto; width: 75%; }
  .col-lg-10 { flex: 0 0 auto; width: 83.33333333%; }
  .py-lg-15 { padding-top: 3.75rem !important; padding-bottom: 3.75rem !important; }
  .py-lg-20 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
  .py-lg-25 { padding-top: 6.25rem !important; padding-bottom: 6.25rem !important; }
  .pe-lg-8 { padding-right: 2rem !important; }
  .order-lg-1 { order: 1 !important; }
  .order-lg-2 { order: 2 !important; }
  .p-lg-12 { padding: 3rem !important; }
}

@media (min-width: 1200px) {
  .container { max-width: 1140px; }
  .col-xl-3 { flex: 0 0 auto; width: 25%; }
  .col-xl-6 { flex: 0 0 auto; width: 50%; }
  .col-xl-8 { flex: 0 0 auto; width: 66.66666667%; }
  h1 { font-size: 3rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.75rem; }
  h4 { font-size: 1.5rem; }
  .display-2 { font-size: 4.5rem; }
  .display-3 { font-size: 4rem; }
  .display-4 { font-size: 3.5rem; }
  .display-5 { font-size: 3rem; }
  .display-6 { font-size: 2.5rem; }
}

@media (max-width: 767px) {
  .hero-section { min-height: 500px; }
  .py-15 { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
  .order-1 { order: 1 !important; }
  .order-2 { order: 2 !important; }
  .g-10 { gap: 2rem; }
}