/* [project]/src/components/ContactModal/ContactModal.module.css [app-client] (css) */
.ContactModal-module__DkSQ-G__modalOverlay {
  z-index: 1000;
  background-color: rgba(0, 0, 0, .5);
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.ContactModal-module__DkSQ-G__modalContent {
  background: #fff;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 10px 10px -5px rgba(0, 0, 0, .04);
}

.ContactModal-module__DkSQ-G__modalHeader {
  border-bottom: 1px solid #e5e7eb;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding: 24px 24px 0;
  display: flex;
}

.ContactModal-module__DkSQ-G__modalTitle {
  color: #1f2937;
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.ContactModal-module__DkSQ-G__modalClose {
  color: #6b7280;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  font-size: 24px;
  transition: all .2s;
  display: flex;
}

.ContactModal-module__DkSQ-G__modalClose:hover {
  color: #374151;
  background-color: #f3f4f6;
}

.ContactModal-module__DkSQ-G__modalBody {
  padding: 0 24px 24px;
}

.ContactModal-module__DkSQ-G__consultationForm {
  flex-direction: column;
  gap: 20px;
  display: flex;
}

.ContactModal-module__DkSQ-G__formGroup {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.ContactModal-module__DkSQ-G__formLabel {
  color: #374151;
  font-size: 14px;
  font-weight: 500;
}

.ContactModal-module__DkSQ-G__formLabel.ContactModal-module__DkSQ-G__required:after {
  content: " *";
  color: #ef4444;
}

.ContactModal-module__DkSQ-G__formInput {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  outline: none;
  padding: 12px 16px;
  font-size: 16px;
  transition: border-color .2s, box-shadow .2s;
}

.ContactModal-module__DkSQ-G__formInput:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, .1);
}

.ContactModal-module__DkSQ-G__formInput::placeholder {
  color: #9ca3af;
}

.ContactModal-module__DkSQ-G__submitButton {
  color: #fff;
  cursor: pointer;
  background: #3b82f6;
  border: none;
  border-radius: 8px;
  margin-top: 8px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  transition: background-color .2s;
}

.ContactModal-module__DkSQ-G__submitButton:hover:not(:disabled) {
  background: #2563eb;
}

.ContactModal-module__DkSQ-G__submitButton:disabled {
  cursor: not-allowed;
  background: #9ca3af;
}

.ContactModal-module__DkSQ-G__errorMessage {
  color: #ef4444;
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 6px;
  margin-top: 8px;
  padding: 8px 12px;
  font-size: 14px;
}

@media (max-width: 640px) {
  .ContactModal-module__DkSQ-G__modalContent {
    width: 95%;
    margin: 20px;
  }

  .ContactModal-module__DkSQ-G__modalHeader {
    padding: 20px 20px 0;
  }

  .ContactModal-module__DkSQ-G__modalBody {
    padding: 0 20px 20px;
  }

  .ContactModal-module__DkSQ-G__modalTitle {
    font-size: 18px;
  }
}

/* [project]/src/components/ServicesSection/ServicesSection.module.css [app-client] (css) */
.ServicesSection-module__d8_FyW__servicesSection {
  background: #fff;
  padding: 80px 0;
}

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

.ServicesSection-module__d8_FyW__servicesGrid {
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  align-items: start;
  gap: 20px;
  margin-bottom: 40px;
  display: grid;
}

.ServicesSection-module__d8_FyW__serviceItem {
  flex-direction: column;
  display: flex;
}

.ServicesSection-module__d8_FyW__serviceCardWrapper {
  background: #fff;
  border: 1px solid #eef1f5;
  border-radius: 14px;
  flex-direction: column;
  flex-shrink: 0;
  align-items: center;
  gap: 0;
  width: 312px;
  height: 358px;
  margin: 0 auto;
  padding: 0;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

.ServicesSection-module__d8_FyW__serviceCardWrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
}

.ServicesSection-module__d8_FyW__serviceImage {
  background: #f8f9fa;
  border-radius: 8px 8px 0 0;
  width: 100%;
  height: 179px;
  line-height: 0;
  position: relative;
  overflow: hidden;
}

.ServicesSection-module__d8_FyW__serviceImg {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .3s;
}

.ServicesSection-module__d8_FyW__serviceCardWrapper:hover .ServicesSection-module__d8_FyW__serviceImg {
  transform: scale(1.05);
}

.ServicesSection-module__d8_FyW__serviceContent {
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 179px;
  padding: 20px;
  display: flex;
  position: relative;
}

.ServicesSection-module__d8_FyW__serviceTitle {
  color: #111827;
  text-align: center;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  height: 54px;
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  display: -webkit-box;
  overflow: hidden;
}

.ServicesSection-module__d8_FyW__serviceButtonContainer {
  flex-shrink: 0;
  width: 100%;
  height: 44px;
}

.ServicesSection-module__d8_FyW__btnService {
  color: #fff;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  box-sizing: border-box;
  background: #111827;
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 44px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  transition: all .25s;
  display: flex;
}

.ServicesSection-module__d8_FyW__btnService:hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
}

