/* ========================================   MyDocs24 — Landing Page Styles   ======================================== *//* Reset & Base */*, *::before, *::after {  margin: 0;  padding: 0;  box-sizing: border-box;}:root {  --primary: #1a56db;  --primary-dark: #1e40af;  --primary-light: #dbeafe;  --green: #16a34a;  --green-dark: #15803d;  --green-light: #dcfce7;  --gray-50: #f9fafb;  --gray-100: #f3f4f6;  --gray-200: #e5e7eb;  --gray-300: #d1d5db;  --gray-400: #9ca3af;  --gray-500: #6b7280;  --gray-600: #4b5563;  --gray-700: #374151;  --gray-800: #1f2937;  --gray-900: #111827;  --white: #ffffff;  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);  --radius: 8px;  --radius-lg: 12px;  --radius-xl: 16px;  --transition: all 0.3s ease;}html {  scroll-behavior: smooth;  font-size: 16px;}body {  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;  color: var(--gray-800);  line-height: 1.6;  background: var(--white);  overflow-x: hidden;}a {  color: inherit;  text-decoration: none;}img {  max-width: 100%;  display: block;}.container {  max-width: 1200px;  margin: 0 auto;  padding: 0 20px;}/* ========================================   NAVBAR   ======================================== */.navbar {  position: fixed;  top: 0;  left: 0;  right: 0;  z-index: 1000;  background: rgba(255,255,255,0.95);  backdrop-filter: blur(10px);  border-bottom: 1px solid var(--gray-200);  transition: var(--transition);}.navbar .container {  display: flex;  align-items: center;  justify-content: space-between;  height: 70px;}.navbar-brand {  font-size: 1.5rem;  font-weight: 700;  color: var(--primary);  letter-spacing: -0.5px;}.navbar-brand span {  color: var(--gray-800);}.nav-links {  display: flex;  align-items: center;  gap: 8px;  list-style: none;}.nav-links a {  padding: 8px 16px;  font-size: 0.9rem;  font-weight: 500;  color: var(--gray-600);  border-radius: var(--radius);  transition: var(--transition);}.nav-links a:hover {  color: var(--primary);  background: var(--primary-light);}.lang-switcher {  display: flex;  gap: 4px;  margin-left: 16px;  padding-left: 16px;  border-left: 1px solid var(--gray-200);}.lang-switcher a {  padding: 6px 10px;  font-size: 0.8rem;  font-weight: 600;  color: var(--gray-500);  border-radius: 6px;  transition: var(--transition);}.lang-switcher a:hover {  color: var(--primary);}.lang-switcher a.active {  color: var(--white);  background: var(--primary);}/* Mobile Menu */.burger {  display: none;  flex-direction: column;  gap: 5px;  cursor: pointer;  padding: 5px;  background: none;  border: none;}.burger span {  width: 24px;  height: 2px;  background: var(--gray-700);  border-radius: 2px;  transition: var(--transition);}.burger.active span:nth-child(1) {  transform: rotate(45deg) translate(5px, 5px);}.burger.active span:nth-child(2) {  opacity: 0;}.burger.active span:nth-child(3) {  transform: rotate(-45deg) translate(5px, -5px);}/* ========================================   HERO SECTION   ======================================== */.hero {  position: relative;  min-height: 100vh;  display: flex;  align-items: center;  justify-content: center;  background: linear-gradient(135deg, #1e3a5f 0%, #1a56db 50%, #1e40af 100%);  background-size: cover;  background-position: center;  color: var(--white);  overflow: hidden;}.hero-bg {  position: absolute;  top: 0;  left: 0;  right: 0;  bottom: 0;  background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=80');  background-size: cover;  background-position: center;  opacity: 0.2;}.hero-overlay {  position: absolute;  top: 0;  left: 0;  right: 0;  bottom: 0;  background: linear-gradient(135deg, rgba(30, 58, 95, 0.85) 0%, rgba(26, 86, 219, 0.7) 50%, rgba(30, 64, 175, 0.85) 100%);}.hero-content {  position: relative;  z-index: 2;  text-align: center;  max-width: 800px;  padding: 120px 20px 80px;}.hero-badge {  display: inline-flex;  align-items: center;  gap: 8px;  background: rgba(255,255,255,0.15);  backdrop-filter: blur(10px);  border: 1px solid rgba(255,255,255,0.2);  padding: 8px 20px;  border-radius: 50px;  font-size: 0.85rem;  font-weight: 500;  margin-bottom: 24px;}.hero-badge .pulse {  width: 8px;  height: 8px;  background: #4ade80;  border-radius: 50%;  animation: pulse 2s infinite;}@keyframes pulse {  0%, 100% { opacity: 1; transform: scale(1); }  50% { opacity: 0.5; transform: scale(1.5); }}.hero h1 {  font-size: 3rem;  font-weight: 800;  line-height: 1.15;  margin-bottom: 20px;  letter-spacing: -1px;}.hero p {  font-size: 1.15rem;  line-height: 1.7;  opacity: 0.9;  margin-bottom: 36px;  max-width: 650px;  margin-left: auto;  margin-right: auto;}.hero-buttons {  display: flex;  gap: 16px;  justify-content: center;  flex-wrap: wrap;}.btn {  display: inline-flex;  align-items: center;  gap: 8px;  padding: 14px 28px;  font-size: 1rem;  font-weight: 600;  border-radius: var(--radius-lg);  border: none;  cursor: pointer;  transition: var(--transition);  text-decoration: none;}.btn-primary {  background: var(--white);  color: var(--primary);}.btn-primary:hover {  background: var(--gray-100);  transform: translateY(-2px);  box-shadow: var(--shadow-lg);}.btn-secondary {  background: rgba(255,255,255,0.15);  color: var(--white);  border: 2px solid rgba(255,255,255,0.3);}.btn-secondary:hover {  background: rgba(255,255,255,0.25);  transform: translateY(-2px);}.btn-whatsapp {  background: #25d366;  color: var(--white);}.btn-whatsapp:hover {  background: #20bd5a;  transform: translateY(-2px);  box-shadow: var(--shadow-lg);}.btn-telegram {  background: #0088cc;  color: var(--white);}.btn-telegram:hover {  background: #0077b5;  transform: translateY(-2px);  box-shadow: var(--shadow-lg);}.btn-blue {  background: var(--primary);  color: var(--white);}.btn-blue:hover {  background: var(--primary-dark);  transform: translateY(-2px);  box-shadow: var(--shadow-lg);}/* ========================================   SECTIONS (General)   ======================================== */.section {  padding: 100px 0;}.section-gray {  background: var(--gray-50);}.section-header {  text-align: center;  margin-bottom: 60px;}.section-header h2 {  font-size: 2.25rem;  font-weight: 700;  color: var(--gray-900);  margin-bottom: 12px;  letter-spacing: -0.5px;}.section-header p {  font-size: 1.1rem;  color: var(--gray-500);  max-width: 600px;  margin: 0 auto;}/* ========================================   SERVICES   ======================================== */.services-grid {  display: grid;  grid-template-columns: repeat(3, 1fr);  gap: 24px;}.service-card {  background: var(--white);  border: 1px solid var(--gray-200);  border-radius: var(--radius-xl);  padding: 32px;  transition: var(--transition);}.service-card:hover {  transform: translateY(-4px);  box-shadow: var(--shadow-xl);  border-color: var(--primary-light);}.service-card .icon {  font-size: 2rem;  margin-bottom: 16px;}.service-card h3 {  font-size: 1.15rem;  font-weight: 600;  color: var(--gray-900);  margin-bottom: 10px;}.service-card p {  font-size: 0.9rem;  color: var(--gray-500);  line-height: 1.6;}/* ========================================   ABOUT   ======================================== */.about-grid {  display: grid;  grid-template-columns: 1fr 1fr;  gap: 60px;  align-items: center;}.about-image {  position: relative;  border-radius: var(--radius-xl);  overflow: hidden;  box-shadow: var(--shadow-xl);}.about-image img {  width: 100%;  height: 400px;  object-fit: cover;}.about-text h3 {  font-size: 1.75rem;  font-weight: 700;  color: var(--gray-900);  margin-bottom: 20px;}.about-text p {  font-size: 0.95rem;  color: var(--gray-600);  line-height: 1.8;  margin-bottom: 16px;}.stats-grid {  display: grid;  grid-template-columns: repeat(4, 1fr);  gap: 16px;  margin-top: 32px;}.stat-item {  text-align: center;  padding: 20px 12px;  background: var(--gray-50);  border-radius: var(--radius-lg);  border: 1px solid var(--gray-100);}.stat-item .number {  font-size: 1.75rem;  font-weight: 800;  color: var(--primary);  display: block;}.stat-item .label {  font-size: 0.8rem;  color: var(--gray-500);  font-weight: 500;  margin-top: 4px;}/* ========================================   HOW IT WORKS   ======================================== */.steps-grid {  display: grid;  grid-template-columns: repeat(4, 1fr);  gap: 24px;  position: relative;}.step-card {  text-align: center;  padding: 32px 24px;  position: relative;}.step-number {  display: inline-flex;  align-items: center;  justify-content: center;  width: 48px;  height: 48px;  background: var(--primary);  color: var(--white);  font-size: 1.25rem;  font-weight: 700;  border-radius: 50%;  margin-bottom: 20px;}.step-card h3 {  font-size: 1.05rem;  font-weight: 600;  color: var(--gray-900);  margin-bottom: 10px;}.step-card p {  font-size: 0.88rem;  color: var(--gray-500);  line-height: 1.6;}/* ========================================   ADVANTAGES   ======================================== */.advantages-grid {  display: grid;  grid-template-columns: repeat(3, 1fr);  gap: 24px;}.advantage-card {  background: var(--white);  border: 1px solid var(--gray-200);  border-radius: var(--radius-xl);  padding: 32px;  transition: var(--transition);}.advantage-card:hover {  transform: translateY(-4px);  box-shadow: var(--shadow-xl);}.advantage-card .icon {  font-size: 2rem;  margin-bottom: 16px;}.advantage-card h3 {  font-size: 1.1rem;  font-weight: 600;  color: var(--gray-900);  margin-bottom: 10px;}.advantage-card p {  font-size: 0.9rem;  color: var(--gray-500);  line-height: 1.6;}/* ========================================   PARTNERS SECTION   ======================================== */.partners-section {  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);  color: var(--white);  padding: 100px 0;  position: relative;  overflow: hidden;}.partners-section::before {  content: '';  position: absolute;  top: -100px;  right: -100px;  width: 400px;  height: 400px;  background: radial-gradient(circle, rgba(26, 86, 219, 0.3) 0%, transparent 70%);  border-radius: 50%;}.partners-section .section-header h2 {  color: var(--white);}.partners-section .section-header p {  color: rgba(255,255,255,0.7);}.partners-description {  text-align: center;  max-width: 700px;  margin: 0 auto 50px;  font-size: 1.05rem;  color: rgba(255,255,255,0.8);  line-height: 1.7;}.benefits-grid {  display: grid;  grid-template-columns: repeat(2, 1fr);  gap: 24px;  margin-bottom: 50px;}.benefit-card {  background: rgba(255,255,255,0.08);  border: 1px solid rgba(255,255,255,0.12);  border-radius: var(--radius-xl);  padding: 28px;  transition: var(--transition);}.benefit-card:hover {  background: rgba(255,255,255,0.12);  transform: translateY(-2px);}.benefit-card .icon {  font-size: 2rem;  margin-bottom: 12px;}.benefit-card h3 {  font-size: 1.1rem;  font-weight: 600;  margin-bottom: 8px;}.benefit-card p {  font-size: 0.9rem;  color: rgba(255,255,255,0.7);  line-height: 1.6;}.partners-cta {  text-align: center;  background: rgba(255,255,255,0.06);  border: 1px solid rgba(255,255,255,0.1);  border-radius: var(--radius-xl);  padding: 40px;}.partners-cta h3 {  font-size: 1.5rem;  font-weight: 700;  margin-bottom: 12px;}.partners-cta p {  font-size: 1rem;  color: rgba(255,255,255,0.7);  margin-bottom: 24px;}.partners-cta .buttons {  display: flex;  gap: 16px;  justify-content: center;  flex-wrap: wrap;}/* ========================================   CTA SECTION   ======================================== */.cta-section {  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);  color: var(--white);  padding: 80px 0;  text-align: center;}.cta-section h2 {  font-size: 2.25rem;  font-weight: 700;  margin-bottom: 16px;}.cta-section p {  font-size: 1.1rem;  opacity: 0.9;  max-width: 600px;  margin: 0 auto 32px;}.cta-buttons {  display: flex;  gap: 16px;  justify-content: center;  flex-wrap: wrap;}/* ========================================   CONTACT SECTION   ======================================== */.contact-grid {  display: grid;  grid-template-columns: repeat(3, 1fr);  gap: 24px;}.contact-card {  background: var(--white);  border: 1px solid var(--gray-200);  border-radius: var(--radius-xl);  padding: 36px;  text-align: center;  transition: var(--transition);}.contact-card:hover {  transform: translateY(-4px);  box-shadow: var(--shadow-xl);}.contact-card .icon {  font-size: 2.5rem;  margin-bottom: 16px;}.contact-card h3 {  font-size: 1.15rem;  font-weight: 600;  color: var(--gray-900);  margin-bottom: 8px;}.contact-card p {  font-size: 0.9rem;  color: var(--gray-500);  margin-bottom: 20px;}.contact-card .btn {  width: 100%;  justify-content: center;}/* ========================================   FOOTER   ======================================== */.footer {  background: var(--gray-900);  color: var(--gray-400);  padding: 60px 0 30px;}.footer-content {  display: flex;  justify-content: space-between;  align-items: start;  margin-bottom: 40px;  flex-wrap: wrap;  gap: 30px;}.footer-brand {  font-size: 1.5rem;  font-weight: 700;  color: var(--white);  margin-bottom: 8px;}.footer-brand span {  color: var(--primary-light);}.footer-tagline {  font-size: 0.9rem;  color: var(--gray-500);  max-width: 300px;}.footer-links {  display: flex;  gap: 24px;  flex-wrap: wrap;}.footer-links a {  font-size: 0.9rem;  color: var(--gray-400);  transition: var(--transition);}.footer-links a:hover {  color: var(--white);}.footer-bottom {  border-top: 1px solid var(--gray-800);  padding-top: 24px;  text-align: center;  font-size: 0.85rem;  color: var(--gray-500);}/* ========================================   RESPONSIVE   ======================================== */@media (max-width: 1024px) {  .services-grid,  .advantages-grid {    grid-template-columns: repeat(2, 1fr);  }  .steps-grid {    grid-template-columns: repeat(2, 1fr);  }  .about-grid {    gap: 40px;  }  .stats-grid {    grid-template-columns: repeat(2, 1fr);  }  .contact-grid {    grid-template-columns: repeat(2, 1fr);  }}@media (max-width: 768px) {  .nav-links {    display: none;    position: absolute;    top: 70px;    left: 0;    right: 0;    background: var(--white);    flex-direction: column;    padding: 20px;    border-bottom: 1px solid var(--gray-200);    box-shadow: var(--shadow-lg);  }  .nav-links.active {    display: flex;  }  .lang-switcher {    margin-left: 0;    padding-left: 0;    border-left: none;    border-top: 1px solid var(--gray-200);    padding-top: 16px;    margin-top: 8px;    justify-content: center;  }  .burger {    display: flex;  }  .hero h1 {    font-size: 2rem;  }  .hero p {    font-size: 1rem;  }  .services-grid,  .advantages-grid,  .steps-grid,  .contact-grid {    grid-template-columns: 1fr;  }  .about-grid {    grid-template-columns: 1fr;    gap: 30px;  }  .about-image img {    height: 250px;  }  .stats-grid {    grid-template-columns: repeat(2, 1fr);    gap: 12px;  }  .benefits-grid {    grid-template-columns: 1fr;  }  .section {    padding: 60px 0;  }  .section-header h2 {    font-size: 1.75rem;  }  .hero-content {    padding: 100px 20px 60px;  }  .footer-content {    flex-direction: column;    align-items: center;    text-align: center;  }  .footer-tagline {    max-width: 100%;  }  .footer-links {    justify-content: center;  }}@media (max-width: 480px) {  .hero h1 {    font-size: 1.7rem;  }  .btn {    padding: 12px 20px;    font-size: 0.9rem;  }  .hero-buttons,  .cta-buttons,  .partners-cta .buttons {    flex-direction: column;    align-items: center;  }  .btn {    width: 100%;    justify-content: center;  }  .stat-item .number {    font-size: 1.4rem;  }}