/**
 * WEBSITE: https://themefisher.com
 * TWITTER: https://twitter.com/themefisher
 * FACEBOOK: https://www.facebook.com/themefisher
 * GITHUB: https://github.com/themefisher/
 */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  overflow-x: hidden;
  scroll-behavior: smooth;
  cursor: none;
}

html {
  scroll-behavior: smooth;
}

section {
  position: relative;
  z-index: 10;
}

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

.text-primary {
  color: var(--text-primary) !important;
}

.text-secondary {
  color: var(--text-secondary) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cursor {
  width: 20px;
  height: 20px;
  background: var(--primary-gradient);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
  opacity: 0.8;
}

.cursor-follower {
  width: 40px;
  height: 40px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.3s ease;
  opacity: 0.3;
}

.navbar {
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.btn-modern {
  background: var(--primary-gradient);
  border: none;
  border-radius: 50px;
  padding: 15px 35px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}
.btn-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(249, 167, 68, 0.4);
  color: white;
}
.btn-modern:hover::before {
  left: 100%;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}
.glass-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-glow);
}

.whosfor-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.whosfor-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.whosfor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.whosfor-card:hover::before {
  transform: scaleX(1);
}
.whosfor-card:hover .whosfor-icon {
  transform: rotate(360deg) scale(1.1);
}

.whosfor-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  transition: all 0.3s ease;
}

.feature-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.feature-card:hover::before {
  transform: scaleX(1);
}
.feature-card:hover .feature-icon {
  transform: rotate(360deg) scale(1.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  transition: all 0.3s ease;
}

.testimonial-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--glass-border);
  height: 100%;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-10px);
}

.partner-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.partner-card:hover .partner-logo img {
  filter: grayscale(0%);
}

.partner-logo {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-logo img {
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.partner-link {
  text-decoration: none;
  color: inherit;
}

.card-hover-effect {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-hover-effect:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-stack {
  position: relative;
  display: inline-block;
  width: 100%;
  aspect-ratio: 1/1;
  max-width: 100%;
  margin: 0 auto;
}
.image-stack .layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: center center;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
.image-stack .layer.layer-1 {
  z-index: 1;
  animation: rotate 4s ease-out forwards;
}
.image-stack .layer.layer-2 {
  z-index: 2;
  animation: rotate 5s ease-out forwards;
}
.image-stack .layer.layer-3 {
  z-index: 3;
  animation: rotate 6s ease-out forwards;
}

.form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 15px;
  color: white;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}
.form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(249, 167, 68, 0.25);
  color: white;
}
.form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.form-control.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.form-control.is-valid {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(249, 167, 68, 0.25);
}

.invalid-feedback {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.alert {
  border-radius: 10px;
  border: none;
  font-weight: 500;
}
.alert.alert-success {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.2);
}
.alert.alert-danger {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.2);
}

.hero-section {
  min-height: 100vh;
  background: var(--stakco-dark-wine-gold);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  transition: transform 0.1s ease-out;
}

.floating-element {
  position: absolute;
  opacity: 0.4;
  animation: float 6s ease-in-out infinite;
  z-index: 2;
}
.floating-element:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}
.floating-element:nth-child(2) {
  top: 60%;
  left: 80%;
  animation-delay: 2s;
}
.floating-element:nth-child(3) {
  top: 30%;
  right: 15%;
  animation-delay: 4s;
}

.puzzle-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary-color), #ff6b6b, #4ecdc4);
  opacity: 0.8;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}
.puzzle-layer:nth-child(1) {
  background: linear-gradient(135deg, #f9a743 0%, transparent 100%);
  z-index: 3;
  animation: rotateLayer1 10s linear infinite;
}
.puzzle-layer:nth-child(2) {
  background: linear-gradient(135deg, transparent 0%, #ff6b6b 50%, transparent 100%);
  z-index: 2;
  animation: rotateLayer2 15s linear infinite reverse;
}
.puzzle-layer:nth-child(3) {
  background: linear-gradient(135deg, #4ecdc4 0%, transparent 100%);
  z-index: 1;
  animation: rotateLayer3 20s linear infinite;
}

.whosfor-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  z-index: 10;
}

.features-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  z-index: 10;
}

.unique-features-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  z-index: 10;
}

.feature-showcase {
  position: relative;
  transition: transform 0.3s ease;
}
.feature-showcase:hover {
  transform: translateY(-10px);
}

.showcase-image img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.feature-content {
  padding: 2rem 0;
}

