/* =============================
   RESET & GLOBAL STYLES
   ============================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:
    "Inter",
    "Segoe UI",
    system-ui,
    -apple-system,
    sans-serif;
}

body {
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.wrapper {
  padding-top: 100px;
}

/* =============================
   CSS VARIABLES
   ============================= */
:root {
  --primary: #2563eb;
  --secondary: #7c3aed;
  --accent: #10b981;
  --light: #f8fafc;
  --dark: #0f172a;
  --gray: #64748b;
  --light-gray: #f1f5f9;
  --border: #e2e8f0;
}

/* =============================
   UTILITY CLASSES
   ============================= */

/* Text colors */
.text-gray {
  color: #94a3b8;
}

.text-dark {
  color: var(--dark);
}

.text-small {
  font-size: 0.8rem;
}

.text-sm {
  font-size: 0.9rem;
}

/* Spacing - mt-4 and mb-4 already defined below */

/* Width */
.w-full {
  width: 100%;
}

/* Position */
.relative {
  position: relative;
}

/* Display */
.block {
  display: block;
}
.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

/* =============================
   BUTTONS
   ============================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.btn-outline {
  background-color: transparent;
  color: var(--dark);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: rgba(37, 99, 235, 0.05);
}

.btn-back {
  background: transparent;
  color: var(--gray);
  border: 1px solid var(--border);
}

.btn-back:hover {
  background: var(--light-gray);
}

/* =============================
   HEADER & NAVIGATION
   ============================= */
header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
}

.logo-subtext {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 2px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

nav a {
  text-decoration: none;
  color: var(--gray);
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

nav a:hover {
  color: var(--dark);
}

nav a.active {
  color: var(--primary);
}

nav a.active:after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
}

.contact-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-haeder-tel {
  font-size: 18px;
}

/* =============================
   HERO SECTION
   ============================= */
.hero {
  padding: 120px 0 100px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero-btns {
  display: flex;
  gap: 30px;
}

.hero:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.05) 0%,
    rgba(124, 58, 237, 0.05) 100%
  );
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 25% 0);
}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--dark);
}

.hero h1 span {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: 8px;
}

/* =============================
   SECTIONS COMMON STYLES
   ============================= */
.page-header {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--dark);
}

.page-header p {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

/* =============================
   SERVICES SECTION
   ============================= */
.services {
  padding: 100px 0;
  background-color: var(--light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.1),
    rgba(124, 58, 237, 0.1)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary);
  font-size: 1.5rem;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--dark);
}

.service-card p {
  color: var(--gray);
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  margin-top: auto;
}

.service-features li {
  padding: 8px 0;
  color: var(--dark);
  display: flex;
  align-items: center;
}

.service-features li:before {
  content: "✓";
  color: var(--accent);
  font-weight: bold;
  margin-right: 12px;
}

/* =============================
   TESTIMONIALS SECTION
   ============================= */
.testimonials {
  padding: 100px 0;
  background-color: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin-right: 20px;
}

.testimonial-info h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--dark);
}

.testimonial-info .date {
  color: var(--gray);
  font-size: 0.9rem;
}

.testimonial-text {
  color: var(--dark);
  line-height: 1.7;
  font-style: italic;
  position: relative;
  padding-left: 20px;
}

.testimonial-text:before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3rem;
  color: var(--light-gray);
  font-family: Georgia, serif;
}

/* =============================
   QUICK ORDER SECTION
   ============================= */
.quick-order {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  text-align: center;
}

.order-form {
  max-width: 500px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* =============================
   CONTACTS SECTION
   ============================= */
.contacts {
  padding: 80px 0;
  background-color: var(--light);
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.contact-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.1),
    rgba(124, 58, 237, 0.1)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--primary);
  font-size: 2rem;
}

.contact-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark);
}

