/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

 
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: "Instrument Sans", sans-serif;
  background-color: #0a0118;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
}

.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header */
.header {
  position: fixed;
  left: 0;
  right: 0;
  background: rgba(10, 1, 24, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav {
  display: flex;
  gap: 40px;
  padding-left: 170px;
}

.nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  transition: color 0.3s ease;
  position: relative;
}

.nav a:hover {
  color: #8c7cd7;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #8c7cd7, #b28be4);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.header-buttons {
  display: flex;
  gap: 15px;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  margin: 3px 0;
  transition: 0.3s;
}

/* Buttons */
.btn {
  padding: 15px 24px;
  border: none;
  border-radius: 10px;
  font-family: "Instrument Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.11em;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #8c7cd7, #b28be4);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(140, 124, 215, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(140, 124, 215, 0.4);
}

.btn-secondary {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.btn-demo {
  background: linear-gradient(135deg, #0c031a, #292c30);
  color: #ffffff;
  box-shadow: 0px 4px 15px rgba(171, 179, 196, 0.3);
}

.btn-demo:hover {
  transform: translateY(-2px);
  box-shadow: 0px 8px 25px rgba(171, 179, 196, 0.4);
}

.btn-full {
  width: 100%;
}

/* Hero Section */
.hero {
  background: #0a0118;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero .container {
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 0px;
  font-size: 15px;
  opacity: 0.6;
  position: relative;
  margin-top: 50px;
}

.hero-badge::before,
.hero-badge::after {
  content: "";
  width: 101px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.hero-title {
  font-size: 86px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

/* Word flip animation */
.word-container {
  position: relative;
  display: inline-block;
  height: 1.2em;
  width: auto;
  min-width: 500px;
  perspective: 1000px;
  vertical-align: top;
  overflow: visible;
  margin-top: -10px;
}

.word {
  position: absolute;
  width: 100%;
  height: 100%;
  line-height: 1.2em;
  font-size: 1em;
  font-weight: 500;
  background: linear-gradient(180deg, #8c7cd7 43.75%, #b28be4 80.56%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: rotateX(-90deg);
  transform-origin: bottom;
  opacity: 0;
  white-space: nowrap;
  text-align: center;
  left: 0;
  right: 0;
}

.word.active {
  animation: flipUp 0.4s ease-out forwards;
}

.word.exit {
  animation: flipDown 0.3s ease-in forwards;
}

@keyframes flipUp {
  0% {
    transform: rotateX(-90deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}

@keyframes flipDown {
  0% {
    transform: rotateX(0deg);
    opacity: 1;
  }
  100% {
    transform: rotateX(90deg);
    opacity: 0;
  }
}

.title-main {
  display: block;
  font-size: 85px;
  margin-bottom: 30px;
}

.hero-description {
  font-size: 19px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
  margin-top: 20px;
  margin-bottom: 10px;
}

.hero-cta {
  margin-bottom: 24px;
}

.cta-text {
  font-size: 24px;
  font-weight: 500;
  color: #8c7cd7;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-instructions {
  display: flex;
  gap: 10px;
  font-size: 14px;
  opacity: 0.6;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}

.hero-instructions :last-child {
  padding-left: 5px;
}

.hero-image {
  text-align: center;
  margin-top: 60px;
}

.product-demo {
  width: 100%;
  max-width: 1200px;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0px 0px 60px rgba(114, 108, 210, 0.4), 0px 0px 30px rgba(114, 108, 210, 0.3), 0px 0px 15px
    rgba(114, 108, 210, 0.2);
  transition: transform 0.1s ease;
}

.product-demo:hover {
  transform: scale(1.02);
}

.hero-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: radial-gradient(ellipse at center bottom, rgba(178, 139, 228, 0.3) 0%, transparent 70%);
  z-index: -1;
}

/* Tagline Section */
.tagline-text {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 30px;
  text-align: center;
}

.tagline-highlight {
  color: #8c7cd7;
}

/* Section Styles */
.section-title {
  font-size: 54px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.1;
}

.section-description {
  font-size: 24px;
  text-align: center;
  margin-bottom: 60px;
  opacity: 0.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header {
  margin-bottom: 80px;
}

/* Problem Section */
.problem {
  background: #0c031a;
  padding: 100px 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.problem-card {
  background: linear-gradient(139.75deg, #0a0118 48.89%, #35057e 110.6%);
  border: 1px solid rgba(171, 179, 207, 0.3);
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 500px;
  padding-left: 30px;
  padding-right: 30px;
}

.problem-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(140, 124, 215, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.problem-card:hover::before {
  opacity: 1;
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(140, 124, 215, 0.2);
}

.problem-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  margin-top: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: #ffffff;
}

.problem-card h3 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
}

.problem-card p {
  font-size: 19px;
  opacity: 0.6;
  line-height: 1.4;
  margin-bottom: -100px;
}

/* Solutions Section */
.solutions {
  background: #0a0118;
  padding: 100px 0;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  margin-top: -40px;
  margin-left: 100px;
  max-width: 1200px;
}

.solution-card {
  background: #0a0118;
  border: 1px solid rgba(171, 179, 207, 0.25);
  border-radius: 10px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: auto;
  min-height: 280px;
  width: 400px;
}

.solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(171, 179, 207, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.solution-card:hover::before {
  opacity: 1;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(171, 179, 207, 0.1);
}

.solution-icon {
  width: 35px;
  height: 35px;
  margin: 0 auto 15px;
  background: conic-gradient(from 240.12deg at 177.5% 100%, #0c031a 0deg, #abb3c4 360deg);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
}

.solution-card h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1.2;
}

.solution-card .single-line-title {
  font-size: 24px;
  white-space: nowrap;
}

.solution-card p {
  font-size: 16px;
  opacity: 0.6;
  line-height: 1.4;
}

/* Demo Section */
.demo {
  background: #0c031a;
  padding: 100px 0;
}

.demo-header {
  text-align: center;
  margin-bottom: 60px;
}

.demo-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.step {
  background: #1f0b3e;
  border: 1px solid rgba(171, 179, 207, 0.3);
  border-radius: 10px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(140, 124, 215, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step:hover::before {
  opacity: 1;
}

.step:hover {
  transform: translateY(-3px);
}

.step-content {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 25px;
  height: 25px;
  background: conic-gradient(from 240.12deg at 177.5% 100%, #0c031a 0deg, #abb3c4 360deg);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-weight: 500;
  flex-shrink: 0;
  margin-top: 5px;
  margin-left: 10px;
}

.step-text {
  flex: 1;
}

.step h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
  text-align: left;
}

.step p {
  font-size: 14px;
  opacity: 0.6;
  line-height: 1.4;
  text-align: left;
}

.step-timeline-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(45deg, rgba(140, 124, 215, 0.2), rgba(140, 124, 215, 0.1));
  border-radius: 10px;
  transition: width 0.1s linear;
  z-index: 1;
}

.step.active .step-timeline-fill {
  background: linear-gradient(45deg, rgba(140, 124, 215, 0.3), rgba(140, 124, 215, 0.15));
}

.demo-image-container {
  text-align: center;
  margin-top: 60px;
}

.demo-image-background {
  background: linear-gradient(135deg, #1a0b3e 0%, #2d1b69 50%, #1a0b3e 100%);
  border-radius: 40px;
  padding: 40px;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.demo-image-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(140, 124, 215, 0.2) 0%, transparent 70%);
  z-index: 1;
}

.demo-image {
  position: relative;
  z-index: 2;
  width: 1340px;
}

.demo-image img {
  width: 100%;
  max-width: 1300px;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0px 20px 60px rgba(114, 108, 210, 0.3), 0px 10px 30px rgba(114, 108, 210, 0.2);
  transition: opacity 0.3s ease;
  position: relative;
  margin-left: 20px;
  margin-top: 20px;
}

.demo-image img:hover {
  transform: scale(1.02);
  transition: transform 0.5s ease;
}

/* Features Section */
.features {
  background: #0a0118;
  padding: 100px 0;
}

.features-header {
  text-align: center;
  margin-bottom: 80px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background: linear-gradient(139.75deg, #0a0118 48.89%, #35057e 110.6%);
  border: 1px solid rgba(171, 179, 207, 0.3);
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(140, 124, 215, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(140, 124, 215, 0.2);
}

.feature-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: #ffffff;
}

.feature-number {
  font-size: 74px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #ffffff;
}

.feature-card h3 {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 20px;
}

.feature-card p {
  font-size: 18px;
  opacity: 0.6;
  line-height: 1.4;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #1a0b3e 0%, #2d1b69 50%, #1a0b3e 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(140, 124, 215, 0.3) 0%, transparent 70%);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 72px;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.1;
}

.cta-gradient {
  background: linear-gradient(180deg, #8c7cd7 43.75%, #b28be4 80.56%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-description {
  font-size: 24px;
  margin-bottom: 40px;
  opacity: 0.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Contact Section */
.contact {
  background: #0a0118;
  padding: 100px 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-container {
  background: #0a0118;
  border: 1px solid rgba(171, 179, 207, 0.25);
  border-radius: 10px;
  padding: 40px;
}

.form-group {
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  background: #0a0118;
  border: 1px solid rgba(171, 179, 207, 0.25);
  border-radius: 10px;
  color: #ffffff;
  font-size: 14px;
  font-family: "Instrument Sans", sans-serif;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #8c7cd7;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.phone-input {
  display: flex;
  gap: 10px;
}

.country-code-input {
  display: flex;
  align-items: center;
  background: #0a0118;
  border-radius: 10px;
  padding: 0 10px;
  width: 80px;
  flex-shrink: 0;
}

.plus-sign {
  color: #ffffff;
  font-size: 14px;
  margin-left: 8px;
  position: absolute;
}

.country-code {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 14px;
  font-family: "Instrument Sans", sans-serif;
  width: 100%;
  padding: 15px 0;
}

.country-code:focus {
  outline: none;
}

.country-code::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.phone-number {
  flex: 1;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.form-checkbox input[type="checkbox"] {
  width: 19px;
  height: 18px;
  background: #0a0118;
  border: 1px solid rgba(171, 179, 207, 0.25);
  border-radius: 5px;
}

.form-checkbox label {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.contact-info {
  background: #0a0118;
  border: 1px solid rgba(171, 179, 207, 0.25);
  border-radius: 10px;
  padding: 40px 30px;
  height: fit-content;
}

.contact-info h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #ffffff;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-icon {
  width: 40px;
  height: 38px;
  background: conic-gradient(from 240.12deg at 177.5% 100%, #0c031a 0deg, #abb3c4 360deg);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.contact-item span {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
}

/* Footer */
.footer {
  background: #0c031a;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 40px;
  align-items: start;
}

.footer-brand img {
  height: 40px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.8;
  margin-left: 10px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-column a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 15px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  opacity: 1;
  color: #8c7cd7;
}

.footer-social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.footer-social-icons .social-link {
  font-size: 18px;
  color: #fff;
  background: linear-gradient(135deg, #8c7cd7 60%, #b28be4 100%);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-icons .social-link:hover {
  background: linear-gradient(135deg, #b28be4 60%, #8c7cd7 100%);
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(171, 179, 207, 0.2);
}

.footer-bottom p {
  font-size: 12px;
  opacity: 0.6;
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1400px) {
  .demo-image {
    width: 1000px;
  }
}

@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .nav {
    padding-left: 50px;
  }
  .demo-image {
    width: 800px;
  }
}

@media (max-width: 1024px) {
  .word-container {
    min-width: 150px;
  }
  .demo-image {
    width: 600px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
    max-width: 100%;
  }

  .header .container {
    position: relative;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 1, 24, 0.98);
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    border-radius: 10px;
    margin-top: 10px;
    padding-left: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }

  .nav.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .header-buttons {
    display: none;
  }

  /* Hero Section Mobile Fixes */
  .hero-badge {
    font-size: 12px;
    gap: 15px;
    margin-bottom: 20px;
    margin-top: -30px;
  }

  .hero-badge::before,
  .hero-badge::after {
    width: 60px;
  }

  .hero-title {
    font-size: 42px;
    margin-bottom: 20px;
  }

  .title-main {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .word-container {
    min-width: 140px;
    height: 1.1em;
  }

  .word {
    font-size: 0.9em;
  }

  .hero-description {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .hero-cta {
    margin-bottom: 20px;
  }

  .cta-text {
    font-size: 20px;
  }

  .section-title {
    font-size: 36px;
  }

  .cta-title {
    font-size: 48px;
  }

  .tagline-text {
    font-size: 32px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-social-icons {
    justify-content: center;
  }

  .hero-instructions {
    flex-direction: column;
    gap: 10px;
    font-size: 12px;
    margin-bottom: 40px;
  }
  .solution-card .single-line-title {
    font-size: 20px;
    white-space: nowrap;
  }

  .step-content {
    flex-direction: row;
    text-align: left;

  }

  .step h3,
  .step p {
    text-align: center;
  }

  .demo-image {
    width: 100%;
    max-width: 1000px;
  }

  .demo-image img {
    margin-left: 0;
    margin-top: 0;
  }

  .product-demo {
    width: 100%;
    max-width: 550px;
  }

  .hero-description {
    width: auto;
    max-width: 90%;
  }

  /* Solutions Grid Mobile */
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-left: 1px;
    margin-right: 1px;
  }

  .solution-card {
    padding: 25px 20px;
    min-height: 220px;
    width: 100%;
  }

  .solution-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .solution-card p {
    font-size: 14px;
  }

  .solution-icon {
    width: 30px;
    height: 30px;
    font-size: 14px;
    margin-bottom: 12px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 36px;
  }

  .title-main {
    font-size: 28px;
  }

  .word-container {
    min-width: 150px;
    width: 200px;
  }

  .section-title {
    font-size: 28px;
  }

  .cta-title {
    font-size: 36px;
  }

  .tagline-text {
    font-size: 24px;
  }

  .hero-description,
  .section-description,
  .cta-description {
    font-size: 16px;
  }

  .problem-card,
  .solution-card,
  .feature-card {
    padding: 25px 15px;
  }

  .contact-form-container,
  .contact-info {
    padding: 25px 15px;
  }

  .phone-input {
    flex-direction: column;
    gap: 15px;
  }

  .country-code-input {
    width: 100%;
  }

  .demo-image {
    width: 110%;
    max-width: 540px;
    margin-left: -12px;
}
  .demo-image-background {
    padding: 15px 20px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}
  .product-demo {
    width: 100%;
}

  .solution-card {
    min-height: 200px;
  }

  .solution-card h3 {
    font-size: 18px;
  }

  .solution-card p {
    font-size: 13px;
  }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: #0a0118;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #8c7cd7, #b28be4);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #b28be4, #8c7cd7);
}
