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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: 'Inter', Segoe UI, Arial, sans-serif;
  background: #f6f7fb;
  color: #0d1325;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Navbar */
.navbar {
  height: 90px;
  background: #050a16;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 42px;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 10px 30px rgba(5, 10, 22, 0.44);
}

.brand img {
  width: 140px;
  height: auto;
  display: block;
}

.navbar nav {
  display: flex;
  gap: 34px;
  color: #fff;
  font-weight: 600;
}

.navbar nav a {
  opacity: 0.9;
  padding: 34px 0;
  transition: color 0.3s, border-bottom 0.3s;
}

.navbar nav a.active,
.navbar nav a:hover {
  color: #7b61ff;
  border-bottom: 2px solid #7b61ff;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  padding: 16px 26px;
  font-weight: 800;
  transition: 0.25s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary,
.btn-login {
  background: linear-gradient(135deg, #5567ff, #7047ff);
  color: white;
  border: none;
}

.btn-primary:hover,
.btn-login:hover {
  background: linear-gradient(135deg, #4657f2, #6037f2);
}

.btn-ghost,
.btn-outline {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.69);
  background: rgba(255, 255, 255, 0.06);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Hero Section */
.hero {
  min-height: 560px;
  position: relative;
  background: url('assets/hero_restaurant.jpg') center right/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 70px 42px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #050815 0%, #060916e8 35%, #060916b0 65%, #06091645 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  color: white;
}

.pill {
  display: inline-block;
  background: #684fff;
  color: white;
  border-radius: 30px;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 50px;
  line-height: 1.08;
  margin-bottom: 22px;
}

.hero h1 strong,
.cta-content strong {
  color: #785cff;
  display: inline-block;
}

.hero p {
  font-size: 19px;
  line-height: 1.5;
  max-width: 520px;
  color: #f0f2ff;
}

.actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* Features Strip */
.features-strip {
  width: 96%;
  margin: -42px auto 0;
  position: relative;
  z-index: 5;
  background: #050a16;
  color: white;
  border: 1px solid #604cff;
  border-radius: 20px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  overflow: hidden;
  box-shadow: 0 25px 45px rgba(7, 16, 59, 0.18);
}

.features-strip article {
  text-align: center;
  padding: 26px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.features-strip article:last-child {
  border-right: 0;
}

.features-strip span {
  font-size: 35px;
  display: block;
  margin-bottom: 12px;
}

.features-strip b {
  display: block;
  margin-bottom: 6px;
}

.features-strip p {
  font-size: 14px;
  color: #e4e8ff;
}

/* Sections General */
.system-section,
.business-section {
  padding: 80px 34px 50px;
  text-align: center;
}

.system-section h2,
.business-section h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #0d1325;
}

.section-text {
  font-size: 18px;
  color: #4a5568;
  margin-bottom: 45px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Screens Grid - Professional Text-based Cards */
.screens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.screen-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: left;
  box-shadow: 0 10px 25px rgba(13, 19, 37, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.screen-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px rgba(96, 76, 255, 0.1);
  border-color: rgba(96, 76, 255, 0.4);
}

.screen-icon {
  font-size: 32px;
  background: #f0edff;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 20px;
  color: #604cff;
}

.screen-card h3 {
  font-size: 19px;
  color: #0d1325;
  margin-bottom: 10px;
  font-weight: 700;
}

.screen-card p {
  font-size: 14px;
  line-height: 1.5;
  color: #4a5568;
}

/* Business Section */
.business-section {
  background: #f8fafc;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 30px auto;
}

.business-grid article {
  border-radius: 12px;
  overflow: hidden;
  background: #070b18;
  color: white;
  position: relative;
  min-height: 160px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.business-grid article:hover {
  transform: scale(1.03);
}

.business-grid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  filter: brightness(0.65);
}

.business-grid span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, #050815 80%);
  font-weight: 800;
  font-size: 15px;
}

.adaptable {
  color: #654cff;
  font-weight: 900;
  font-size: 20px;
  margin: 34px 0 10px;
}

/* CTA Section */
.cta-section {
  background: #050a16;
  color: white;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
  padding: 80px 42px;
}

.cta-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.cta-content h2 {
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 28px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.badges span {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9px;
  padding: 10px 16px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
  font-size: 14px;
}

/* Contact Section */
.contact-section {
  padding: 90px 42px;
  background: #ffffff;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-left .badge-tag {
  display: inline-block;
  background: #f0edff;
  color: #604cff;
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.contact-left h2 {
  font-size: 42px;
  color: #0d1325;
  margin-bottom: 20px;
  line-height: 1.15;
}

.contact-left p {
  font-size: 17px;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-detail-item {
  display: flex;
  gap: 20px;
  align-items: center;
}

.contact-detail-item .contact-icon {
  width: 50px;
  height: 50px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.contact-detail-text label {
  display: block;
  font-size: 13px;
  color: #718096;
  margin-bottom: 4px;
  font-weight: 600;
}

.contact-detail-text strong {
  font-size: 18px;
  color: #0d1325;
}

/* Contact Form styling */
.contact-right {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.02);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 14px;
  font-weight: 700;
  color: #34405a;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  background: #ffffff;
  outline: none;
  transition: 0.2s;
}

.form-control:focus {
  border-color: #604cff;
  box-shadow: 0 0 0 3px rgba(96, 76, 255, 0.15);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-status {
  margin-top: 15px;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 8px;
  display: none;
}

.form-status.loading {
  display: block;
  background: #eff6ff;
  color: #1d4ed8;
}

.form-status.success {
  display: block;
  background: #f0fdf4;
  color: #166534;
}

.form-status.error {
  display: block;
  background: #fef2f2;
  color: #991b1b;
}

/* Footer styling - Centered, Smaller, Professional */
.main-footer {
  background: #030611;
  color: #f5f7ff;
  padding: 20px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  width: 80px;
  height: auto;
  display: block;
}

.footer-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #cbd5e1;
}

.footer-info .separator {
  color: rgba(255, 255, 255, 0.2);
}

.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid rgba(37, 211, 102, 0.2);
  transition: all 0.2s;
}

.footer-wa:hover {
  background: #25d366;
  color: white;
  transform: translateY(-1px);
}

.copyright {
  font-size: 11px;
  color: #718096;
  margin-top: 2px;
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .screens-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 150px;
  }
  .navbar {
    padding: 15px 20px;
    height: auto;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
  }
  .navbar nav {
    width: 100%;
    justify-content: center;
    gap: 14px;
    font-size: 13.5px;
    flex-wrap: wrap;
  }
  .navbar nav a {
    padding: 6px 0;
  }
  .btn-login {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  .hero {
    padding: 60px 20px;
    min-height: 500px;
  }
  .hero h1 {
    font-size: 36px;
  }
  .business-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .cta-section {
    grid-template-columns: 1fr;
    padding: 50px 20px;
  }
  .footer-info {
    flex-direction: column;
    gap: 10px;
  }
  .footer-info .separator {
    display: none;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 160px;
  }
  .navbar nav {
    display: flex;
    font-size: 12px;
    gap: 10px;
  }
  .hero h1 {
    font-size: 28px;
  }
  .hero p {
    font-size: 16px;
  }
  .screens-grid,
  .business-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .contact-right {
    padding: 24px;
  }
}
