*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: linear-gradient(125deg, #0f172a, #33105f, #1a1a2e);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  color: #fff;
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
  line-height: 1.2;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 3rem;
  }
}

.text-gradient {
  background: linear-gradient(to right, #c4b5fd, #f9a8d4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}
.btn--primary {
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
  border: none;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(236, 72, 153, 0.6);
}
.btn--secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}
.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}
.shapes__item {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: float 20s infinite alternate;
}
.shapes__item--1 {
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: #8b5cf6;
}
.shapes__item--2 {
  bottom: -10%;
  right: -10%;
  width: 40vw;
  height: 40vw;
  background: #ec4899;
  animation-delay: -5s;
}
.shapes__item--3 {
  top: 40%;
  left: 60%;
  width: 30vw;
  height: 30vw;
  background: #3b82f6;
  animation-delay: -10s;
}

@keyframes float {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(30px, 50px);
  }
}
.nav {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}
.nav__logoMark {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: cover;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.35);
  flex-shrink: 0;
}
.nav__logoText {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1;
}
@media (min-width: 768px) {
  .nav__logoText {
    font-size: 1.5rem;
  }
}

.hero {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 4rem;
  position: relative;
  text-align: center;
}
.hero__content {
  max-width: 800px;
  z-index: 1;
}
.hero__title {
  font-size: 1.875rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 4rem;
  }
}
.hero__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .hero__subtitle {
    font-size: 1.125rem;
  }
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.section {
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}
.section__header {
  text-align: center;
  margin-bottom: 3rem;
}
.section__title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .section__title {
    font-size: 1.875rem;
  }
}
.section__subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}
@media (min-width: 768px) {
  .section__subtitle {
    font-size: 1.125rem;
  }
}

.capabilities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.capability-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.capability-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.45);
  border-color: rgba(255, 255, 255, 0.2);
}
.capability-card {
  padding: 2rem;
}
.capability-card__title {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .capability-card__title {
    font-size: 1.25rem;
  }
}
.capability-card__desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.7;
}

.problems-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .problems-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.problem-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.45);
  border-color: rgba(255, 255, 255, 0.2);
}
.problem-card {
  padding: 2rem;
}
.problem-card__title {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.problem-card__desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.7;
}

.credibility__card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.credibility__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.45);
  border-color: rgba(255, 255, 255, 0.2);
}
.credibility__card {
  padding: 2rem;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .credibility__card {
    padding: 3rem;
  }
}
.credibility__text {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1rem;
}
.credibility__text:last-child {
  margin-bottom: 0;
}

.how-i-work__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}
.how-i-work__item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.how-i-work__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.45);
  border-color: rgba(255, 255, 255, 0.2);
}
.how-i-work__item {
  padding: 1.5rem;
}
.how-i-work__item:hover {
  transform: translateY(-2px);
}
.how-i-work__item p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  line-height: 1.7;
}
.how-i-work__item p strong {
  color: #fff;
  font-size: 1rem;
}

.contact__form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.contact__form:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.45);
  border-color: rgba(255, 255, 255, 0.2);
}
.contact__form {
  padding: 2rem;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
.contact__form:hover {
  transform: none;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  border-color: rgba(255, 255, 255, 0.1);
}
.contact__form:focus-within {
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.45);
  border-color: rgba(255, 255, 255, 0.2);
}
.contact__group {
  margin-bottom: 1.5rem;
}
.contact__label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.contact__input, .contact__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.contact__input:focus, .contact__textarea:focus {
  outline: none;
  border-color: #8b5cf6;
  background: rgba(255, 255, 255, 0.1);
}
.contact__input::placeholder, .contact__textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.contact__textarea {
  resize: vertical;
  min-height: 120px;
}
.contact__submit {
  width: 100%;
}
.contact__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
.contact__feedback {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.875rem;
}
.contact__feedback--success {
  color: #34d399;
}
.contact__feedback--error {
  color: #f87171;
}

.animate-ready {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.footer {
  padding: 3rem 0 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 3rem;
}
.footer__copy {
  font-size: 0.875rem;
  opacity: 0.5;
}

/*# sourceMappingURL=main.css.map */
