@import url(https://fonts.bunny.net/css?family=open-sans:400|urbanist:400);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f5f5f5;
  font-weight: 400;
  display: flex;
  flex-direction: column;
}

.qw-brand-font {
  font-family: "Urbanist", sans-serif;
}

.qw-main {
  flex: 1;
}

.qw-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.qw-grid {
  display: grid;
  gap: 40px;
}
.qw-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.qw-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.qw-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.qw-grid-auto {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.qw-grid-auto-sm {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.qw-flex {
  display: flex;
}
.qw-flex-center {
  align-items: center;
  justify-content: center;
}
.qw-flex-between {
  align-items: center;
  justify-content: space-between;
}
.qw-flex-column {
  flex-direction: column;
}
.qw-flex-wrap {
  flex-wrap: wrap;
}
.qw-flex-gap-sm {
  gap: 20px;
}
.qw-flex-gap-md {
  gap: 30px;
}

.qw-text-center {
  text-align: center;
}
.qw-text-left {
  text-align: left;
}
.qw-text-right {
  text-align: right;
}
.qw-text-primary {
  color: #333;
}
.qw-text-secondary {
  color: #666;
}
.qw-text-muted {
  color: #ccc;
}
.qw-text-white {
  color: #fff;
}
.qw-text-xs {
  font-size: 0.8rem;
}
.qw-text-sm {
  font-size: 0.9rem;
}
.qw-text-md {
  font-size: 1rem;
}
.qw-text-lg {
  font-size: 1.2rem;
}
.qw-text-xl {
  font-size: 1.4rem;
}
.qw-text-2xl {
  font-size: 1.8rem;
}
.qw-text-3xl {
  font-size: 2.2rem;
}
.qw-text-4xl {
  font-size: 2.8rem;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.4rem;
}

.qw-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.qw-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.qw-card-inset {
  background: #f5f5f5;
  box-shadow: inset 0 4px 20px rgba(0, 0, 0, 0.05);
}
.qw-card-inset:hover {
  transform: none;
  box-shadow: inset 0 6px 25px rgba(0, 0, 0, 0.08);
}
.qw-card-dark {
  background: #333;
  color: #fff;
}
.qw-card-center {
  text-align: center;
}
.qw-card-sm {
  padding: 30px;
}
.qw-card-lg {
  padding: 60px;
}

.qw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border: none;
  border-radius: 20px;
  font-size: 1.1rem;
  font-weight: 400;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.qw-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.qw-btn-primary {
  background: #333;
  color: #f5f5f5;
}
.qw-btn-secondary {
  background: #f5f5f5;
  color: #333;
}
.qw-btn-sm {
  padding: 12px 24px;
  font-size: 0.9rem;
}
.qw-btn-lg {
  padding: 20px 40px;
  font-size: 1.2rem;
}
.qw-btn-full {
  width: 100%;
}

.qw-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.qw-icon-sm {
  width: 16px;
  height: 16px;
}
.qw-icon-md {
  width: 24px;
  height: 24px;
}
.qw-icon-lg {
  width: 32px;
  height: 32px;
}
.qw-icon-xl {
  width: 48px;
  height: 48px;
}

.qw-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #333;
  color: #f5f5f5;
  border-radius: 20px;
  margin: 0 auto;
}
.qw-icon-box-sm {
  width: 40px;
  height: 40px;
}
.qw-icon-box-lg {
  width: 80px;
  height: 80px;
}
.qw-icon-box-light {
  background: #f5f5f5;
  color: #333;
}

.qw-section {
  padding: 100px 0;
}
.qw-section-sm {
  padding: 60px 0;
}
.qw-section-lg {
  padding: 120px 0;
}
.qw-section-white {
  background: #fff;
}
.qw-section-light {
  background: #f5f5f5;
}
.qw-section-dark {
  background: #333;
  color: #fff;
}

.qw-section_header {
  text-align: center;
  margin-bottom: 60px;
}
.qw-section_header_title {
  margin-bottom: 20px;
}
.qw-section_header_subtitle {
  color: #666;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}
.qw-section-dark .qw-section_header_subtitle {
  color: #ccc;
}

.qw-m-0 {
  margin: 0;
}
.qw-m-xs {
  margin: 10px;
}
.qw-m-sm {
  margin: 20px;
}
.qw-m-md {
  margin: 30px;
}
.qw-m-lg {
  margin: 40px;
}
.qw-m-xl {
  margin: 60px;
}

.qw-p-0 {
  padding: 0;
}
.qw-p-xs {
  padding: 10px;
}
.qw-p-sm {
  padding: 20px;
}
.qw-p-md {
  padding: 30px;
}
.qw-p-lg {
  padding: 40px;
}
.qw-p-xl {
  padding: 60px;
}

.qw-shadow-none {
  box-shadow: none;
}
.qw-shadow-subtle {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.qw-shadow-elevated {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.qw-shadow-floating {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.qw-rounded-none {
  border-radius: 0;
}
.qw-rounded-sm {
  border-radius: 12px;
}
.qw-rounded-md {
  border-radius: 16px;
}
.qw-rounded-lg {
  border-radius: 20px;
}
.qw-rounded-xl {
  border-radius: 24px;
}
.qw-rounded-full {
  border-radius: 9999px;
}

.qw-animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.qw-animate-fade-up.qw-visible {
  opacity: 1;
  transform: translateY(0);
}

.qw-hero {
  text-align: center;
  padding: 100px 0;
  background: #fff;
}
.qw-hero_title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  margin-bottom: 20px;
  color: #333;
}
.qw-hero_subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: #666;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.qw-hero_cta {
  margin-top: 40px;
}
.qw-hero-dark {
  background: #333;
  color: #fff;
}
.qw-hero-dark .qw-hero_title {
  color: #fff;
}
.qw-hero-dark .qw-hero_subtitle {
  color: #ccc;
}

.qw-cta {
  text-align: center;
  padding: 80px 0;
  background: #333;
  color: #fff;
}
.qw-cta_title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 400;
}
.qw-cta_subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #ccc;
}
.qw-cta_actions {
  margin-top: 40px;
}
.qw-cta-light {
  background: #f5f5f5;
  color: #333;
}
.qw-cta-light .qw-cta_title {
  color: #333;
}
.qw-cta-light .qw-cta_subtitle {
  color: #666;
}

.qw-nav {
  display: flex;
  gap: 30px;
}
.qw-nav_link {
  color: #666;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}
.qw-nav_link:hover {
  color: #333;
}
.qw-nav-mobile {
  display: none;
}
@media (max-width: 768px) {
  .qw-nav {
    gap: 20px;
  }
  .qw-nav-mobile {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 60px 40px;
    transition: right 0.3s ease;
    z-index: 1000;
  }
  .qw-nav-mobile.qw-active {
    right: 0;
  }
}

.qw-header {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 20px 0;
  position: relative;
}
.qw-header_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .qw-header_content {
    position: relative;
  }
}

.qw-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #333;
  font-size: 24px;
  font-weight: 400;
  text-decoration: none;
}
.qw-logo-brand {
  font-family: "Urbanist", sans-serif;
}

