/* Custom Fonts */
@font-face {
  font-family: "Outfit";
  src: url("../Fonts/Outfit-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Outfit";
  src: url("../Fonts/Outfit-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Outfit";
  src: url("../Fonts/Outfit-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Outfit";
  src: url("../Fonts/Outfit-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Edo";
  src: url("../Fonts/edo.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Outfit",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
  color: #000;
  background-color: #f5f5f7;
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(245, 245, 247, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(79, 20, 175, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(245, 245, 247, 0.98);
  box-shadow: 0 2px 20px rgba(79, 20, 175, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.logo-text {
  font-family: "Edo", sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: #4f14af;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: #000 !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #4f14af;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #4f14af, #8b5cf6);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background: #4f14af;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f5f5f7 0%, #e8e8ea 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  z-index: 2;
  position: relative;
}

.hero-content {
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #000 !important;
  text-transform: uppercase;
}

.hero-title .highlight {
  color: #4f14af;
  background: linear-gradient(135deg, #4f14af, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.2rem;
  color: #1a1a1f !important;
  margin-bottom: 30px;
  line-height: 1.7;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #4f14af, #8b5cf6);
  color: white;
  box-shadow: 0 10px 25px rgba(79, 20, 175, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(79, 20, 175, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #4f14af;
  border: 2px solid #4f14af;
}

.btn-secondary:hover {
  background: #4f14af;
  color: white;
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #4f14af;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: #1a1a1f !important;
  font-weight: 600;
  text-transform: uppercase;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  perspective: 1200px;
  overflow: visible;
}

.hero-floating-3d {
  position: absolute;
  inset: -30px;
  pointer-events: none;
  z-index: 12;
}

.float-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.78);
  color: #1e293b;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 25px rgba(37, 99, 235, 0.12);
  transform-style: preserve-3d;
  will-change: transform;
}

.float-chip i {
  color: #4f14af;
}

.chip-queue {
  top: 6%;
  left: -8%;
}

.chip-time {
  top: 32%;
  right: -12%;
}

.chip-map {
  bottom: 8%;
  left: -5%;
}

.phone-mockup {
  position: relative;
  width: 300px;
  height: 600px;
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-radius: 30px;
  padding: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  border: 8px solid #333;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4f14af, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  animation: float 3s ease-in-out infinite;
  box-shadow: 0 10px 25px rgba(79, 20, 175, 0.3);
}

.icon-1 {
  top: -30px;
  right: -30px;
  animation-delay: 0s;
}

.icon-2 {
  bottom: 100px;
  left: -50px;
  animation-delay: 1s;
}

.icon-3 {
  top: 200px;
  right: -40px;
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(5deg);
  }
  66% {
    transform: translateY(10px) rotate(-5deg);
  }
}

.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: visible;
  padding-bottom: 20px;
  line-height: 0;
}

.hero-waves svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 120px;
}

.hero-waves path {
  fill: #ffffff;
}

/* Section Styles */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #070508;
  margin-bottom: 20px;
}

.section-description {
  font-size: 1.2rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

/* Features Section */
.features {
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.feature-category {
  background: linear-gradient(135deg, #f9fafb, #ffffff);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(79, 20, 175, 0.1);
  transition: all 0.3s ease;
}

.feature-category:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(79, 20, 175, 0.15);
}

.category-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000 !important;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4f14af, #8b5cf6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000 !important;
  margin-bottom: 8px;
}

.feature-content p {
  color: #1a1a1f !important;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Technology Section */
.technology {
  background: linear-gradient(135deg, #4f14af, #8b5cf6);
  color: white;
}

.technology .section-title,
.technology .section-description {
  color: rgb(19, 19, 22);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.tech-item {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.tech-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.mouse-tilt {
  transform-style: preserve-3d;
  will-change: transform;
  transition:
    transform 0.18s ease,
    box-shadow 0.25s ease;
}

.tech-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.tech-item h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #131313 !important;
  text-transform: uppercase;
}

.tech-item p {
  color: #353535 !important;
  font-weight: 500;
}

/* Screenshots Section */
.screenshots {
  background: #fff8e7;
  position: relative;
}

.screenshots::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 80px,
    rgba(214, 255, 31, 0.08) 80px,
    rgba(214, 255, 31, 0.08) 82px
  );
  pointer-events: none;
  z-index: 1;
}

.screenshots-carousel {
  overflow: visible;
  position: relative;
  z-index: 2;
  padding-bottom: 20px;
}

.screenshot-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  padding-bottom: 16px;
  position: relative;
  z-index: 2;
}

.screenshot-item {
  text-align: center;
  background: #fff !important;
  border: 3px solid #000;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.85);
  margin-bottom: 14px;
  margin-right: 8px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.screenshot-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(214, 255, 31, 0.1);
  transition: left 0.3s ease;
  z-index: -1;
}

.screenshot-item:hover {
  transform: translateY(-8px) rotate(0deg) !important;
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.9);
}

.screenshot-item:hover::before {
  left: 0;
}

.screenshot-item img {
  width: 220px;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.4);
  border: 2px solid #000;
  transition: all 0.3s ease;
}

.screenshot-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000 !important;
  margin-bottom: 10px;
}

.screenshot-item p {
  color: #1a1a1f !important;
  font-size: 0.95rem;
}

/* Download Section */
.download {
  background:
    radial-gradient(
      circle at 8% 8%,
      rgba(214, 255, 31, 0.4) 0,
      transparent 30%
    ),
    radial-gradient(
      circle at 92% 85%,
      rgba(7, 200, 255, 0.3) 0,
      transparent 35%
    ),
    linear-gradient(155deg, #fff8e7 0%, #fff4d9 100%);
  color: #000;
  border: 4px solid #000;
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.9);
  position: relative;
  overflow: hidden;
}

.download::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 74, 0.15) 0,
    transparent 70%
  );
  pointer-events: none;
}

.download-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.download-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000 !important;
  text-transform: uppercase;
  letter-spacing: -0.8px;
  text-shadow: 3px 3px 0 rgba(214, 255, 31, 0.6);
}

