:root {
  --bg: #0a0a0a;
  --text: #ffffff;
  --primary: #4f46e5;
  --gradient-start: #6366f1;
  --gradient-end: #ec4899;
  --radius: 12px;
  --transition: 0.25s ease;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  opacity: 0.8;
}

.navbar {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.primary-btn {
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(236, 72, 153, 0.3);
}

.hero {
  position: relative;
  text-align: center;
  padding: 6rem 1rem 4rem;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
}

.gradient-text {
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subhead {
  font-size: 1.125rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 1rem auto 2rem;
}

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

.lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Floating image on top of the mockup box */
.hero-image-wrapper {
  position: relative;
  z-index: 3;
  margin-top: 3rem;  /* 👈 Add space above image */
  margin-bottom: 1.5rem;
}


.hero-image-wrapper img {
  width: 80%;
  max-width: 500px;
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

/* Colored box below the image */
.hero-mockup {
  width: 90%;
  max-width: 900px;
  height: 200px;
  margin: 0 auto;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(79,70,229,0.4), rgba(236,72,153,0.4));
  backdrop-filter: blur(40px);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 1;
}

/* Feature section */
.feature-block {
  text-align: center;
  max-width: 800px;
  margin: 3rem auto;
  padding: 2rem;
}
.feature-block h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.feature-block p {
  font-size: 1rem;
  opacity: 0.85;
}

.footer {
  padding: 2rem 1rem;
  text-align: center;
  opacity: 0.6;
  font-size: 0.875rem;
}

/* Mobile nav */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.mobile-menu span {
  width: 20px;
  height: 2px;
  background: #fff;
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }
  .mobile-menu {
    display: flex;
  }

  .hero-image-wrapper img {
    width: 100%;
  }

  .hero-mockup {
    height: 150px;
  }

  .cta-group {
    flex-direction: column;
    gap: 0.75rem;
  }
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid #ccc;
  background: #fff;
  color: #000;
  font-size: 1rem;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .primary-btn {
  align-self: flex-start;
}
.team-section {
  max-width: 1100px;
  margin: 4rem auto;
  padding: 2rem;
  text-align: center;
}

.team-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: var(--text);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.team-member {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 250px;
}

.team-member:hover {
  transform: translateY(-6px);
}

.team-member img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 3px solid var(--primary);
}

.team-member h3 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.team-member .role {
  font-size: 0.95rem;
  opacity: 0.75;
}
.address-bar-premium {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  padding: 3rem 2rem;
  max-width: 1000px;
  margin: 4rem auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

.address-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.address-item .icon {
  font-size: 1.5rem;
  color: var(--primary);
  margin-top: 4px;
}

.address-item h4 {
  margin: 0 0 4px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.address-item p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.5;
}

.address-item a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}
.address-item a:hover {
  color: var(--primary);
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: flex-start;
}

.social-icons a {
  font-size: 1.3rem;
  color: var(--text);
  transition: color 0.3s ease, transform 0.2s ease;
}
.social-icons a:hover {
  color: var(--primary);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .address-bar-premium {
    flex-direction: column;
    text-align: center;
  }

  .contact-info {
    align-items: center;
  }

  .address-item {
    justify-content: center;
    text-align: left;
  }

  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: rgba(10, 10, 10, 0.95);
    border-radius: var(--radius);
    padding: 1rem;
    gap: 1rem;
    z-index: 1000;
  }
}


.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.mobile-menu span {
  width: 20px;
  height: 2px;
  background: #fff;
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex !important;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.95);
    position: absolute;
    top: 70px;
    right: 20px;
    border-radius: var(--radius);
    padding: 1rem;
    gap: 1rem;
    z-index: 1000;
  }

  .mobile-menu {
    display: flex;
  }
}
.footer {
  padding: 2rem 1rem;
  text-align: center;
  opacity: 0.8;
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.875rem;
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}





.kiosk-usage {
  padding: 4rem 2rem;
  background: black;
  text-align: center;
}

.kiosk-usage h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-weight: 700;
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.usage-step {
  background: #270A4B;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  width: 320px;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.usage-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}

.usage-step img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.usage-step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #270A4B;
}

.usage-step p {
  font-size: 0.95rem;
  color: white;
  line-height: 1.6;
}



.pricing-premium {
  padding: 4rem 2rem;
  text-align: center;
  background: #0a0a0a;
}

.pricing-premium h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.pricing-premium .subhead {
  font-size: 1.125rem;
  color: #555;
  margin-bottom: 2rem;
}

.pricing-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.pricing-card {
  background: black;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  max-width: 300px;
  flex: 1 1 200px;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-card .price {
  font-size: 2rem;
  font-weight: 700;
  color: #4f46e5; /* premium purple */
}

.pricing-card .description {
  font-size: 0.95rem;
  color: white;
  margin-top: 0.5rem;
}
