/* [project]/components/HeroSection.module.css [app-client] (css) */
.HeroSection-module__SEewqa__hero {
  min-height: 100vh;
  padding: var(--spacing-3xl) 0 var(--spacing-2xl);
  background: linear-gradient(135deg, var(--color-background) 0%, var(--color-white) 100%);
  align-items: center;
  width: 100%;
  max-width: 100vw;
  display: flex;
  position: relative;
  overflow: hidden;
}

.HeroSection-module__SEewqa__hero:before {
  content: "";
  background: radial-gradient(circle, var(--color-primary-light) 0%, transparent 70%);
  opacity: .1;
  border-radius: 50%;
  width: 600px;
  height: 600px;
  position: absolute;
  top: -50%;
  right: -20%;
}

.HeroSection-module__SEewqa__container {
  width: 100%;
  max-width: 1200px;
  padding: 0 var(--spacing-md);
  z-index: 1;
  box-sizing: border-box;
  margin: 0 auto;
  position: relative;
}

.HeroSection-module__SEewqa__content {
  gap: var(--spacing-3xl);
  grid-template-columns: 1fr 1fr;
  align-items: center;
  display: grid;
}

.HeroSection-module__SEewqa__textContent {
  gap: var(--spacing-lg);
  flex-direction: column;
  flex: 1;
  display: flex;
}

.HeroSection-module__SEewqa__title {
  margin-bottom: var(--spacing-md);
  color: var(--color-text);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
}

.HeroSection-module__SEewqa__highlight {
  color: var(--color-primary);
  display: block;
}

.HeroSection-module__SEewqa__subtitle {
  color: var(--color-text-light);
  margin-bottom: var(--spacing-sm);
  font-size: 1.5rem;
  font-weight: 500;
}

.HeroSection-module__SEewqa__description {
  color: var(--color-text);
  margin-bottom: var(--spacing-lg);
  font-size: 1.125rem;
  line-height: 1.6;
}

.HeroSection-module__SEewqa__features {
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-xl);
  flex-direction: column;
  display: flex;
}

.HeroSection-module__SEewqa__feature {
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--color-text);
  font-size: 1rem;
  display: flex;
}

.HeroSection-module__SEewqa__featureIcon {
  background-color: var(--color-primary-light);
  width: 24px;
  height: 24px;
  color: var(--color-white);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}

.HeroSection-module__SEewqa__checkIcon {
  width: 16px;
  height: 16px;
}

.HeroSection-module__SEewqa__cta {
  gap: var(--spacing-md);
  flex-wrap: wrap;
  display: flex;
}

.HeroSection-module__SEewqa__phoneButton {
  align-items: center;
  gap: var(--spacing-sm);
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--spacing-md) var(--spacing-lg);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  border-radius: 50px;
  flex-shrink: 0;
  font-size: 1.125rem;
  font-weight: 600;
  display: flex;
}