.partners-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  z-index: 10;
}

.video-section {
  padding: 100px 0;
  background: var(--text-primary);
  color: white;
  position: relative;
  z-index: 10;
}

.video-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}
.video-container:hover {
  transform: scale(1.02);
}

.testimonials-section {
  padding: 100px 0;
  background: var(--stakco-dark-deep-rosewood);
  color: white;
  position: relative;
  z-index: 10;
}

.contact-section {
  padding: 100px 0;
  background: var(--text-primary);
  color: white;
  position: relative;
  z-index: 10;
}

.contact-form {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--glass-border);
}

.footer-block {
  background: var(--stakco-light-champagne-horizon);
}

.footer-modern {
  background: var(--stakco-dark-wine-gold);
  color: white;
  position: relative;
  overflow: hidden;
}
.footer-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-grain)"/></svg>') repeat;
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0 2rem;
}

.footer-main {
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.footer-logo {
  margin-bottom: 2rem;
}
.footer-logo img {
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}
.footer-logo:hover img {
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(249, 167, 67, 0.5));
  transform: scale(1.05);
}

.footer-description {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-link-group h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.footer-link-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-link-group li {
  margin-bottom: 0.5rem;
}
.footer-link-group a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-link-group a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}
.footer-link-group a i {
  font-size: 0.8rem;
  opacity: 0.7;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}
.social-link:hover {
  background: var(--primary-gradient);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(249, 167, 67, 0.4);
}

.footer-bottom {
  text-align: center;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.footer-legal a:hover {
  color: var(--primary-color);
}
.footer-legal .separator {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin: 0;
}

.footer-patent {
  background: rgba(249, 167, 67, 0.1);
  border: 1px solid rgba(249, 167, 67, 0.2);
  border-radius: 20px;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}
@keyframes rotateLayer1 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotateLayer2 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotateLayer3 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--text-primary);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(249, 167, 68, 0.3);
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.low-performance .floating-element {
  animation: none;
}
.low-performance .puzzle-layer {
  animation-duration: 20s;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  .feature-card,
  .whosfor-card {
    margin-bottom: 2rem;
  }
  .unique-features-section .row {
    margin-bottom: 3rem;
  }
  .feature-content {
    padding: 1rem 0;
  }
  .footer-content {
    padding: 3rem 0 1.5rem;
  }
  .footer-links {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-legal {
    justify-content: center;
    order: 2;
  }
  .footer-copyright {
    order: 1;
    margin-bottom: 1rem;
  }
}
@media (max-width: 576px) {
  .footer-links {
    gap: 1.5rem;
  }
  .footer-legal {
    flex-direction: column;
    gap: 1rem;
  }
  .footer-legal .separator {
    display: none;
  }
}
@media (max-width: 768px) {
  .display-5 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .display-6 {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .lead {
    font-size: 1rem;
  }
}

:root {
  --primary-color: #f9a743;
  --primary-gradient: linear-gradient(135deg, #f9a743 0%, #ffc947 100%);
  --glass-bg: rgba(255, 255, 255, 0.25);
  --glass-border: rgba(255, 255, 255, 0.18);
  --shadow-soft: 0 8px 32px rgba(31, 38, 135, 0.37);
  --shadow-glow: 0 0 40px rgba(249, 167, 68, 0.4);
  --text-primary: #3c2f38;
  --text-secondary: #7f8c8d;
  --stakco-light-golden-sunrise: linear-gradient(135deg, #F9EA59 0%, #DFAC6D 100%);
  --stakco-light-warm-rose-glow: linear-gradient(135deg, #F9EA59 0%, #B83267 100%);
  --stakco-light-champagne-horizon: linear-gradient(135deg, #DFAC6D 0%, #D4984F 100%);
  --stakco-light-golden-berry: linear-gradient(135deg, #F9EA59 0%, #D4984F 50%, #B83267 100%);
  --stakco-dark-velvet-night: linear-gradient(135deg, #3C2F38 0%, #B83267 100%);
  --stakco-dark-deep-rosewood: linear-gradient(135deg, #3C2F38 0%, #D4984F 100%);
  --stakco-dark-royal-twilight: linear-gradient(135deg, #3C2F38 0%, #DFAC6D 100%);
  --stakco-dark-wine-gold: linear-gradient(135deg, #3C2F38 0%, #B83267 40%, #DFAC6D 100%);
}
/*# sourceMappingURL=main.css.map */