.contact-info {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.contact-link:hover {
  color: var(--secondary);
}

/* =============================
   CONTACT FORM
   ============================= */
.contact-form-section {
  padding: 80px 0;
  background-color: white;
}

.contact-form {
  max-width: 600px;
  background: white;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
}

/* =============================
   FORM STYLES
   ============================= */
.form-group {
  margin-bottom: 24px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark);
}

.modal__form-group {
  margin-bottom: 24px;
  text-align: left;
}

.modal__form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: white;
  color: var(--dark);
  font-size: 1rem;
  transition: all 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-control::placeholder {
  color: var(--gray);
}

/* =============================
   WORK PRINCIPLES SECTION
   ============================= */
.work-principles {
  padding: 80px 0;
  background-color: var(--light);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.principle-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.principle-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.1),
    rgba(124, 58, 237, 0.1)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
  font-size: 1.5rem;
}

.principle-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark);
}

.principle-card p {
  color: var(--gray);
  line-height: 1.6;
}

/* =============================
   PROMOTIONS SECTION
   ============================= */
.promotions {
  padding: 80px 0;
  background-color: var(--light);
}

.promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.promotion-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.promotion-card:hover {
  transform: translateY(-8px);
}

.promotion-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.promotion-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.1),
    rgba(124, 58, 237, 0.1)
  );
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary);
  font-size: 1.8rem;
}

.promotion-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark);
}

.promotion-card p {
  color: var(--gray);
  margin-bottom: 24px;
  line-height: 1.7;
}

.promotion-features {
  list-style: none;
  margin: 24px 0;
}

.promotion-features li {
  padding: 10px 0;
  color: var(--dark);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.promotion-features li:last-child {
  border-bottom: none;
}

.promotion-features li:before {
  content: "✓";
  color: var(--accent);
  font-weight: bold;
  margin-right: 12px;
}

/* =============================
   ADVANTAGES SECTION
   ============================= */
.advantages {
  padding: 80px 0;
  background-color: white;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.advantage-card {
  text-align: center;
  padding: 30px;
}

.advantage-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.1),
    rgba(124, 58, 237, 0.1)
  );
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--primary);
  font-size: 1.8rem;
}

.advantage-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--dark);
}

.advantage-card p {
  color: var(--gray);
  line-height: 1.6;
}

/* =============================
   CTA SECTIONS
   ============================= */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 40px;
}

/* =============================
   MODAL STYLES
   ============================= */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    visibility 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: white;
  border-radius: 20px;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(30px);
  transition: transform 0.3s;
  position: relative;
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray);
  cursor: pointer;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.modal-close:hover {
  background-color: var(--light-gray);
}

.modal-header {
  padding: 40px 40px 20px;
  border-bottom: 1px solid var(--border);
}

.modal-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.modal-header p {
  color: var(--gray);
}

.modal-body {
  padding: 30px 40px 40px;
}

/* Modal Steps */
.modal-step {
  display: none;
}

.modal-step.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

/* Step 1: Specialist Selection */
.specialists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.specialist-card {
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  background: white;
}

.specialist-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
}

.specialist-card.selected {
  border-color: var(--primary);
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.05),
    rgba(124, 58, 237, 0.05)
  );
}

.specialist-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.1),
    rgba(124, 58, 237, 0.1)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: var(--primary);
  font-size: 1.5rem;
}

.specialist-card.selected .specialist-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
}

.specialist-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
}

.specialist-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.5;
}

.selected-specialist-info {
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.05),
    rgba(124, 58, 237, 0.05)
  );
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.selected-specialist-info .specialist-icon {
  margin: 0;
  width: 50px;
  height: 50px;
}

.selected-specialist-info h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--dark);
}

.selected-specialist-info p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* Modal Navigation */
.modal-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* Step 3: Confirmation */
.confirmation-step {
  text-align: center;
  padding: 40px 20px;
}

.confirmation-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent), #0da371);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 2.5rem;
}

.confirmation-step h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.confirmation-step p {
  color: var(--gray);
  margin-bottom: 30px;
  line-height: 1.6;
}

