@font-face {
  font-family: 'SF Pro Text';
  src: url('assets/fonts/SFProText-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap
}
@font-face {
  font-family: 'SF Pro Text';
  src: url('assets/fonts/SFProText-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap
}
@font-face {
  font-family: 'SF Pro Text';
  src: url('assets/fonts/SFProText-Semibold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap
}
@font-face {
  font-family: 'SF Pro Text';
  src: url('assets/fonts/SFProText-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap
}
@font-face {
  font-family: Simonetta;
  src: url('assets/fonts/Simonetta-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}
html {
  scroll-behavior: smooth
}
body {
  font-family: 'SF Pro Text',-apple-system,BlinkMacSystemFont,sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: .3s
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px
}
.logo-text {
  font-family: 'SF Pro Text',-apple-system,BlinkMacSystemFont,sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: .1em
}
.nav {
  display: flex;
  gap: 2rem
}
.nav-link {
  text-decoration: none;
  color: #333;
  transition: color .3s;
  position: relative;
  font-family: 'SF Pro Text',-apple-system,BlinkMacSystemFont,sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 11px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #2563eb;
  transition: width .3s
}
.nav-link:hover {
  color: #2563eb
}
.nav-link:hover::after {
  width: 100%
}
.about-section {
  margin-top: 80px;
  padding: 0 0 2rem;
  background: #fff;
  min-height: calc(100vh - 80px);
  position: relative
}
.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 80px);
  position: relative
}
.quote-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto
}
.quote-text h1 {
  font-family: Simonetta,serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center
}
.explore-section {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center
}
.explore-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  color: #374151;
  transition: .3s
}
.explore-link:hover {
  color: #1e293b;
  transform: translateY(-2px)
}
.explore-link span {
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center
}
.explore-link i {
  font-size: .875rem
}
.products-section {
  background: #fff;
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  overflow: visible;
  padding-bottom: 2rem
}
.products-section .container {
  max-width: none;
  padding: 0;
  width: 100%
}
.section-header {
  text-align: center;
  margin-bottom: 2rem;
  flex-shrink: 0;
  padding: 2rem 2rem 0
}
.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem
}
.section-header p {
  font-size: 1.125rem;
  color: #64748b
}
.slider-container {
  position: relative;
  width: 95vw;
  max-width: none;
  margin: 0 auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  perspective: 1000px
}
.slider-track {
  display: flex;
  width: 500%;
  transform: translateX(-20%);
  transition: transform 1.2s cubic-bezier(.25, .1, .25, 1);
  will-change: transform;
  height: 75vh;
  overflow: visible;
  -webkit-transform: translateX(-20%);
  -webkit-transition: -webkit-transform 1.2s cubic-bezier(.25, .1, .25, 1)
}
@media (max-width:768px) {
  .slider-track {
    transform: translateX(-20%) translateZ(0);
    -webkit-transform: translateX(-20%) translateZ(0);
    transition: transform .8s ease-out;
    -webkit-transition: -webkit-transform .8s ease-out
  }
}
.slider-track.no-transition {
  transition: none
}
.slide.no-transition {
  transition: none!important
}
.slider {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,.1)
}
.slide {
  width: 20%;
  flex-shrink: 0;
  padding: 3rem;
  background: #fff;
  position: relative;
  height: 75vh;
  overflow: hidden;
  opacity: .7;
  transform: scale(.95);
  transition: opacity 1.2s cubic-bezier(.25, .1, .25, 1),transform 1.2s cubic-bezier(.25, .1, .25, 1);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d
}
.slide.active {
  opacity: 1;
  transform: scale(1)
}
@media (max-width:768px) {
  .slide {
    opacity: 1;
    transform: none;
    transition: none;
    -webkit-transform: none
  }
  .slide.active {
    opacity: 1;
    transform: none;
    -webkit-transform: none
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(50px)
  }
  to {
    opacity: 1;
    transform: translateX(0)
  }
}
.slide-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
  height: clamp(400px,60vh,640px);
  padding: 3rem
}
.slide-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg,#2563eb,#1d4ed8);
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: 0 15px 30px rgba(37,99,235,.3)
}
.slide-image i {
  font-size: 4rem;
  color: #fff
}
.slide-text h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem
}
.slide-text p {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 1.5rem
}
.slide-text ul {
  list-style: none
}
.slide-text li {
  padding: .5rem 0 .5rem 1.5rem;
  color: #475569;
  position: relative
}
.slide-text li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: 700
}
.slider-controls {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem auto 1rem;
  padding: 40px;
  width: 95vw;
  max-width: 95vw;
  z-index: 100;
  background: 0 0
}
.slider-dots-container {
  background: #ececec;
  border-radius: 50px;
  padding: 1rem 2rem;
  backdrop-filter: blur(10px)
}
.slider-btn {
  position: absolute;
  right: 40px;
  background: #ececec;
  color: #000;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  transition: .3s;
  display: flex;
  align-items: center;
  justify-content: center
}
.slider-btn:hover {
  background: #ececec;
  transform: scale(1.1)
}
.slider-dots {
  display: flex;
  gap: .5rem;
  align-items: center
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: .3s
}
.dot.active {
  width: 24px;
  height: 8px;
  border-radius: 4px;
  background: #374151
}
.app-slide {
  position: relative;
  overflow: hidden
}
.slide-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1
}
.slide-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover
}
.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,rgba(0,0,0,.7) 0,rgba(0,0,0,.4) 100%);
  z-index: 2
}
.app-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: clamp(400px,60vh,640px);
  width: 100%;
  color: #fff;
  padding: 3rem 4rem;
  margin: 0 auto
}
.app-header {
  margin-bottom: 2rem
}
.app-info {
  display: flex;
  align-items: center;
  gap: 1rem
}
.app-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,.3)
}
.app-name {
  font-weight: 600;
  font-size: 35px;
  line-height: 100%;
  letter-spacing: 0
}
.app-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start
}
.stat-number {
  font-weight: 600;
  font-size: 45.3px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #fff
}
.stat-label {
  font-weight: 600;
  font-size: 14.81px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #fff
}
.stat-divider {
  width: 3px;
  height: 33px;
  border-radius: 6.97px;
  background: #a2a2a2
}
.stat-rating {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-top: .25rem
}
.star {
  width: 16px;
  height: 16px
}
.app-description {
  margin-bottom: 2.5rem
}
.app-description p {
  font-weight: 400;
  font-size: 19px;
  line-height: 100%;
  letter-spacing: 0;
  color: rgba(255,255,255,.9);
  max-width: 360px
}
.app-download {
  margin-top: auto
}
.app-store-badge {
  height: 50px;
  width: auto;
  cursor: pointer;
  transition: transform .3s
}
.app-store-badge:hover {
  transform: scale(1.05)
}
.app-slide.light-theme {
  background: linear-gradient(135deg,#f8fafc 0,#e2e8f0 100%)
}
.app-slide.light-theme .slide-overlay {
  display: none
}
.app-slide.light-theme .app-content,
.app-slide.light-theme .app-name,
.app-slide.light-theme .stat-number {
  color: #1e293b
}
.app-slide.light-theme .stat-label {
  color: #64748b
}
.app-slide.light-theme .stat-divider {
  color: #94a3b8
}
.app-slide.light-theme .app-description p {
  color: #475569
}
.contacts-section {
  background: #f8fafc;
  text-align: center;
  display: flex;
  flex-direction: column
}
.contacts-section .container {
  height: 100%;
  display: flex;
  flex-direction: column
}
.contacts-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 4rem 0
}
.contacts-content h2 {
  font-weight: 600;
  font-size: 23px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #1f1f1f;
  margin-bottom: 1rem
}
.contacts-content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #1f1f1f;
  margin-bottom: 2rem
}
.contact-btn {
  width: 200px;
  background: #4f46e5;
  color: #fff;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 45.45px;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  cursor: pointer;
  transition: .3s;
  box-shadow: 0 4px 20px rgba(79,70,229,.3)
}
.contact-btn:hover {
  background: #4338ca;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(79,70,229,.4)
}
.contacts-footer {
  margin-top: auto;
  padding: 2rem 0 30px;
  text-align: center
}
.address,
.copyright {
  font-weight: 400;
  font-size: 10px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #1f1f1f;
  margin-bottom: 1rem
}
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.5);
  backdrop-filter: blur(5px);
  animation: .3s fadeIn
}
.modal.show {
  display: block
}
@keyframes fadeIn {
  from {
    opacity: 0
  }
  to {
    opacity: 1
  }
}
.modal-content {
  position: relative;
  background-color: #fff;
  margin: 5% auto;
  width: 90%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0,0,0,.2);
  animation: .3s slideUp
}
@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0
  }
  to {
    transform: translateY(0);
    opacity: 1
  }
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #e2e8f0
}
.modal-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b
}
.close {
  font-size: 2rem;
  color: #64748b;
  cursor: pointer;
  line-height: 1;
  transition: color .3s
}
.close:hover {
  color: #1e293b
}
.contact-form {
  padding: 2rem
}
.form-group {
  margin-bottom: 1.5rem
}
.form-group label {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600;
  color: #374151
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: .75rem;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color .3s;
  font-family: inherit
}
.form-group input:focus,
.form-group textarea:focus {
  outline: 0;
  border-color: #2563eb
}
.submit-btn {
  width: 100%;
  background: linear-gradient(135deg,#2563eb,#1d4ed8);
  color: #fff;
  border: none;
  padding: 1rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
  font-size: 1.125rem;
  position: relative
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,99,235,.4)
}
.submit-btn:disabled {
  opacity: .7;
  cursor: not-allowed;
  transform: none
}
@media (max-width:768px) {
  .header .container {
    justify-content: space-between;
    gap: 2rem
  }
  .nav {
    gap: 1.5rem
  }
  .logo-text {
    font-size: 1.125rem
  }
  .slide-content {
    grid-template-columns: 1fr;
    gap: 3rem
  }
  .contacts-content h2 {
    font-size: 2rem
  }
  .contacts-content p {
    font-size: 1rem
  }
  .quote-text h1 {
    font-size: 2.25rem
  }
  .app-content,
  .slide-content {
    height: clamp(350px,55vh,500px);
    padding: 2rem 3rem
  }
  .slider-container {
    width: 90vw
  }
  .slider-controls {
    max-width: 90vw
  }
  .app-name {
    font-size: 2rem
  }
  .stat-number {
    font-size: 1.5rem
  }
  .app-description p {
    font-size: 1rem
  }
  .app-store-badge {
    height: 45px
  }
  .explore-section {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%)
  }
  .slider-dots-container {
    padding: .75rem 1.5rem
  }
  .section-header {
    margin-bottom: 1.5rem
  }
  .section-header h2 {
    font-size: 2rem
  }
  .slider-btn {
    right: 0;
    width: 40px;
    height: 40px;
    font-size: 1.125rem
  }
  .modal-content {
    width: 95%;
    margin: 10% auto
  }
}
@media (max-width:480px) {
  .container {
    padding: 0 15px
  }
  .quote-text h1 {
    font-size: 1.75rem
  }
  .explore-section {
    bottom: 1.5rem
  }
  .contacts-content h2 {
    font-size: 1.75rem
  }
  .contacts-content p {
    font-size: .95rem;
    margin-bottom: 2rem
  }
  .contact-btn {
    padding: .875rem 2rem;
    font-size: .95rem
  }
  .address {
    padding: 0 1rem
  }
  .app-content {
    height: clamp(350px,55vh,500px);
    padding: 1rem;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between
  }
  .slide-content {
    height: clamp(350px,55vh,500px);
    padding: 1rem
  }
  .slider-container {
    width: 85vw
  }
  .app-name {
    font-size: 1.25rem
  }
  .app-icon {
    width: 35px;
    height: 35px;
    border-radius: 8px
  }
  .app-header {
    margin-bottom: 1rem;
    flex-shrink: 0
  }
  .app-info {
    display: flex;
    align-items: center;
    gap: .75rem
  }
  .app-stats {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 1rem;
    gap: .5rem;
    flex-shrink: 0
  }
  .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px
  }
  .stat-divider {
    display: none
  }
  .stat-number {
    font-size: 1rem
  }
  .stat-label {
    font-size: .75rem
  }
  .stat-rating {
    margin-top: .25rem
  }
  .star {
    width: 10px;
    height: 10px
  }
  .app-description {
    margin-bottom: 1rem;
    flex: 1;
    display: flex;
    align-items: center
  }
  .app-description p {
    font-size: .85rem;
    max-width: 100%;
    line-height: 1.3;
    margin: 0
  }
  .app-download {
    flex-shrink: 0;
    align-self: flex-start
  }
  .app-store-badge {
    height: 32px
  }
  .slider-controls {
    max-width: 85vw;
    padding: 20px 0;
    margin-top: .5rem
  }
  .products-section {
    min-height: auto;
    padding-bottom: 1rem
  }
  .slide,
  .slider-track {
    height: 65vh
  }
  .section-header {
    margin-bottom: 1rem;
    padding: 1.5rem 2rem 0
  }
  .section-header h2 {
    font-size: 1.75rem
  }
  .section-header p {
    font-size: 1rem
  }
  .slider-dots-container {
    padding: .5rem 1.25rem
  }
  .slider-btn {
    right: 0;
    width: 40px;
    height: 40px;
    font-size: 1rem
  }
  .slide {
    padding: 2rem 1rem
  }
  .contact-form {
    padding: 1.5rem
  }
  .contacts-footer {
    padding: 1.5rem 0 20px
  }
  .address {
    font-size: .75rem;
    margin-bottom: .5rem
  }
  .copyright {
    font-size: .7rem
  }
}
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #fff;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 3000;
  max-width: 400px;
  animation: .3s slideInRight
}
.notification.success {
  border-left: 4px solid #10b981;
  color: #065f46
}
.notification.error {
  border-left: 4px solid #ef4444;
  color: #991b1b
}
.notification.info {
  border-left: 4px solid #3b82f6;
  color: #1e40af
}
.notification i:first-child {
  font-size: 1.25rem
}
.notification-close {
  background: 0 0;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  opacity: .7;
  transition: opacity .3s
}
.notification-close:hover {
  opacity: 1
}
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0
  }
  to {
    transform: translateX(0);
    opacity: 1
  }
}
.body-no-scroll {
  overflow: hidden
}
.hidden {
  display: none!important
}
.header.scrolled {
  background: rgba(255,255,255,.98)!important;
  box-shadow: 0 2px 20px rgba(0,0,0,.1)!important
}
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: .6s
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0)
}