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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #1E1E1E;
  color: #fbfbfc;
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  letter-spacing: -0.01em;
}

a {
  color: #fbfbfc;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #af3842;
}

ul {
  list-style: none;
}

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

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

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }
}
.section-header p {
  font-size: 1.1rem;
  color: rgba(251, 251, 252, 0.6);
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .section-header p {
    font-size: 1rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}
.btn i {
  margin-left: 0.5rem;
}
.btn-primary {
  background-color: #af3842;
  color: #fbfbfc;
}
.btn-primary:hover {
  background-color: rgb(199.7272727273, 82.2727272727, 92.1428571429);
}
.btn-outline {
  background-color: transparent;
  border: 2px solid rgba(251, 251, 252, 0.1);
  color: #fbfbfc;
}
.btn-outline:hover {
  border-color: #af3842;
  color: #af3842;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background-color: rgba(26, 34, 47, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo .logo {
  display: flex;
  align-items: center;
}
.navbar-logo .logo-icon {
  width: 150px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
}
.navbar-logo .logo-text {
  font-weight: 700;
  font-size: 1.2rem;
}
@media (max-width: 576px) {
  .navbar-logo .logo-text {
    display: none;
  }
}
.navbar-links {
  display: flex;
  gap: 2rem;
}
@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }
}
.navbar-links .nav-link {
  position: relative;
  font-weight: 500;
}
.navbar-links .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #af3842;
  transition: all 0.3s ease;
}
.navbar-links .nav-link:hover::after, .navbar-links .nav-link.active::after {
  width: 100%;
}
.navbar-links .nav-link.active {
  color: #af3842;
}
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.navbar-actions .menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fbfbfc;
  font-size: 1.5rem;
  cursor: pointer;
}
@media (max-width: 768px) {
  .navbar-actions .menu-toggle {
    display: block;
  }
}
@media (max-width: 768px) {
  .navbar-actions .subscribe-btn {
    display: none;
  }
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: rgba(26, 34, 47, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.mobile-menu.active {
  display: block;
}
.mobile-menu .container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mobile-menu .nav-link {
  padding: 0.5rem 0;
  display: block;
}
.mobile-menu .mobile-subscribe-btn {
  margin-top: 0.5rem;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom right, #1E1E1E, #1a222f);
  overflow: hidden;
}
.hero #particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
@media (max-width: 992px) {
  .hero-text {
    order: 2;
  }
}
.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
}
.hero-title .static-text {
  display: block;
}
.hero-title .dynamic-text-wrapper {
  display: inline-block;
  position: relative;
  color: #af3842;
  height: 60px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero-title .dynamic-text-wrapper {
    height: 50px;
  }
}
.hero-title .dynamic-text {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.hero-title .dynamic-text.active {
  opacity: 1;
  transform: translateY(0);
}
.hero-description {
  font-size: 1.2rem;
  color: rgba(251, 251, 252, 0.6);
  margin-bottom: 2rem;
  max-width: 500px;
}
@media (max-width: 992px) {
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 768px) {
  .hero-description {
    font-size: 1.1rem;
  }
}
.hero-buttons {
  display: flex;
  gap: 1rem;
}
@media (max-width: 992px) {
  .hero-buttons {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .hero-buttons .btn {
    width: 100%;
  }
}
.hero-visual {
  position: relative;
  height: 500px;
}
@media (max-width: 992px) {
  .hero-visual {
    order: 1;
    height: 400px;
  }
}
.hero .svg-container {
  position: relative;
  height: 100%;
  width: 100%;
}
.hero .hero-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.hero .hero-svg.active {
  opacity: 1;
  transform: scale(1);
}
.hero .svg-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}
.hero .svg-circle {
  transform-origin: center;
  transform: scale(0);
}
.hero .svg-pulse {
  animation: pulse 2s infinite;
}
.hero .hero-svg.active .svg-path {
  animation: dash 2s ease forwards;
}
.hero .hero-svg.active .svg-path-accent {
  animation: fade-in 1s ease forwards 0.5s;
}
.hero .hero-svg.active .svg-circle {
  animation: scale-in 1s ease forwards;
}
.hero .hero-svg.active .svg-circle-inner {
  animation: scale-in 0.5s ease forwards 0.5s;
}
.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(175, 56, 66, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(30px);
  z-index: -1;
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.8;
  }
}
@keyframes scale-in {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.4;
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}
.features {
  padding: 6rem 0;
  background-color: rgba(26, 34, 47, 0.5);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-item {
  background-color: rgba(26, 34, 47, 0.5);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}
.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.feature-item .feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(175, 56, 66, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.feature-item .feature-icon i {
  font-size: 2rem;
  color: #af3842;
}
.feature-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.feature-item p {
  color: rgba(251, 251, 252, 0.6);
}

.solutions {
  padding: 6rem 0;
  background-color: #1E1E1E;
}
.solutions-stack {
  max-width: 800px;
  margin: 0 auto;
}

.solution-card {
  background-color: rgba(26, 34, 47, 0.5);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
}
.solution-card:hover {
  transform: translateX(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.solution-card .solution-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(175, 56, 66, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.solution-card .solution-icon i {
  font-size: 1.5rem;
  color: #af3842;
}
.solution-card .solution-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.solution-card .solution-content p {
  color: rgba(251, 251, 252, 0.6);
}
@media (max-width: 576px) {
  .solution-card {
    flex-direction: column;
    text-align: center;
  }
  .solution-card .solution-icon {
    margin-bottom: 1rem;
  }
}

.roadmap {
  padding: 6rem 0;
  background-color: rgba(26, 34, 47, 0.5);
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 0;
}
.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background-color: rgba(251, 251, 252, 0.1);
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .timeline-line {
    left: 30px;
  }
}
.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #af3842;
  height: 0;
  transition: height 1s ease;
}
.timeline-items {
  position: relative;
}
.timeline-item {
  position: relative;
  margin-bottom: 4rem;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-item.left .timeline-content {
  margin-right: 50%;
  padding-right: 3rem;
  text-align: right;
}
@media (max-width: 768px) {
  .timeline-item.left .timeline-content {
    margin-right: 0;
    padding-right: 0;
    padding-left: 3rem;
    margin-left: 30px;
    text-align: left;
  }
}
.timeline-item.right .timeline-content {
  margin-left: 50%;
  padding-left: 3rem;
}
@media (max-width: 768px) {
  .timeline-item.right .timeline-content {
    margin-left: 30px;
  }
}
.timeline-dot {
  position: absolute;
  top: 0;
  left: 50%;
  width: 20px;
  height: 20px;
  background-color: #af3842;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
@media (max-width: 768px) {
  .timeline-dot {
    left: 30px;
  }
}
.timeline-content {
  background-color: rgba(26, 34, 47, 0.5);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.timeline-content .timeline-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #af3842;
  font-weight: 600;
}
.timeline-content .timeline-date i {
  font-size: 1rem;
}
.timeline-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.timeline-content p {
  color: rgba(251, 251, 252, 0.6);
}

.team {
  padding: 6rem 0;
  background-color: #1E1E1E;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 1200px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.team-member {
  background-color: rgba(26, 34, 47, 0.5);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.team-member:hover .member-image img {
  transform: scale(1.1);
}
.team-member .member-image {
  height: 250px;
  overflow: hidden;
}
.team-member .member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.team-member .member-info {
  padding: 1.5rem;
  text-align: center;
}
.team-member .member-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.team-member .member-info .member-role {
  color: #af3842;
  font-weight: 600;
  margin-bottom: 1rem;
}
.team-member .member-info .member-bio {
  color: rgba(251, 251, 252, 0.6);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}
.team-member .member-info .member-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.team-member .member-info .member-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(251, 251, 252, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.team-member .member-info .member-social a i {
  color: #fbfbfc;
  font-size: 1rem;
}
.team-member .member-info .member-social a:hover {
  background-color: #af3842;
}
.team-member .member-info .member-social a:hover i {
  color: #fbfbfc;
}

.footer {
  background-color: #1a222f;
  padding: 4rem 0 2rem;
}
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 2rem;
}
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}
.footer-brand .logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.footer-brand .logo-icon {
  width: 150px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
}
.footer-brand p {
  color: rgba(251, 251, 252, 0.6);
  margin-bottom: 1.5rem;
}
.footer-brand .social-links {
  display: flex;
  gap: 1rem;
}
.footer-brand .social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(251, 251, 252, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.footer-brand .social-links a i {
  color: #fbfbfc;
  font-size: 1rem;
}
.footer-brand .social-links a:hover {
  background-color: #af3842;
}
.footer-brand .social-links a:hover i {
  color: #fbfbfc;
}
.footer-links h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
}
.footer-links h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #af3842;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-links ul a {
  color: rgba(251, 251, 252, 0.6);
}
.footer-links ul a:hover {
  color: #af3842;
}
.footer-newsletter h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
}
.footer-newsletter h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #af3842;
}
.footer-newsletter p {
  color: rgba(251, 251, 252, 0.6);
  margin-bottom: 1.5rem;
}
.footer-newsletter .newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-newsletter .newsletter-form input {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background-color: rgba(251, 251, 252, 0.1);
  border: 1px solid rgba(251, 251, 252, 0.1);
  color: #fbfbfc;
  outline: none;
}
.footer-newsletter .newsletter-form input:focus {
  border-color: #af3842;
}
.footer-newsletter .newsletter-form input::placeholder {
  color: rgba(251, 251, 252, 0.5);
}
.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(251, 251, 252, 0.1);
  text-align: center;
}
.footer-bottom p {
  color: rgba(251, 251, 252, 0.6);
  font-size: 0.9rem;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.modal.active {
  display: flex;
}
.modal-content {
  background-color: #1a222f;
  border-radius: 8px;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  position: relative;
}
.modal-content h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.modal-content p {
  color: rgba(251, 251, 252, 0.6);
  margin-bottom: 1.5rem;
}
.modal-content .form-group {
  margin-bottom: 1.5rem;
}
.modal-content .form-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background-color: rgba(251, 251, 252, 0.1);
  border: 1px solid rgba(251, 251, 252, 0.1);
  color: #fbfbfc;
  outline: none;
}
.modal-content .form-group input:focus {
  border-color: #af3842;
}
.modal-content .form-group input::placeholder {
  color: rgba(251, 251, 252, 0.5);
}
.modal-content .success-message {
  display: none;
  text-align: center;
  padding: 2rem 0;
}
.modal-content .success-message h3 {
  color: #4CAF50;
  margin-bottom: 0.5rem;
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: rgba(251, 251, 252, 0.6);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.modal-close:hover {
  color: #af3842;
}

[data-aos] {
  opacity: 0;
  transform: translateY(50px);
  transition: transform 0.8s ease, opacity 0.8s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

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