.confirmation-details {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 20px;
  margin: 30px 0;
  text-align: left;
}

.confirmation-details h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.confirmation-details ul {
  list-style: none;
}

.confirmation-details li {
  padding: 8px 0;
  color: var(--dark);
  display: flex;
  align-items: center;
}

.confirmation-details li i {
  color: var(--accent);
  margin-right: 10px;
}

/* =============================
   FOOTER
   ============================= */
footer {
  background-color: var(--dark);
  color: white;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 24px;
  font-weight: 600;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-contact li {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

.footer-contact i {
  margin-right: 12px;
  color: var(--primary);
  width: 20px;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  font-size: 0.9rem;
}

/* =============================
   ANIMATIONS
   ============================= */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease forwards;
}

/* Новый дизайн для блока services */

.services-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  margin-top: 2rem;
}

.services-highlight {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.highlight-card {
  background: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  border-left: 4px solid #3b82f6;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.highlight-icon i {
  font-size: 1.5rem;
  color: #3b82f6;
}

.highlight-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--dark);
}

.highlight-card p {
  color: var(--gray);
  line-height: 1.4;
}

.services-detailed {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-category {
  background: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.service-category:hover {
  transform: translateY(-5px);
}

.category-header {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  gap: 1rem;
}

.category-icon {
  width: 60px;
  height: 60px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.category-icon i {
  font-size: 1.8rem;
  color: #3b82f6;
}

.category-title h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
}

.category-title p {
  color: #94a3b8;
  font-size: 0.9rem;
}

.category-features {
  padding: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.feature-item i {
  color: #10b981;
  font-size: 0.9rem;
}

.feature-item span {
  color: var(--dark);
  font-size: 0.95rem;
}

.pricing-section {
  padding: 80px 0;
  background-color: #f8fafc;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease;
  text-align: center;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.1),
    rgba(124, 58, 237, 0.1)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #2563eb;
  font-size: 1.5rem;
}

.pricing-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #0f172a;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 10px;
}

.price-unit {
  font-size: 0.9rem;
  color: #64748b;
}

.pricing-features {
  list-style: none;
  margin: 20px 0;
  text-align: left;
}

.pricing-features li {
  padding: 8px 0;
  color: #475569;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.pricing-features li i {
  color: #10b981;
  margin-right: 8px;
  font-size: 0.8rem;
}

/* Стили для таблицы тарифов */
.tariffs-section {
  padding: 80px 0;
  background-color: white;
}

.tariffs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tariffs-table thead {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: white;
}

.tariffs-table th {
  padding: 20px;
  text-align: left;
  font-weight: 600;
  font-size: 1.1rem;
}

.tariffs-table tbody tr {
  border-bottom: 1px solid #e2e8f0;
  transition: background-color 0.3s;
}

.tariffs-table tbody tr:hover {
  background-color: #f8fafc;
}

.tariffs-table td {
  padding: 18px 20px;
  color: #475569;
}

.tariffs-table td:first-child {
  font-weight: 500;
  color: #0f172a;
}

.tariffs-table td:last-child {
  font-weight: 600;
  color: #2563eb;
  text-align: right;
}

.service-note {
  background: #f0f9ff;
  border-left: 4px solid #2563eb;
  padding: 15px 20px;
  margin-top: 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #475569;
}

/* Стили для гарантийного блока */
.guarantee-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  text-align: center;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.guarantee-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.guarantee-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.1),
    rgba(37, 99, 235, 0.1)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #10b981;
  font-size: 1.8rem;
}

.guarantee-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #0f172a;
}

.guarantee-card p {
  color: #64748b;
  line-height: 1.6;
}

/* Адаптивность для таблицы */
.mobile-price-card {
  display: none;
  background: white;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.submit-btn {
  background: #3b82f6;
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  display: block;
  margin: 30px auto 0;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #2563eb;
}