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

body {
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    sans-serif;
  background: #f9f9f9;
  overflow: auto;
  min-height: 100vh;
  width: 100vw;
  user-select: none;
  -webkit-user-select: none;
}

header {
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.02),
    0 1px 2px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(0px);
}

.container-service {
  max-width: 1280px;
  margin: 0 auto;
}

/* Hero section */
.hero-service {
  background: linear-gradient(105deg, #eef2f9 0%, #ffffff 100%);
  padding: 64px 0 48px;
  border-bottom: 1px solid #e2e8f0;
}

.hero-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-content {
  flex: 1;
 }

.hero-badge {
  background: #d9eaf3;
  color: #1e6a8f;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #0f2b3d;
}

.hero-content p {
  font-size: 1.1rem;
  color: #2c3e50;
  max-width: 90%;
  margin-bottom: 32px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 20px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1f6390;
}

.hero-image {
  flex: 0.9;
  text-align: center;
}

.hero-image i {
  font-size: 180px;
  color: #cddfe9;
  transition: 0.3s;
}

/* cards сервисов */
.services-section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-sub {
  text-align: center;
  color: #4b5565;
  max-width: 680px;
  margin: 0 auto 56px auto;
  font-size: 1.1rem;
}

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

.service-card {
  background: white;
  border-radius: 28px;
  padding: 32px 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s;
  border: 1px solid #eef2ff;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.08);
}

.card-icon {
  font-size: 2.8rem;
  color: #2c7ab1;
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-card p {
  color: #475569;
  margin-bottom: 20px;
}

.more-link {
  color: #1f6390;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* support-request / контакт */
.support-zone {
  background: #ffffff;
  border-radius: 48px;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.05);
  margin: 40px 0 80px;
  border: 1px solid #e9edf2;
  overflow: hidden;
}

.support-flex {
  display: flex;
  flex-wrap: wrap;
}

.support-info {
  flex: 1;
  background: #1a4058;
  color: white;
  padding: 48px 40px;
}

.support-info h2 {
  font-size: 1.9rem;
  margin-bottom: 20px;
}

.support-info p {
  opacity: 0.85;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-detail i {
  font-size: 1.4rem;
  width: 32px;
}

.support-form {
  flex: 1;
  padding: 48px 40px;
  background: #fefefe;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #cfdfed;
  border-radius: 24px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
  transition: 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2c7ab1;
  box-shadow: 0 0 0 3px rgba(44, 122, 177, 0.1);
}

.btn-primary {
  background: #1f6390;
  border: none;
  padding: 14px 28px;
  border-radius: 40px;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s;
  width: 100%;
}

.btn-primary:hover {
  background: #0e4a6f;
  transform: scale(0.98);
}

/* этапы работы */
.stages {
  padding: 40px 0 70px;
}

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

.step {
  flex: 1;
  min-width: 180px;
  text-align: center;
  background: white;
  
  border-radius: 32px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
  border: 1px solid #eef2f8;
}

.step-number {
  width: 48px;
  height: 48px;
  background: #e2eef9;
  color: #1f6390;
  font-weight: 800;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 60px;
  margin: 0 auto 20px;
}

/* faq */
.faq-section {
  background: #e8ecef;
  border-radius: 48px;
  padding: 56px 40px;
  margin: 40px 0 60px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 32px;
}

.faq-item h4 {
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.faq-item p {
  color: #334155;
}
.grecaptcha-badge {
  opacity: 0 !important;
  visibility: hidden !important;

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-image i {
    font-size: 120px;
  }
  .nav-links {
    gap: 16px;
  }
  .container {
    padding: 0 20px;
  }
  .support-flex {
    flex-direction: column;
  }
}

button,
input,
textarea {
  font-family: inherit;
}