@media (min-width: 1025px) {
  .ServicesSection-module__d8_FyW__servicesGrid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .ServicesSection-module__d8_FyW__servicesGrid {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    gap: 20px;
  }

  .ServicesSection-module__d8_FyW__servicesContainer {
    padding: 0 20px;
  }
}

/* [project]/src/components/ServicesSection/ServicesSection.mobile.module.css [app-client] (css) */
.ServicesSection-mobile-module__QHUYVG__mobileServicesSection {
  background: #fff;
  padding: 30px 0;
}

.ServicesSection-mobile-module__QHUYVG__mobileServicesContainer {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.ServicesSection-mobile-module__QHUYVG__mobileServicesGrid {
  grid-template-columns: 1fr;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  display: grid;
}

.ServicesSection-mobile-module__QHUYVG__mobileServiceItem {
  justify-content: center;
  width: 100%;
  display: flex;
}

.ServicesSection-mobile-module__QHUYVG__mobileServiceCard {
  background: #fff;
  border: 1px solid #eef1f5;
  border-radius: 14px;
  flex-direction: column;
  width: 100%;
  max-width: 350px;
  height: 280px;
  margin: 0 auto;
  display: flex;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

.ServicesSection-mobile-module__QHUYVG__mobileServiceImage {
  background: #f8f9fa;
  flex-shrink: 0;
  width: 100%;
  height: 120px;
  overflow: hidden;
}

.ServicesSection-mobile-module__QHUYVG__mobileServiceImg {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.ServicesSection-mobile-module__QHUYVG__mobileServiceContent {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  height: 160px;
  padding: 15px;
  display: flex;
}

.ServicesSection-mobile-module__QHUYVG__mobileServiceTitle {
  color: #111827;
  text-align: center;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  height: 40px;
  margin: 0 0 15px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  display: -webkit-box;
  overflow: hidden;
}

.ServicesSection-mobile-module__QHUYVG__mobileServiceButtonContainer {
  flex-shrink: 0;
  margin-top: auto;
}

.ServicesSection-mobile-module__QHUYVG__mobileBtnService {
  color: #fff;
  text-align: center;
  cursor: pointer;
  background: #111827;
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 44px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  transition: all .25s;
  display: flex;
}

.ServicesSection-mobile-module__QHUYVG__mobileBtnService:hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
}

@media (min-width: 481px) and (max-width: 768px) {
  .ServicesSection-mobile-module__QHUYVG__mobileServicesGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .ServicesSection-mobile-module__QHUYVG__mobileServiceCard {
    height: 300px;
  }

  .ServicesSection-mobile-module__QHUYVG__mobileServiceImage {
    height: 140px;
  }

  .ServicesSection-mobile-module__QHUYVG__mobileServiceContent {
    height: 160px;
    padding: 12px;
  }

  .ServicesSection-mobile-module__QHUYVG__mobileServiceTitle {
    height: 36px;
    font-size: 15px;
  }

  .ServicesSection-mobile-module__QHUYVG__mobileBtnService {
    height: 40px;
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* [project]/src/components/ReviewsSection/ReviewsSection.mobile.module.css [app-client] (css) */
@media (max-width: 768px) {
  .ReviewsSection-mobile-module__8W-c6G__reviewsSection {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 40px 0 !important;
  }

  .ReviewsSection-mobile-module__8W-c6G__reviewsGrid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    margin-bottom: 20px !important;
    display: grid !important;
  }

  .ReviewsSection-mobile-module__8W-c6G__reviewCard {
    background: #fff !important;
    border-radius: 12px !important;
    flex-direction: column !important;
    height: 100% !important;
    margin-bottom: 0 !important;
    padding: 20px !important;
    transition: all .3s !important;
    display: flex !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .1) !important;
  }

  .ReviewsSection-mobile-module__8W-c6G__reviewHeader {
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 15px !important;
    display: flex !important;
  }

  .ReviewsSection-mobile-module__8W-c6G__reviewRating .ReviewsSection-mobile-module__8W-c6G__star {
    font-size: 16px !important;
  }

  .ReviewsSection-mobile-module__8W-c6G__reviewText {
    color: #333 !important;
    margin: 0 !important;
    font-size: 14px !important;
    font-style: italic !important;
    line-height: 1.5 !important;
  }

  .ReviewsSection-mobile-module__8W-c6G__reviewAuthor {
    justify-content: space-between !important;
    align-items: center !important;
    margin-top: 15px !important;
    display: flex !important;
  }

  .ReviewsSection-mobile-module__8W-c6G__authorName {
    color: #333 !important;
    font-size: 14px !important;
    font-weight: bold !important;
  }

  .ReviewsSection-mobile-module__8W-c6G__authorCity {
    color: #999 !important;
    font-size: 11px !important;
  }

  .ReviewsSection-mobile-module__8W-c6G__placeholderImage {
    display: none !important;
  }

  .ReviewsSection-mobile-module__8W-c6G__reviewsControls {
    justify-content: space-between !important;
    align-items: center !important;
    gap: 15px !important;
    margin-top: 15px !important;
    padding: 0 20px !important;
    display: flex !important;
  }

  .ReviewsSection-mobile-module__8W-c6G__reviewNav {
    color: #fff !important;
    cursor: pointer !important;
    background: #007bff !important;
    border: none !important;
    border-radius: 50% !important;
    width: 35px !important;
    height: 35px !important;
    font-size: 18px !important;
    transition: all .3s !important;
  }

  .ReviewsSection-mobile-module__8W-c6G__reviewNav:hover {
    background: #0056b3 !important;
    transform: scale(1.1) !important;
  }

  .ReviewsSection-mobile-module__8W-c6G__reviewDots, .ReviewsSection-mobile-module__8W-c6G__dot {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .ReviewsSection-mobile-module__8W-c6G__reviewsSection {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 30px 0 !important;
  }

  .ReviewsSection-mobile-module__8W-c6G__reviewsGrid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    margin-bottom: 15px !important;
    display: grid !important;
  }

  .ReviewsSection-mobile-module__8W-c6G__reviewCard {
    background: #fff !important;
    border-radius: 12px !important;
    flex-direction: column !important;
    height: 100% !important;
    margin-bottom: 0 !important;
    padding: 15px !important;
    transition: all .3s !important;
    display: flex !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .1) !important;
  }

  .ReviewsSection-mobile-module__8W-c6G__reviewHeader {
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 12px !important;
    display: flex !important;
  }

  .ReviewsSection-mobile-module__8W-c6G__reviewRating .ReviewsSection-mobile-module__8W-c6G__star {
    font-size: 14px !important;
  }

  .ReviewsSection-mobile-module__8W-c6G__reviewText {
    color: #333 !important;
    margin: 0 !important;
    font-size: 13px !important;
    font-style: italic !important;
    line-height: 1.4 !important;
  }

  .ReviewsSection-mobile-module__8W-c6G__reviewAuthor {
    justify-content: space-between !important;
    align-items: center !important;
    margin-top: 12px !important;
    display: flex !important;
  }

  .ReviewsSection-mobile-module__8W-c6G__authorName {
    color: #333 !important;
    font-size: 13px !important;
    font-weight: bold !important;
  }

  .ReviewsSection-mobile-module__8W-c6G__authorCity {
    color: #999 !important;
    font-size: 10px !important;
  }

  .ReviewsSection-mobile-module__8W-c6G__placeholderImage {
    display: none !important;
  }

  .ReviewsSection-mobile-module__8W-c6G__reviewsControls {
    justify-content: space-between !important;
    align-items: center !important;
    gap: 10px !important;
    margin-top: 10px !important;
    padding: 0 15px !important;
    display: flex !important;
  }

  .ReviewsSection-mobile-module__8W-c6G__reviewNav {
    color: #fff !important;
    cursor: pointer !important;
    background: #007bff !important;
    border: none !important;
    border-radius: 50% !important;
    width: 30px !important;
    height: 30px !important;
    font-size: 16px !important;
    transition: all .3s !important;
  }

  .ReviewsSection-mobile-module__8W-c6G__reviewNav:hover {
    background: #0056b3 !important;
    transform: scale(1.1) !important;
  }

  .ReviewsSection-mobile-module__8W-c6G__reviewDots, .ReviewsSection-mobile-module__8W-c6G__dot {
    display: none !important;
  }
}

/* [project]/src/styles/components/ReviewsSection.module.css [app-client] (css) */
.ReviewsSection-module__2LO2lG__reviewsSection {
  color: #fff;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  padding: 60px 0;
}

.ReviewsSection-module__2LO2lG__sectionHeader {
  text-align: center;
  margin-bottom: 40px;
}

.ReviewsSection-module__2LO2lG__sectionTitle {
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.2;
}

.ReviewsSection-module__2LO2lG__sectionSubtitle {
  opacity: .9;
  max-width: 600px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.6;
}

.ReviewsSection-module__2LO2lG__reviewsContainer {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.ReviewsSection-module__2LO2lG__reviewsGrid {
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
  display: grid;
}

.ReviewsSection-module__2LO2lG__reviewCard {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 15px;
  padding: 30px;
  transition: transform .3s;
}

.ReviewsSection-module__2LO2lG__reviewCard:hover {
  transform: translateY(-5px);
}

.ReviewsSection-module__2LO2lG__reviewHeader {
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  display: flex;
}

.ReviewsSection-module__2LO2lG__reviewAvatar {
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.ReviewsSection-module__2LO2lG__reviewInfo h4 {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 600;
}

.ReviewsSection-module__2LO2lG__reviewInfo p {
  opacity: .8;
  margin: 0;
  font-size: 14px;
}

.ReviewsSection-module__2LO2lG__reviewRating {
  gap: 5px;
  margin-bottom: 15px;
  display: flex;
}

.ReviewsSection-module__2LO2lG__star {
  color: gold;
  font-size: 16px;
}

.ReviewsSection-module__2LO2lG__reviewText {
  opacity: .9;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.ReviewsSection-module__2LO2lG__reviewDate {
  opacity: .7;
  text-align: right;
  margin-top: 15px;
  font-size: 12px;
}

.ReviewsSection-module__2LO2lG__navigationButtons {
  justify-content: center;
  gap: 15px;
  display: flex;
}

.ReviewsSection-module__2LO2lG__navButton {
  color: #fff;
  cursor: pointer;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  transition: all .3s;
}

.ReviewsSection-module__2LO2lG__navButton:hover {
  background: rgba(255, 255, 255, .2);
  border-color: rgba(255, 255, 255, .5);
}

.ReviewsSection-module__2LO2lG__navButton:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.ReviewsSection-module__2LO2lG__paginationDots {
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  display: flex;
}

.ReviewsSection-module__2LO2lG__dot {
  cursor: pointer;
  background: rgba(255, 255, 255, .3);
  border-radius: 50%;
  width: 10px;
  height: 10px;
  transition: background .3s;
}

.ReviewsSection-module__2LO2lG__dot.ReviewsSection-module__2LO2lG__active {
  background: gold;
}

@media (max-width: 1024px) {
  .ReviewsSection-module__2LO2lG__reviewsGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .ReviewsSection-module__2LO2lG__reviewsSection {
    padding: 40px 0;
  }

  .ReviewsSection-module__2LO2lG__sectionTitle {
    font-size: 28px;
  }

  .ReviewsSection-module__2LO2lG__sectionSubtitle {
    font-size: 16px;
  }

  .ReviewsSection-module__2LO2lG__reviewsContainer {
    margin: 0 15px;
  }

  .ReviewsSection-module__2LO2lG__reviewsGrid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .ReviewsSection-module__2LO2lG__reviewCard {
    padding: 20px;
  }
}

/* [project]/src/styles/components/Calculator.module.css [app-client] (css) */
.Calculator-module__QXgMga__calculatorSection {
  color: #fff;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  padding: 60px 0;
}

.Calculator-module__QXgMga__calculatorHeader {
  text-align: center;
  margin-bottom: 40px;
}

.Calculator-module__QXgMga__calculatorTitle {
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.2;
}

.Calculator-module__QXgMga__calculatorSubtitle {
  opacity: .9;
  max-width: 600px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.6;
}

.Calculator-module__QXgMga__calculatorFormContainer {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px;
}

.Calculator-module__QXgMga__calculatorForm {
  flex-direction: column;
  gap: 15px;
  display: flex;
}

.Calculator-module__QXgMga__formRow {
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  display: grid;
}

.Calculator-module__QXgMga__formGroup {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.Calculator-module__QXgMga__formGroupFullWidth {
  grid-column: 1 / 5;
}

.Calculator-module__QXgMga__formLabel {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.Calculator-module__QXgMga__formInput, .Calculator-module__QXgMga__formSelect, .Calculator-module__QXgMga__formTextarea {
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 14px;
  transition: all .3s;
}

.Calculator-module__QXgMga__formInput::placeholder, .Calculator-module__QXgMga__formTextarea::placeholder {
  color: rgba(255, 255, 255, .6);
  opacity: 1;
}

.Calculator-module__QXgMga__formInput::-webkit-input-placeholder {
  color: rgba(255, 255, 255, .6);
  opacity: 1;
}

.Calculator-module__QXgMga__formTextarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, .6);
  opacity: 1;
}

.Calculator-module__QXgMga__formInput::-moz-placeholder {
  color: rgba(255, 255, 255, .6);
  opacity: 1;
}

.Calculator-module__QXgMga__formTextarea::-moz-placeholder {
  color: rgba(255, 255, 255, .6);
  opacity: 1;
}

.Calculator-module__QXgMga__formInput:-ms-placeholder-shown {
  color: rgba(255, 255, 255, .6);
  opacity: 1;
}

.Calculator-module__QXgMga__formTextarea:-ms-placeholder-shown {
  color: rgba(255, 255, 255, .6);
  opacity: 1;
}

.Calculator-module__QXgMga__formInput:focus, .Calculator-module__QXgMga__formSelect:focus, .Calculator-module__QXgMga__formTextarea:focus {
  background: rgba(255, 255, 255, .15);
  border-color: gold;
  outline: none;
}

.Calculator-module__QXgMga__formSelect option {
  color: #fff;
  background: #333;
}

.Calculator-module__QXgMga__formSubmit {
  text-align: center;
  margin-top: 20px;
}

.Calculator-module__QXgMga__btnLarge {
  color: #333;
  text-transform: uppercase;
  cursor: pointer;
  background: #fff;
  border: none;
  border-radius: 10px;
  width: 100%;
  padding: 15px 30px;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  font-weight: bold;
  transition: all .3s;
}

.Calculator-module__QXgMga__btnLarge:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.Calculator-module__QXgMga__btnLarge:disabled {
  cursor: not-allowed;
  background: rgba(255, 255, 255, .5);
  transform: none;
}

.Calculator-module__QXgMga__errorMessage {
  color: #ff6b6b;
  text-align: center;
  background: rgba(255, 0, 0, .1);
  border: 1px solid rgba(255, 0, 0, .3);
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 12px 15px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .Calculator-module__QXgMga__calculatorSection {
    padding: 40px 0;
  }

  .Calculator-module__QXgMga__calculatorTitle {
    font-size: 28px;
  }

  .Calculator-module__QXgMga__calculatorSubtitle {
    font-size: 16px;
  }

  .Calculator-module__QXgMga__calculatorFormContainer {
    margin: 0 15px;
    padding: 20px;
  }

  .Calculator-module__QXgMga__formRow {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .Calculator-module__QXgMga__formGroupFullWidth {
    grid-column: 1;
  }
}

/* [project]/src/styles/components/StatsSection.module.css [app-client] (css) */
.StatsSection-module__YSo_va__statsSection {
  color: #fff;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  padding: 60px 0;
}

.StatsSection-module__YSo_va__statsGrid {
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
}

.StatsSection-module__YSo_va__statCard {
  text-align: center;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 15px;
  padding: 30px 20px;
  transition: transform .3s;
}

.StatsSection-module__YSo_va__statCard:hover {
  transform: translateY(-5px);
}

.StatsSection-module__YSo_va__statCard h3 {
  opacity: .9;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
}

.StatsSection-module__YSo_va__statNumber {
  color: gold;
  margin: 0;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.2;
}

@media (max-width: 1024px) {
  .StatsSection-module__YSo_va__statsGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .StatsSection-module__YSo_va__statsSection {
    padding: 40px 0;
  }

  .StatsSection-module__YSo_va__statsGrid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 0 15px;
  }

  .StatsSection-module__YSo_va__statCard {
    padding: 20px 15px;
  }

  .StatsSection-module__YSo_va__statNumber {
    font-size: 28px;
  }
}

/*# sourceMappingURL=src_9bd51f63._.css.map*/