@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@500;700&display=swap");
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #f7f9fc;
  color: #6a6c6d;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: #3082c5;
  margin-bottom: 1rem;
}

a {
  color: #3082c5;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
a:hover {
  color: #753b7c;
}

p {
  margin-bottom: 1rem;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.top-bar {
  background-color: #000000;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
}
.top-bar__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0;
  min-height: 40px;
}
@media (min-width: 768px) {
  .top-bar__inner {
    flex-direction: row;
    justify-content: space-between;
    padding: 0;
  }
}
.top-bar__contact {
  display: flex;
  gap: 2rem;
}
.top-bar__link {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.top-bar__link:hover {
  opacity: 0.8;
  color: #ffffff;
}
.top-bar__link .icon {
  width: 14px;
  height: 14px;
}

.site-header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.site-header .site-branding {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
}
.site-header .site-branding a {
  color: #3082c5;
}
.site-header .main-navigation ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.site-header .main-navigation ul a {
  color: #6a6c6d;
  font-weight: 500;
}
.site-header .main-navigation ul a:hover {
  color: #753b7c;
}

.grid {
  display: grid;
  gap: 2rem;
}
.grid--2-col {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.grid--3-col {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.grid--4-col {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.site-footer {
  background-color: #3082c5;
  color: #ffffff;
  padding: 4rem 0;
  margin-top: 6rem;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.8);
}
.site-footer a:hover {
  color: #ffffff;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn--primary {
  background-color: #3082c5;
  color: #ffffff;
}
.btn--primary:hover {
  background-color: rgb(38.0081632653, 102.9387755102, 155.9918367347);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(48, 130, 197, 0.3);
  color: #ffffff;
}
.btn--secondary {
  background-color: #753b7c;
  color: #ffffff;
}
.btn--secondary:hover {
  background-color: rgb(84.393442623, 42.5573770492, 89.4426229508);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(117, 59, 124, 0.3);
  color: #ffffff;
}

.product-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.product-card:hover {
  transform: translateY(-5px);
}
.product-card {
  transition: box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.product-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.product-card__image {
  position: relative;
  padding-top: 100%;
  background-color: #f7f9fc;
  overflow: hidden;
}
.product-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.product-card:hover .product-card__image img {
  transform: scale(1.05);
}
.product-card__content {
  padding: 2rem;
  text-align: center;
}
.product-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.product-card__price {
  font-weight: 700;
  color: #753b7c;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.hero {
  padding: 9rem 0;
  background: linear-gradient(135deg, rgba(48, 130, 197, 0.08) 0%, rgba(117, 59, 124, 0.08) 100%), url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233082c5' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  text-align: center;
  border-radius: 0 0 40px 40px;
  margin-bottom: 6rem;
  position: relative;
  overflow: hidden;
}
.hero__badge {
  display: inline-block;
  background: rgba(117, 59, 124, 0.1);
  color: #753b7c;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  animation: fadeIn 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  opacity: 0;
}
.hero__title {
  font-size: 4rem;
  color: #3082c5;
  margin-bottom: 2rem;
  line-height: 1.1;
  animation: fadeIn 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  opacity: 0;
  animation-delay: 0.1s;
}
.hero__subtitle {
  font-size: 1.25rem;
  color: #8d8f90;
  max-width: 650px;
  margin: 0 auto 2rem;
  line-height: 1.8;
  animation: fadeIn 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  opacity: 0;
  animation-delay: 0.2s;
}

.feature-box {
  background: #ffffff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(48, 130, 197, 0.05);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(48, 130, 197, 0.2);
}
.feature-box__icon {
  width: 50px;
  height: 50px;
  background: rgba(48, 130, 197, 0.1);
  color: #3082c5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.feature-box__title {
  font-size: 1.25rem;
  color: #6a6c6d;
  margin-bottom: 0.5rem;
}
.feature-box__desc {
  color: #8d8f90;
  font-size: 1rem;
  line-height: 1.6;
}