.qw-footer {
  background: #222;
  color: #f5f5f5;
  text-align: center;
  padding: 40px 0;
}
.qw-footer p {
  color: #ccc;
}

.qw-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 1001;
}
.qw-burger_line {
  width: 100%;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.qw-burger.qw-active .qw-burger_line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}
.qw-burger.qw-active .qw-burger_line:nth-child(2) {
  opacity: 0;
}
.qw-burger.qw-active .qw-burger_line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}
@media (max-width: 768px) {
  .qw-burger {
    display: flex;
  }
}

.qw-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.qw-overlay.qw-active {
  opacity: 1;
  visibility: visible;
}

.qw-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.qw-modal.qw-active {
  opacity: 1;
  visibility: visible;
}
.qw-modal.qw-active .qw-modal_content {
  transform: translate(-50%, -50%) scale(1);
}
.qw-modal_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: #fff;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}
.qw-modal_header {
  padding: 40px;
  border-bottom: 1px solid #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.qw-modal_title {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0;
}
.qw-modal_close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition: all 0.2s ease;
}
.qw-modal_close:hover {
  background: #f5f5f5;
  color: #333;
}
.qw-modal_body {
  padding: 40px;
}
.qw-modal_footer {
  padding: 40px;
  border-top: 1px solid #f5f5f5;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}
.qw-modal-sm .qw-modal_content {
  max-width: 400px;
}
.qw-modal-md .qw-modal_content {
  max-width: 500px;
}
.qw-modal-lg .qw-modal_content {
  max-width: 700px;
}
.qw-modal-xl .qw-modal_content {
  max-width: 900px;
}

@media (max-width: 768px) {
  .qw-container {
    padding: 0 16px;
  }
  .qw-grid-2, .qw-grid-3, .qw-grid-4 {
    grid-template-columns: 1fr;
  }
  .qw-section {
    padding: 60px 0;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  .qw-btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
  .qw-nav:not(.qw-nav-mobile) {
    display: none;
  }
}/*# sourceMappingURL=qwantum.css.map */