/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-outline {
  background: transparent;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.btn-outline:hover {
  background: #2563eb;
  color: white;
}

.btn-large {
  padding: 16px 32px;
  font-size: 18px;
}

.btn-small {
  padding: 8px 16px;
  font-size: 14px;
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 18px;
}

/* Header */
.header {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  color: white;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.logo-title {
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-subtitle {
  font-size: 10px;
  color: #cbd5e1;
  opacity: 0.8;
  margin: 0;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 16px;
}

.nav a:hover {
  color: #60a5fa;
}

.desktop-nav {
  display: flex;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
}

.mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 20px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

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

.mobile-nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-cta {
  margin-top: 20px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #1e3a8a 100%);
  color: white;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fillRule='evenodd'%3E%3Cg fill='%239C92AC' fillOpacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #cbd5e1;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.5rem, 4vw, 6rem);
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 24px;
}

.title-line {
  display: block;
  margin-bottom: 8px;
}

.title-gradient-1 {
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-gradient-2 {
  background: linear-gradient(135deg, #cbd5e1 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-gradient-3 {
  background: linear-gradient(135deg, #60a5fa 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 18px;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 30px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 28px;
  font-weight: 800;
  color: #60a5fa;
  margin-bottom: 4px;
}

.stat-text {
  font-size: 12px;
  color: #94a3b8;
  margin: 0;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  border-radius: 24px;
  filter: blur(40px);
  opacity: 0.3;
  transform: rotate(6deg) scale(1.1);
}

.hero-img {
  width: 350px;
  height: 450px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 10;
  transition: transform 0.5s ease;
}

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

.hero-rating {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: white;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  z-index: 20;
  color: #1f2937;
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 4px;
}

.rating-text {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
}

.rating-subtitle {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
}

/* Partners Section */
.partners {
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  padding: 60px 0;
}

.partners-text {
  text-align: center;
  color: #6b7280;
  font-weight: 500;
  margin-bottom: 30px;
  font-size: 16px;
}

.partners-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  opacity: 0.6;
}

.partner {
  font-size: 24px;
  font-weight: 800;
  color: #6b7280;
  transition: color 0.3s ease;
}

.partner:hover {
  color: #1f2937;
}

/* Services Section */
.services {
  background: white;
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title.white {
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 18px;
  color: #6b7280;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-subtitle.white-muted {
  color: #cbd5e1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

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

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #1e293b;
  transition: color 0.3s ease;
}

.service-card:hover .service-title {
  color: #2563eb;
}

.service-desc {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #6b7280;
}

/* About Section */
.about {
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
  padding: 80px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-intro {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 24px;
}

.about-description {
  margin-bottom: 32px;
}

.about-description p {
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 16px;
}

.about-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.about-features {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.features-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateX(5px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.feature:hover .feature-icon {
  transform: scale(1.1);
}

.feature-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.feature:hover .feature-text h4 {
  color: #2563eb;
}

.feature-text p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

/* Results Section */
.results {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  padding: 80px 0;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.result-card {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  box-shadow: 0 10px 40px rgba(37, 99, 235, 0.3);
}

.result-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.result-card:hover::before {
  opacity: 1;
}

.result-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.4);
}

.result-card > * {
  position: relative;
  z-index: 10;
}

.result-icon {
  margin-bottom: 14px;
  opacity: 0.8;
}

.result-number {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 8px;
  transition: transform 0.3s ease;
}

.result-card:hover .result-number {
  transform: scale(1.1);
}

.result-text {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.result-subtext {
  font-size: 13px;
  opacity: 0.9;
  margin: 0;
}

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

/* Team Section */
.team {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #1e3a8a 100%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.team::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fillRule='evenodd'%3E%3Cg fill='%239C92AC' fillOpacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.team > * {
  position: relative;
  z-index: 10;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.team-member {
  text-align: center;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.member-image {
  position: relative;
  margin-bottom: 20px;
}

.member-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  border-radius: 20px;
  filter: blur(20px);
  opacity: 0.3;
  transition: opacity 0.5s ease;
}

.team-member:hover .member-image::before {
  opacity: 0.5;
}

.member-image img {
  width: 220px;
  height: 260px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 10;
  transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
  transform: scale(1.05);
}

.member-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.team-member:hover .member-name {
  color: #60a5fa;
}

.member-role {
  color: #60a5fa;
  margin-bottom: 4px;
  font-size: 14px;
}

.member-experience {
  font-size: 13px;
  color: #94a3b8;
  margin: 0;
}

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

/* Contact Section */
.contact {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #1e3a8a 100%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fillRule='evenodd'%3E%3Cg fill='%239C92AC' fillOpacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.contact > * {
  position: relative;
  z-index: 10;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-description {
  font-size: 18px;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 32px;
}

.contact-details {
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateX(5px);
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
  transform: scale(1.1);
}

.contact-value {
  font-size: 18px;
  font-weight: 600;
  color: white;
}

.contact-note {
  font-size: 13px;
  color: #94a3b8;
  margin: 0;
}

.guarantees {
  background: rgba(37, 99, 235, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 16px;
  padding: 20px;
}

.guarantees-title {
  font-size: 16px;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 14px;
}

.guarantees-list {
  list-style: none;
}

.guarantees-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #cbd5e1;
}

/* Form */
.form-container {
  position: relative;
}

.form-card,
.success-card {
  background: white;
  color: #1f2937;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.form-header {
  text-align: center;
  margin-bottom: 24px;
}

.form-title {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.form-subtitle {
  color: #6b7280;
  margin: 0;
  font-size: 14px;
}

.consultation-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-input {
  width: 100%;
  padding: 14px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-family: inherit;
  font-size: 16px;
  transition: all 0.3s ease;
  background: white;
}

.form-input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input::placeholder {
  color: #9ca3af;
}

textarea.form-input {
  resize: vertical;
  min-height: 100px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.checkbox-label {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
  cursor: pointer;
}

.checkbox-link {
  color: #2563eb;
  text-decoration: none;
}

.checkbox-link:hover {
  text-decoration: underline;
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: #6b7280;
  margin: 0;
}

/* Success Message */
.success-card {
  text-align: center;
}

.success-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.success-title {
  font-size: 28px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 14px;
}

.success-description {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 24px;
}

.success-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #dbeafe;
  color: #1e40af;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 20px;
}

.telegram-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #0088cc 0%, #0066aa 100%);
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 136, 204, 0.3);
  transition: all 0.3s ease;
}

.telegram-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 136, 204, 0.4);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  color: white;
  padding: 60px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}

.footer-section h3 {
  margin-bottom: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-description {
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: #2563eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

.footer-title {
  font-size: 16px;
  font-weight: 600;
  color: #cbd5e1;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
}

.footer-links a:hover {
  color: white;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.footer-contact svg {
  color: #60a5fa;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid #374151;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 12px;
}

.legal-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: white;
}

.copyright {
  color: #94a3b8;
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

.cta-card {
  background: rgba(37, 99, 235, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 8px;
  text-align: center;
}

.cta-title {
  color: #cbd5e1;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 13px;
}

.disclaimer {
  font-size: 11px;
  color: #6b7280;
  text-align: center;
  margin: 0;
}

.footer-disclaimer {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #374151;
  background: rgba(0, 0, 0, 0.2);
}

.footer-disclaimer p {
  font-size: 11px;
  color: #9ca3af;
  margin-bottom: 6px;
}

.footer-disclaimer p:last-child {
  margin-bottom: 0;
}

/* Loading States */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.loading-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content,
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image {
    order: -1;
  }

  .hero-img {
    width: 300px;
    height: 380px;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .hero-stats {
    justify-content: center;
    gap: 20px;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .results-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    padding: 60px 0 40px;
    text-align: center;
    min-height: 80vh;
  }

  .hero-content {
    gap: 30px;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
    margin-bottom: 20px;
  }

  .hero-description {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .hero-buttons {
    justify-content: center;
    gap: 12px;
  }

  .hero-buttons .btn {
    padding: 12px 20px;
    font-size: 15px;
  }

  .hero-stats {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-text {
    font-size: 11px;
  }

  .hero-img {
    width: 280px;
    height: 350px;
  }

  .hero-rating {
    bottom: -15px;
    right: -15px;
    padding: 10px;
  }

  .partners {
    padding: 40px 0;
  }

  .partners-text {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .partners-list {
    gap: 20px;
    flex-direction: column;
  }

  .partner {
    font-size: 18px;
  }

  .services {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 16px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 24px;
  }

  .service-icon {
    width: 48px;
    height: 48px;
  }

  .service-title {
    font-size: 20px;
  }

  .about {
    padding: 60px 0;
  }

  .about-content {
    gap: 30px;
  }

  .about-features {
    padding: 24px;
  }

  .features-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .features-list {
    gap: 16px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
  }

  .results {
    padding: 60px 0;
  }

  .results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
  }

  .result-card {
    padding: 24px;
  }

  .result-number {
    font-size: 32px;
  }

  .result-text {
    font-size: 14px;
  }

  .result-subtext {
    font-size: 12px;
  }

  .team {
    padding: 60px 0;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }

  .member-image img {
    width: 160px;
    height: 200px;
  }

  .member-name {
    font-size: 16px;
  }

  .member-role {
    font-size: 13px;
  }

  .member-experience {
    font-size: 12px;
  }

  .contact {
    padding: 60px 0;
  }

  .contact-content {
    gap: 30px;
  }

  .contact-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 20px;
  }

  .contact-description {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .contact-details {
    margin-bottom: 24px;
  }

  .contact-item {
    gap: 12px;
    margin-bottom: 16px;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
  }

  .contact-value {
    font-size: 16px;
  }

  .guarantees {
    padding: 16px;
  }

  .guarantees-title {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .form-card,
  .success-card {
    padding: 24px;
  }

  .form-title {
    font-size: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-input {
    padding: 12px;
    font-size: 16px;
  }

  .btn-full {
    padding: 14px;
    font-size: 16px;
  }

  .success-title {
    font-size: 24px;
  }

  .success-description {
    font-size: 15px;
  }

  .telegram-btn {
    padding: 12px 24px;
    font-size: 15px;
  }

  .footer {
    padding: 40px 0 0;
  }

  .footer-content {
    gap: 24px;
    margin-bottom: 30px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
    padding: 20px 0;
  }

  .legal-links {
    justify-content: center;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .header {
    padding: 10px 0;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
  }

  .logo-title {
    font-size: 18px;
  }

  .logo-subtitle {
    font-size: 9px;
  }

  .btn {
    padding: 10px 16px;
    font-size: 14px;
    gap: 6px;
  }

  .btn-large {
    padding: 12px 20px;
    font-size: 15px;
  }

  .hero {
    padding: 40px 0 30px;
    min-height: 70vh;
  }

  .hero-badge {
    padding: 6px 16px;
    font-size: 12px;
    margin-bottom: 16px;
  }

  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
    margin-bottom: 16px;
  }

  .hero-description {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .hero-buttons {
    gap: 8px;
  }

  .hero-stats {
    gap: 12px;
  }

  .stat-number {
    font-size: 20px;
  }

  .stat-text {
    font-size: 10px;
  }

  .hero-img {
    width: 240px;
    height: 300px;
  }

  .hero-rating {
    bottom: -10px;
    right: -10px;
    padding: 8px;
  }

  .rating-text {
    font-size: 12px;
  }

  .rating-subtitle {
    font-size: 10px;
  }

  .partners {
    padding: 30px 0;
  }

  .partners-text {
    font-size: 13px;
  }

  .partner {
    font-size: 16px;
  }

  .services {
    padding: 40px 0;
  }

  .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .section-subtitle {
    font-size: 14px;
  }

  .service-card {
    padding: 20px;
  }

  .service-icon {
    width: 44px;
    height: 44px;
  }

  .service-title {
    font-size: 18px;
  }

  .service-desc {
    font-size: 14px;
  }

  .about {
    padding: 40px 0;
  }

  .about-intro {
    font-size: 16px;
  }

  .about-description p {
    font-size: 14px;
  }

  .about-features {
    padding: 20px;
  }

  .features-title {
    font-size: 18px;
  }

  .feature-icon {
    width: 36px;
    height: 36px;
  }

  .feature-text h4 {
    font-size: 14px;
  }

  .feature-text p {
    font-size: 13px;
  }

  .results {
    padding: 40px 0;
  }

  .results-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .result-card {
    padding: 20px;
  }

  .result-number {
    font-size: 28px;
  }

  .result-text {
    font-size: 13px;
  }

  .team {
    padding: 40px 0;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .member-image img {
    width: 180px;
    height: 220px;
  }

  .contact {
    padding: 40px 0;
  }

  .contact-title {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }

  .contact-description {
    font-size: 14px;
  }

  .contact-value {
    font-size: 14px;
  }

  .contact-note {
    font-size: 12px;
  }

  .form-card,
  .success-card {
    padding: 20px;
  }

  .form-title {
    font-size: 18px;
  }

  .form-subtitle {
    font-size: 13px;
  }

  .form-input {
    padding: 10px;
    font-size: 15px;
  }

  .checkbox-label {
    font-size: 12px;
  }

  .form-note {
    font-size: 12px;
  }

  .success-icon {
    width: 60px;
    height: 60px;
  }

  .success-title {
    font-size: 20px;
  }

  .success-description {
    font-size: 14px;
  }

  .telegram-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-description {
    font-size: 13px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .legal-links a {
    font-size: 12px;
  }

  .copyright {
    font-size: 12px;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .btn:hover {
    transform: none;
  }

  .service-card:hover,
  .result-card:hover,
  .team-member:hover {
    transform: none;
  }

  .hero-img:hover,
  .member-image img:hover {
    transform: none;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.animate-left {
  opacity: 0;
  animation: fadeInLeft 0.8s ease forwards;
}

.animate-right {
  opacity: 0;
  animation: fadeInRight 0.8s ease forwards;
}

/* Utility Classes */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.hidden {
  display: none;
}
.visible {
  display: block;
}
.flex {
  display: flex;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gap-4 {
  gap: 16px;
}
.gap-8 {
  gap: 32px;
}
.mb-4 {
  margin-bottom: 16px;
}
.mb-8 {
  margin-bottom: 32px;
}
.mt-4 {
  margin-top: 16px;
}
.mt-8 {
  margin-top: 32px;
}
.p-4 {
  padding: 16px;
}
.p-8 {
  padding: 32px;
}

/* Print Styles */
@media print {
  .header,
  .mobile-menu,
  .hero,
  .partners,
  .contact,
  .footer {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
    color: black;
  }

  .section-title {
    color: black !important;
    -webkit-text-fill-color: black !important;
  }
}
