/* app/[locale]/page.module.css */

/* контейнер всей страницы */
.page_container__4zHBJ {
  width: 100%;
  max-width: 80rem; /* ~1280px */
  margin-inline: auto;
  padding-inline: 1rem;
  padding-top: 2rem;
  padding-bottom: 4rem;
}

/* HERO */
.page_hero__jmeWX {
  text-align: center;
  margin-bottom: 4rem;
  padding: 3rem 1rem;
  background: #ffffff;
  border-radius: 1.25rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.page_title__5vbYo {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.page_subtitle__5Kv8P {
  max-width: 48ch;
  margin-inline: auto;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #4b5563;
  margin-bottom: 0.75rem;
}

.page_operatorLine__opVog {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-bottom: 2rem;
}

.page_ctaButtons__wooDd {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* BENEFITS секция */
.page_benefits__twKBh {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 4rem;
  grid-template-columns: repeat(auto-fit, minmax(min(300px,100%), 1fr));
}

.page_benefitCard__FZbUL {
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.page_benefitTitle__TpyyF {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.page_benefitText__rAFn0 {
  font-size: 0.9375rem;
  line-height: 1.4;
  color: #4b5563;
  margin-bottom: 1.25rem;
}

.page_benefitAction__14Sd4 {
  display: inline-block;
  text-decoration: none;
}

/* QUICK LINKS (низ страницы; можно скрыть, если не нужно) */
.page_quickLinks__lcHPH {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(min(300px,100%), 1fr));
}

.page_quickLinkCard__I2UTn {
  background: #f9fafb;
  padding: 1.75rem;
  border-radius: 1rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease, transform 0.15s ease;
  display: block;
}

.page_quickLinkCard__I2UTn:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
}

.page_quickLinkTitle__8dMT5 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #111827;
}

.page_quickLinkDescription__gKQgp {
  font-size: 0.9375rem;
  line-height: 1.4;
  color: #4b5563;
  margin-bottom: 1rem;
}
/* Button Component Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  font-family: inherit;
  line-height: 1.5;
  position: relative;
  overflow: hidden;
}

.btn:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

/* Button Sizes */
.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn--md {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Button Variants */
.btn--primary {
  background-color: #3b82f6;
  color: white;
  border-color: #3b82f6;
}

.btn--primary:hover:not(:disabled) {
  background-color: #2563eb;
  border-color: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.btn--secondary {
  background-color: #6b7280;
  color: white;
  border-color: #6b7280;
}

.btn--secondary:hover:not(:disabled) {
  background-color: #4b5563;
  border-color: #4b5563;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(107, 114, 128, 0.4);
}

.btn--outline {
  background-color: transparent;
  color: #3b82f6;
  border-color: #3b82f6;
}

.btn--outline:hover:not(:disabled) {
  background-color: #3b82f6;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.btn--danger {
  background-color: #ef4444;
  color: white;
  border-color: #ef4444;
}

.btn--danger:hover:not(:disabled) {
  background-color: #dc2626;
  border-color: #dc2626;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.btn--success {
  background-color: #10b981;
  color: white;
  border-color: #10b981;
}

.btn--success:hover:not(:disabled) {
  background-color: #059669;
  border-color: #059669;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

/* Full Width */
.btn--full-width {
  width: 100%;
}

/* Loading State */
.btn--loading {
  cursor: wait;
}

.btn__text--loading {
  opacity: 0.7;
}

.btn__spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Responsive */
@media (max-width: 640px) {
  .btn--lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }
  
  .btn--md {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
}
.TermsContent_section__CNtAZ {
  margin-bottom: 2rem;
}

.TermsContent_heading__LkO5n {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 1rem;
}

.TermsContent_text__kYlbu {
  color: #374151;
  line-height: 1.7;
}

.TermsContent_contactBox__6iJtt {
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.TermsContent_companyTitle__uj0Uc {
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 0.5rem;
}

.PrivacyContent_section__02Vc3 {
  margin-bottom: 2rem;
}

.PrivacyContent_heading___WFT_ {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 1rem;
}

.PrivacyContent_text__t_ozh {
  color: #374151;
  line-height: 1.7;
}

.PrivacyContent_contactBox__cKl3E {
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.PrivacyContent_companyTitle__rM33K {
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 0.5rem;
}

/* Service Detail Page Styles */
.ServiceDetail_container__HqxUK {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  min-height: 100vh;
}

.ServiceDetail_loading__mTm7K,
.ServiceDetail_error__zOqT7 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  text-align: center;
  gap: 1rem;
}

.ServiceDetail_error__zOqT7 h1 {
  font-size: 2rem;
  color: #dc2626;
  margin: 0;
}

.ServiceDetail_error__zOqT7 p {
  color: #6b7280;
  margin: 0;
}

/* Breadcrumbs */
.ServiceDetail_breadcrumbs__l6QN_ {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.ServiceDetail_breadcrumbLink___hQpC {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ServiceDetail_breadcrumbLink___hQpC:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.ServiceDetail_breadcrumbSeparator__5zCTz {
  color: #9ca3af;
  font-weight: 500;
}

.ServiceDetail_breadcrumbCurrent__RPKAl {
  color: #6b7280;
  font-weight: 500;
}

/* Main Content */
.ServiceDetail_content__sfX75 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Image Section */
.ServiceDetail_imageSection__vwrdA {
  position: sticky;
  top: 2rem;
}

.ServiceDetail_imageGallery__ZUnEg {
  width: 100%;
}

.ServiceDetail_mainImageContainer__oOiWC {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  background-color: #f9fafb;
  margin-bottom: 1rem;
}

.ServiceDetail_mainImage__OpPxm {
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease;
}

.ServiceDetail_imageArrow__OnlE_ {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  opacity: 0;
  backdrop-filter: blur(4px);
}

.ServiceDetail_mainImageContainer__oOiWC:hover .ServiceDetail_imageArrow__OnlE_ {
  opacity: 1;
}

.ServiceDetail_imageArrow__OnlE_:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.ServiceDetail_imageArrowLeft__79n55 {
  left: 1rem;
}

.ServiceDetail_imageArrowRight__Vwb3r {
  right: 1rem;
}

.ServiceDetail_arrowIcon__MybXm {
  width: 1.5rem;
  height: 1.5rem;
}

/* Thumbnails */
.ServiceDetail_thumbnails__TMdY6 {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.25rem;
}

.ServiceDetail_thumbnail__HG2mH {
  position: relative;
  width: 4rem;
  height: 4rem;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 2px solid transparent;
  background: none;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.ServiceDetail_thumbnail__HG2mH:hover {
  border-color: #e5e7eb;
  transform: scale(1.05);
}

.ServiceDetail_thumbnailActive__0rLUz {
  border-color: #3b82f6;
  box-shadow: 0 0 0 1px #3b82f6;
}

.ServiceDetail_thumbnailImage__QdLT3 {
  -o-object-fit: cover;
     object-fit: cover;
}

/* No Image State */
.ServiceDetail_noImage__OWbUP {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 1rem;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  color: #9ca3af;
  text-align: center;
}

.ServiceDetail_noImageIcon__CFFtZ {
  width: 4rem;
  height: 4rem;
  margin-bottom: 1rem;
}

/* Info Section */
.ServiceDetail_infoSection__TH_h3 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ServiceDetail_category__XCmMO {
  display: inline-block;
  background: #eff6ff;
  color: #1d4ed8;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
}

.ServiceDetail_title__0VamY {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  margin: 0;
}

.ServiceDetail_price__ptLAe {
  font-size: 2rem;
  font-weight: 600;
  color: #059669;
  margin: 0;
}

.ServiceDetail_sectionTitle__wXEKR {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 1rem 0;
}

.ServiceDetail_descriptionText___VTyT {
  color: #374151;
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
}

/* Company Section */
.ServiceDetail_companySection__Ghefp {
  border-top: 1px solid #e5e7eb;
  padding-top: 2rem;
}

.ServiceDetail_companyCard__avwvo {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.ServiceDetail_companyHeader__sZEo1 {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.ServiceDetail_companyLogo__oJaAs {
  border-radius: 0.75rem;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}

.ServiceDetail_companyLogoPlaceholder__hT48C {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 600;
  flex-shrink: 0;
}

.ServiceDetail_companyInfo__ELADv {
  flex: 1;
}

.ServiceDetail_companyName__w3MUw {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 0.5rem 0;
}

.ServiceDetail_verifiedBadge__t2XF1 {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: #d1fae5;
  color: #065f46;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.ServiceDetail_verifiedIcon__VdtmF {
  width: 1rem;
  height: 1rem;
}

.ServiceDetail_companyDescription___F5hb {
  color: #6b7280;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
}

/* Contact Info */
.ServiceDetail_contactInfo__bNqKY {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.ServiceDetail_contactItem__dxHXy {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #374151;
}

.ServiceDetail_contactIcon__ZrZJV {
  width: 1.25rem;
  height: 1.25rem;
  color: #6b7280;
  flex-shrink: 0;
}

.ServiceDetail_contactLink__6QwBw {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ServiceDetail_contactLink__6QwBw:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.ServiceDetail_contactActions__M44iW {
  display: flex;
  gap: 1rem;
}

.ServiceDetail_contactButton__T72wL {
  flex: 1;
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .ServiceDetail_content__sfX75 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ServiceDetail_imageSection__vwrdA {
    position: static;
  }

  .ServiceDetail_title__0VamY {
    font-size: 2rem;
  }

  .ServiceDetail_price__ptLAe {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .ServiceDetail_container__HqxUK {
    padding: 1rem 0.75rem;
  }

  .ServiceDetail_breadcrumbs__l6QN_ {
    margin-bottom: 1.5rem;
  }

  .ServiceDetail_content__sfX75 {
    gap: 1.5rem;
  }

  .ServiceDetail_infoSection__TH_h3 {
    gap: 1.5rem;
  }

  .ServiceDetail_title__0VamY {
    font-size: 1.75rem;
  }

  .ServiceDetail_price__ptLAe {
    font-size: 1.25rem;
  }

  .ServiceDetail_sectionTitle__wXEKR {
    font-size: 1.25rem;
  }

  .ServiceDetail_companyCard__avwvo {
    padding: 1rem;
  }

  .ServiceDetail_companyHeader__sZEo1 {
    gap: 0.75rem;
  }

  .ServiceDetail_companyLogoPlaceholder__hT48C {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }

  .ServiceDetail_companyName__w3MUw {
    font-size: 1.125rem;
  }

  .ServiceDetail_imageArrow__OnlE_ {
    width: 2.5rem;
    height: 2.5rem;
  }

  .ServiceDetail_imageArrowLeft__79n55 {
    left: 0.5rem;
  }

  .ServiceDetail_imageArrowRight__Vwb3r {
    right: 0.5rem;
  }

  .ServiceDetail_arrowIcon__MybXm {
    width: 1.25rem;
    height: 1.25rem;
  }

  .ServiceDetail_thumbnail__HG2mH {
    width: 3rem;
    height: 3rem;
  }
}

@media (max-width: 480px) {
  .ServiceDetail_container__HqxUK {
    padding: 0.75rem 0.5rem;
  }

  .ServiceDetail_breadcrumbs__l6QN_ {
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }

  .ServiceDetail_title__0VamY {
    font-size: 1.5rem;
  }

  .ServiceDetail_price__ptLAe {
    font-size: 1.125rem;
  }

  .ServiceDetail_contactActions__M44iW {
    flex-direction: column;
  }
} 