.HeroSection-module__SEewqa__phoneButton:hover {
  background-color: var(--color-primary-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.HeroSection-module__SEewqa__phoneIcon {
  width: 24px;
  height: 24px;
}

.HeroSection-module__SEewqa__phoneContent {
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
  display: flex;
}

.HeroSection-module__SEewqa__phoneFree {
  opacity: .9;
  font-size: .75rem;
  font-style: italic;
  font-weight: 400;
}

.HeroSection-module__SEewqa__contactButton {
  background-color: var(--color-white);
  color: var(--color-primary);
  padding: var(--spacing-md) var(--spacing-lg);
  border: 2px solid var(--color-primary);
  transition: all var(--transition-base);
  white-space: nowrap;
  border-radius: 50px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 600;
  display: flex;
}

.HeroSection-module__SEewqa__contactButton:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.HeroSection-module__SEewqa__imageWrapper {
  contain: layout;
  position: relative;
}

.HeroSection-module__SEewqa__imageContainer {
  aspect-ratio: 4 / 3;
  width: 100%;
  min-height: 400px;
  box-shadow: var(--shadow-xl);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.HeroSection-module__SEewqa__image {
  object-fit: cover;
  filter: blur(1px) saturate(.7);
  transform: scale(1.05);
}

.HeroSection-module__SEewqa__imageOverlay {
  pointer-events: none;
  z-index: 1;
  position: absolute;
  inset: 0;
}

@media (max-width: 1023px) {
  .HeroSection-module__SEewqa__content {
    gap: var(--spacing-xl);
    grid-template-columns: 1fr;
  }

  .HeroSection-module__SEewqa__textContent {
    order: 1;
  }

  .HeroSection-module__SEewqa__imageWrapper {
    order: 2;
  }

  .HeroSection-module__SEewqa__title {
    font-size: 2.25rem;
  }

  .HeroSection-module__SEewqa__subtitle {
    font-size: 1.25rem;
  }
}

@media (max-width: 767px) {
  .HeroSection-module__SEewqa__hero {
    min-height: 100dvh;
    padding: 80px 0 var(--spacing-lg) 0;
    align-items: flex-start;
    display: flex;
    overflow-x: hidden;
  }

  .HeroSection-module__SEewqa__hero:before {
    display: none;
  }

  .HeroSection-module__SEewqa__container {
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
  }

  .HeroSection-module__SEewqa__content {
    gap: var(--spacing-sm);
    flex-direction: column;
    width: 100%;
    display: flex;
  }

  .HeroSection-module__SEewqa__textContent {
    gap: var(--spacing-sm);
    order: 1;
    width: 100%;
    max-width: 100%;
  }

  .HeroSection-module__SEewqa__imageWrapper {
    width: 100%;
    max-width: 100%;
    margin-top: var(--spacing-md);
    order: 2;
  }

  .HeroSection-module__SEewqa__imageContainer {
    aspect-ratio: 16 / 9;
    width: 100%;
    min-height: 200px;
    max-height: 200px;
  }

  .HeroSection-module__SEewqa__title {
    word-wrap: break-word;
    margin-bottom: var(--spacing-xs);
    font-size: 1.75rem;
    line-height: 1.2;
  }

  .HeroSection-module__SEewqa__subtitle {
    margin-bottom: var(--spacing-xs);
    font-size: 1rem;
  }

  .HeroSection-module__SEewqa__description {
    margin-bottom: var(--spacing-sm);
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-size: .8125rem;
    line-height: 1.5;
  }

  .HeroSection-module__SEewqa__features {
    margin-bottom: var(--spacing-sm);
    gap: 6px;
  }

  .HeroSection-module__SEewqa__feature {
    font-size: .875rem;
  }

  .HeroSection-module__SEewqa__featureIcon {
    width: 20px;
    height: 20px;
  }

  .HeroSection-module__SEewqa__checkIcon {
    width: 14px;
    height: 14px;
  }

  .HeroSection-module__SEewqa__cta {
    width: 100%;
    margin-top: var(--spacing-sm);
    flex-direction: column;
    gap: 10px;
  }

  .HeroSection-module__SEewqa__phoneButton, .HeroSection-module__SEewqa__contactButton {
    box-sizing: border-box;
    border-radius: 40px;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    padding: 12px 16px;
    font-size: .9375rem;
  }

  .HeroSection-module__SEewqa__phoneIcon {
    width: 20px;
    height: 20px;
  }

  .HeroSection-module__SEewqa__phoneContent {
    line-height: 1.1;
  }

  .HeroSection-module__SEewqa__phoneFree {
    font-size: .6875rem;
  }

  .HeroSection-module__SEewqa__contactButton {
    padding: 11px 16px;
  }
}

/* [project]/components/Footer.module.css [app-client] (css) */
.Footer-module__EZoWya__footer {
  padding: var(--spacing-xl) 0;
  text-align: center;
  background-color: var(--color-text);
  color: var(--color-white);
  font-size: .875rem;
}

.Footer-module__EZoWya__container {
  width: 100%;
  max-width: 1200px;
  padding: 0 var(--spacing-md);
  margin: 0 auto;
}

.Footer-module__EZoWya__subtitle {
  margin-top: var(--spacing-sm);
  opacity: .8;
}

.Footer-module__EZoWya__credit {
  text-align: center;
  color: #fff9;
  margin-top: var(--spacing-sm);
  font-size: .75rem;
}

.Footer-module__EZoWya__credit p {
  margin: 0;
}

.Footer-module__EZoWya__creditLink {
  color: var(--color-primary-light);
  text-decoration: none;
  transition: color .2s;
}

.Footer-module__EZoWya__creditLink:hover {
  color: #27c485cc;
}

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