.download-text p {
  font-size: 1.1rem;
  color: #000 !important;
  margin-bottom: 30px;
  line-height: 1.7;
  font-weight: 500;
}

.download-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 40px;
}

.download-feature::after {
  content: attr(data-text);
  color: #000 !important;
  font-weight: 600;
}

.download-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(214, 255, 31, 0.1);
  border: 1px solid rgba(214, 255, 31, 0.3);
}

.download-feature i {
  color: #000 !important;
  font-size: 1.1rem;
  background: var(--g-acid);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.download-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.download-btn {
  display: inline-flex;
  padding: 12px 24px;
  border-radius: 8px;
  background: #000;
  border: 2px solid #000;
  cursor: pointer;
  transition: all 0.3s ease;
}

.download-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 #000;
}

.download-btn img {
  height: 60px;
  transition: all 0.3s ease;
  filter: brightness(1.2);
}

.download-btn:hover img {
  transform: scale(1.08);
  filter: brightness(1.4);
}

.download-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 450px;
}

.phone-group {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-1,
.phone-2 {
  width: 200px;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  border: 3px solid #000;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.7);
}

.phone-1 {
  position: relative;
  z-index: 2;
  transform: rotate(-3deg);
}

.phone-2 {
  position: absolute;
  top: 50px;
  left: 100px;
  z-index: 1;
  transform: rotate(2deg);
  opacity: 0.85;
}

/* Footer */
.footer {
  background:
    linear-gradient(155deg, rgba(7, 200, 255, 0.08), rgba(255, 107, 74, 0.09)),
    #0a0a0d;
  color: white;
  padding: 80px 0 30px;
  border: 3px solid #000;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.85);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.footer-logo span {
  font-family: "Edo", sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #d6ff1f !important;
}

.footer-section p {
  color: #fff !important;
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-section h4 {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #d6ff1f !important;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: #fff !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: #d6ff1f !important;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(214, 255, 31, 0.15);
  border: 2px solid #d6ff1f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d6ff1f;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #d6ff1f;
  color: #000;
  transform: translateY(-3px);
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #fff !important;
}

.contact-info i {
  color: #d6ff1f !important;
  width: 16px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid rgba(214, 255, 31, 0.3);
  color: #fff !important;
  font-weight: 500;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4f14af, #8b5cf6);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 10px 25px rgba(79, 20, 175, 0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(79, 20, 175, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(245, 245, 247, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(20px);
    padding: 20px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-floating-3d {
    inset: -15px;
  }

  .float-chip {
    font-size: 0.78rem;
    padding: 8px 12px;
  }

  .chip-queue {
    left: 2%;
    top: 0;
  }

  .chip-time {
    right: 0;
    top: 28%;
  }

  .chip-map {
    left: 4%;
    bottom: 5%;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 20px;
  }

  .phone-mockup {
    width: 250px;
    height: 500px;
  }

  .section-title {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .screenshot-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .screenshot-item img {
    width: 150px;
    height: 300px;
  }

  .download-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .download-text h2 {
    font-size: 2rem;
  }

  .download-features {
    grid-template-columns: 1fr;
  }

  .phone-2 {
    display: none;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .tech-grid {
    grid-template-columns: 1fr;
  }

  .screenshot-track {
    grid-template-columns: 1fr;
  }

  .screenshot-item img {
    width: 200px;
    height: 400px;
  }

  .hero-floating-3d {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-floating-3d {
    display: none;
  }

  .mouse-tilt {
    transition: none;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #4f14af, #8b5cf6);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #3d0f87, #7c3aed);
}

/* Loading Animation */
@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.loading {
  animation: pulse 2s infinite;
}

/* Smooth Animations */
* {
  transition: all 0.3s ease;
}

/* AOS Animation Overrides */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* Live Queue Timing Section */
.live-timing {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.timing-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.timing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #4f14af, #8b5cf6);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(79, 20, 175, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(79, 20, 175, 0);
  }
}

.timing-title {
  font-size: 3rem;
  font-weight: 700;
  color: #000 !important;
  margin-bottom: 20px;
  line-height: 1.2;
  text-transform: uppercase;
}

.timing-description {
  font-size: 1.2rem;
  color: #1a1a1f !important;
  margin-bottom: 40px;
  line-height: 1.8;
  font-weight: 500;
}

.timing-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.timing-feature {
  display: flex;
  align-items: center;
  gap: 15px;
}

.timing-feature i {
  font-size: 1.5rem;
  color: #4f14af;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(79, 20, 175, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.timing-feature h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000 !important;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.timing-feature p {
  color: #1a1a1f !important;
  font-size: 0.95rem;
}

/* Queue Demo Styles */
.queue-demo {
  background: #fff !important;
  border: 2px solid #000;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.85);
  overflow: hidden;
  max-width: 400px;
  margin: 0 auto;
}

.queue-header {
  background: linear-gradient(135deg, #4f14af, #8b5cf6);
  color: white;
  padding: 20px;
  text-align: center;
}

.queue-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff !important;
  text-transform: uppercase;
}

.salon-name {
  font-size: 0.9rem;
  opacity: 1 !important;
  color: rgba(255, 255, 255, 0.95) !important;
}

.queue-list {
  padding: 0;
}

.queue-item {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #f1f3f4;
  transition: all 0.3s ease;
}

.queue-item:last-child {
  border-bottom: none;
}

.queue-item.completed {
  background: rgba(40, 167, 69, 0.05);
  opacity: 0.7;
}

.queue-item.active {
  background: rgba(255, 193, 7, 0.1);
  border-left: 4px solid #ffc107;
}

.queue-item.current {
  background: linear-gradient(
    135deg,
    rgba(79, 20, 175, 0.1),
    rgba(139, 92, 246, 0.05)
  );
  border-left: 4px solid #4f14af;
  box-shadow: 0 0 20px rgba(79, 20, 175, 0.1);
}

.queue-item.waiting {
  background: rgba(108, 117, 125, 0.05);
}

.queue-number {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #495057;
  margin-right: 15px;
  flex-shrink: 0;
}

.queue-item.completed .queue-number {
  background: #28a745;
  color: white;
}

.queue-item.active .queue-number {
  background: #ffc107;
  color: #212529;
}

.queue-item.current .queue-number {
  background: #4f14af;
  color: white;
}

.queue-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.customer-name {
  font-weight: 600;
  color: #000 !important;
  margin-bottom: 2px;
}

.status {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1a1f !important;
}

.status.completed {
  color: #28a745;
}

.status.active {
  color: #ffc107;
}

.status.waiting {
  color: #6c757d;
}

.queue-item.current .status {
  color: #4f14af;
  font-weight: 600;
}

.queue-item i:last-child {
  font-size: 1rem;
  color: #dee2e6;
}

.queue-item.completed i:last-child {
  color: #28a745;
}

.queue-item.active i:last-child {
  color: #ffc107;
}

.queue-item.current i:last-child {
  color: #4f14af;
}

.queue-footer {
  background: #f8f9fa;
  padding: 15px 20px;
  text-align: center;
}

.estimated-time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #495057;
  font-size: 0.95rem;
}

.estimated-time i {
  color: #4f14af;
}

.estimated-time strong {
  color: #4f14af;
}

/* Responsive Design for Live Timing */
@media (max-width: 768px) {
  .timing-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .timing-title {
    font-size: 2.5rem;
  }

  .timing-description {
    font-size: 1.1rem;
  }

  .timing-features {
    max-width: 400px;
    margin: 0 auto;
  }

  .queue-demo {
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .timing-title {
    font-size: 2rem;
  }

  .queue-demo {
    max-width: 300px;
  }
}

/* Problem Section */
.problem-section {
  background: white;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: center;
}
.problem-item {
  padding: 30px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(79, 20, 175, 0.05);
  transition: all 0.3s ease;
}
.problem-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(79, 20, 175, 0.1);
}
.problem-icon {
  font-size: 3rem;
  color: #f44336;
  margin-bottom: 20px;
}

/* Solution Section */
.solution-section {
  background: #f9fafb;
}

/* Social Proof */
.social-proof-section {
  background: white;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
.testimonial-card {
  background: linear-gradient(135deg, #f9fafb, #ffffff);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(79, 20, 175, 0.1);
}
.testimonial-content p {
  font-size: 1.1rem;
  font-style: italic;
  color: #1a1a1f !important;
  margin-bottom: 20px;
}
.author-info h4 {
  font-weight: 600;
  color: #000 !important;
}
.author-info p {
  color: #000 !important;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Salon Owners Section */
.salon-owners-section {
  background: linear-gradient(135deg, #e8e8e8, #f5f5f7);
}
.owner-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.owner-benefits {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
  color: #000 !important;
  font-weight: 600;
}
.benefit-item i {
  color: #4f14af;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .owner-content {
    grid-template-columns: 1fr;
  }
}

/* --- Pro Clean Tech Layout & Animations Additions --- */

/* Smooth Professional Animations */
@keyframes floatSmooth {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes backgroundPan {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

/* Global Clean Tech Utilities */
.clean-tech-section {
  background: #ffffff;
  color: #1e293b;
}
.clean-gradient-bg {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}
.tech-gridline-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.8;
  z-index: 1;
  animation: backgroundPan 60s linear infinite;
}

/* Text Colors & Contrast */
.dark-text {
  color: #0f172a !important;
}
.professional-text {
  color: #475569 !important;
}
.clean-title {
  color: #1e293b;
}

/* Base Tech Elements */
.floating-smooth {
  animation: floatSmooth 8s ease-in-out infinite;
}
.clean-panel {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 20px;
  padding: 15px;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
}

/* Tech Hero Clean Section */
.tech-hero-clean {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
}
.tech-badge-clean {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: #2563eb;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Professional Buttons */
.btn-professional {
  background: #2563eb;
  color: #ffffff;
  border: none;
  box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease;
}
.btn-professional:hover {
  background: #1d4ed8;
  box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.5);
  transform: translateY(-2px);
}
.btn-professional-outline {
  border: 2px solid #2563eb;
  color: #2563eb;
  background: transparent;
  transition: all 0.3s ease;
}
.btn-professional-outline:hover {
  background: rgba(37, 99, 235, 0.05);
  border-color: #1d4ed8;
  color: #1d4ed8;
}

/* Image utility */
.tech-illustration {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* Split Layouts */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.reverse-layout {
  grid-template-columns: 1fr 1.2fr;
}
@media (max-width: 992px) {
  .split-layout,
  .reverse-layout {
    grid-template-columns: 1fr;
  }
  .tech-hero-clean .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Problem Clean Grid */
.problem-tech-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 30px;
}
.clean-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  transition: all 0.3s;
}
.clean-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}
.clean-card .card-icon {
  font-size: 1.8rem;
  color: #000 !important;
  margin-bottom: 12px;
}
.clean-card h4 {
  color: #000 !important;
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-weight: 600;
}
.clean-card p {
  color: #1a1a1f !important;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Features Clean Deep Dive */
.features-deep-dive {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  z-index: 2;
}
.clean-feature-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.7);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}
.hexagon-clean {
  width: 50px;
  height: 50px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #2563eb;
  flex-shrink: 0;
}
.feature-text h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  font-weight: 600;
  color: #000 !important;
}
.feature-text p {
  line-height: 1.6;
  font-size: 0.95rem;
  color: #1a1a1f !important;
}

/* Owner Clean List */
.clean-list {
  margin-bottom: 30px;
}
.clean-bullet {
  width: 8px;
  height: 8px;
  background: #2563eb;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(37, 99, 235, 0.3);
}
.owner-benefits span {
  color: #475569;
  font-weight: 500;
}

/* --- Brutal Gen-Z Restyle --- */
:root {
  --g-acid: #d6ff1f;
  --g-cyan: #07c8ff;
  --g-peach: #ff6b4a;
  --g-ink: #0e0e11;
  --g-paper: #fff8e7;
  --g-mint: #b5ffcf;
}

body {
  background:
    radial-gradient(
      circle at 8% 8%,
      rgba(214, 255, 31, 0.35) 0,
      transparent 28%
    ),
    radial-gradient(
      circle at 90% 16%,
      rgba(7, 200, 255, 0.25) 0,
      transparent 34%
    ),
    repeating-linear-gradient(
      -12deg,
      #fff8e7,
      #fff8e7 18px,
      #fff4d9 18px,
      #fff4d9 36px
    );
  color: var(--g-ink);
}

section {
  position: relative;
  padding: 115px 0;
}

section:nth-of-type(even) {
  background: rgba(255, 255, 255, 0.64);
}

.container {
  max-width: 1240px;
}

.navbar {
  background: rgba(255, 248, 231, 0.94);
  border-bottom: 3px solid #000;
  box-shadow: 0 10px 0 #000;
  backdrop-filter: blur(8px);
}

.navbar.scrolled {
  box-shadow: 0 8px 0 #000;
}

.logo-text {
  color: #000;
  text-shadow: 2px 2px 0 var(--g-acid);
}

.nav-link {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.nav-link::after {
  height: 3px;
  background: #000;
}

.tech-hero-clean {
  background:
    linear-gradient(
      112deg,
      rgba(255, 255, 255, 0.45),
      rgba(255, 255, 255, 0.6)
    ),
    linear-gradient(140deg, var(--g-cyan) 0%, #9fe8ff 42%, var(--g-peach) 100%);
}

.tech-badge-clean {
  background: var(--g-acid);
  color: #000;
  border: 2px solid #000;
  box-shadow: 5px 5px 0 #000;
  border-radius: 12px;
  transform: rotate(-2deg);
}

.hero-title {
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -1.4px;
  text-transform: uppercase;
}

.hero-title .highlight {
  color: #000;
  -webkit-text-fill-color: #000;
  background: none;
  text-shadow: 4px 4px 0 var(--g-acid);
}

.hero-description,
.section-description,
.professional-text {
  color: #191a20 !important;
  font-weight: 500;
}

.btn {
  border-radius: 12px;
  border: 2px solid #000;
  font-weight: 700;
  letter-spacing: 0.4px;
  box-shadow: 6px 6px 0 #000;
}

.btn:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 #000;
}

.btn-professional {
  background: var(--g-acid);
  color: #000;
}

.btn-professional-outline {
  background: #fff;
  border-color: #000;
  color: #000;
}

.split-layout {
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
}

.reverse-layout {
  grid-template-columns: 0.9fr 1.1fr;
}

.clean-panel,
.feature-category,
.clean-card,
.tech-item,
.screenshot-item,
.testimonial-card,
.queue-demo,
.download,
.footer {
  border: 3px solid #000;
  border-radius: 16px;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.85);
}

.clean-panel,
.feature-category,
.clean-card,
.tech-item,
.screenshot-item,
.testimonial-card,
.queue-demo {
  background: #fff !important;
  overflow: hidden;
}

.feature-category:nth-child(odd),
.screenshot-item:nth-child(odd),
.tech-item:nth-child(odd),
.testimonial-card:nth-child(odd) {
  transform: rotate(-0.9deg);
}

.feature-category:nth-child(even),
.screenshot-item:nth-child(even),
.tech-item:nth-child(even),
.testimonial-card:nth-child(even) {
  transform: rotate(0.9deg);
}

.feature-category:hover,
.tech-item:hover,
.screenshot-item:hover,
.testimonial-card:hover,
.clean-card:hover {
  transform: translateY(-6px) rotate(0deg);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.6rem);
  text-transform: uppercase;
  letter-spacing: -0.8px;
  color: #000;
}

.section-title::after {
  content: "";
  display: block;
  width: 132px;
  height: 10px;
  margin-top: 12px;
  background: var(--g-acid);
  border: 2px solid #000;
}

.download {
  background:
    radial-gradient(
      circle at 25% 20%,
      rgba(214, 255, 31, 0.25),
      transparent 40%
    ),
    linear-gradient(135deg, #17171d, #0c0c0f);
}

.footer {
  background:
    linear-gradient(155deg, rgba(7, 200, 255, 0.08), rgba(255, 107, 74, 0.09)),
    #0f0f13;
}

.back-to-top {
  border: 2px solid #000;
  box-shadow: 5px 5px 0 #000;
  border-radius: 14px;
}

@media (max-width: 992px) {
  .split-layout,
  .reverse-layout {
    grid-template-columns: 1fr;
  }

  .feature-category,
  .screenshot-item,
  .tech-item,
  .testimonial-card {
    transform: none !important;
  }
}

@media (max-width: 768px) {
  .navbar {
    box-shadow: 0 6px 0 #000;
  }

  .hero-title {
    letter-spacing: -0.4px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}
