* {
  cursor: default;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
}
html {
  scroll-behavior: smooth;
}
.navbar {
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  padding: 10px 0;
  transition: transform 0.3s ease-in-out;
}
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  padding: 0 10%;
  margin: 0 auto;
  width: 100%;
}
li {
  list-style: none;
}
.sbp-logo strong {
  color: #1a5dff;
  font-weight: 700;
  font-size: 18px;
}
.sbp-logo span {
  font-weight: 700;
}
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: 0 0;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}
.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #333;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translateY(6px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-6px);
}
.nav-links {
  display: none;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
  width: 100%;
  align-items: flex-end;
  text-align: right;
}
.nav-links.open {
  display: flex;
  max-height: 500px;
}
.nav-item {
  color: #2f2f2f;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
}
.nav-item:hover,
.nav-item.active {
  color: #2563eb;
}
.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}
.contact-btn {
  background-color: #2563eb;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  font-weight: 700;
  cursor: pointer;
}
.sbp-logo-img {
  height: 100px;
}
.nav-links a {
  color: #1f2937;
  text-decoration: none;
  font-weight: 500;
  padding: 0 10px;
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: #2563eb;
}
.nav-item.active a {
  color: #2563eb;
  font-weight: 600;
}
a,
button,
.nav-item,
.contact-btn,
.plan-button,
.hamburger {
  cursor: pointer;
}
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
  .nav-links {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    margin-top: 0;
    max-height: none;
    width: auto;
  }
}
.hero-section {
  background-color: #0e1222;
  color: #fff;
  padding: 60px 0;
  background-image: url("https://www.transparenttextures.com/patterns/stardust.png");
}
.hero-flex {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 40px;
}
.hero-text {
  max-width: 600px;
  text-align: center;
}
.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero-text p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 30px;
  line-height: 1.6;
}
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.btn-primary {
  background-color: #2563eb;
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn-outline {
  background: 0 0;
  color: #fff;
  padding: 10px 24px;
  font-weight: 700;
  border: 2px solid #ccc;
  border-radius: 8px;
  cursor: pointer;
}
.hero-card-wrapper {
  display: flex;
  justify-content: center;
}
.business-card {
  background: #f2f2f2;
  border-radius: 16px;
  padding: 20px;
  position: relative;
  width: 300px;
}
.card-header {
  background: #2563eb;
  color: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  position: relative;
}
.card-header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
}
.card-header p {
  margin-top: 5px;
  font-size: 0.9rem;
}
.icon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #fff;
  color: #2563eb;
  border-radius: 50%;
  padding: 5px 8px;
  font-weight: 700;
  font-size: 0.9rem;
}
.card-body {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.6;
}
.nfc-chip {
  position: absolute;
  bottom: -12px;
  right: -12px;
  background: #ffd500;
  color: #000;
  border-radius: 50%;
  padding: 10px;
  font-size: 1.2rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .hero-flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .hero-text {
    text-align: left;
  }
  .hero-buttons {
    justify-content: flex-start;
  }
}
.features-section {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}
.features-container {
  max-width: 1200px;
  margin: 0 auto;
}
.features-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #111827;
}
.features-subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.feature-card {
  background-color: #f9fafb;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
}
.feature-icon {
  font-size: 2rem;
  color: #3b82f6;
  background-color: #e0f0ff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}
.feature-card p {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.6;
}
.how-it-works-section {
  padding: 80px 20px;
  background-color: #f9fafb;
  text-align: center;
}
.how-it-works-container {
  max-width: 1200px;
  margin: 0 auto;
}
.how-it-works-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #111827;
}
.how-it-works-subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 50px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.step-item {
  text-align: center;
}
.step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background-color: #2563eb;
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111827;
}
.step-item p {
  font-size: 0.95rem;
  color: #4b5563;
}
.cta-button-wrapper {
  margin-top: 20px;
}
.cta-button {
  display: inline-block;
  background-color: #2563eb;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.cta-button:hover {
  background-color: #1d4ed8;
}
.pricing-section {
  background-color: #fff;
  padding: 80px 20px;
  text-align: center;
}
.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-title {
  font-size: 2rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 10px;
}
.pricing-subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 40px;
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.pricing-card {
  background-color: #f9fafb;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  text-align: left;
}
.popular {
  background-color: #2563eb;
  color: #fff;
  position: relative;
}
.popular .plan-desc,
.popular .features li {
  color: #fff;
}
.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #facc15;
  color: #000;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}
.plan-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.price {
  font-size: 1.8rem;
  font-weight: 800;
  color: #2563eb;
}
.popular .price {
  color: #fff;
}
.per {
  font-size: 1rem;
  color: #6b7280;
  margin-left: 4px;
}
.popular .per {
  color: #cbd5e1;
}
.plan-desc {
  font-size: 0.95rem;
  color: #6b7280;
  margin: 10px 0 20px;
}
.features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.features li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #16a34a;
  position: relative;
  padding-left: 20px;
}
.features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 700;
}
.plan-button {
  display: inline-block;
  text-align: center;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
  font-size: 0.95rem;
}
.outlined {
  color: #2563eb;
  border: 2px solid #2563eb;
  background-color: transparent;
}
.outlined:hover {
  background-color: #2563eb;
  color: #fff;
}
.filled {
  background-color: #fff;
  color: #2563eb;
  border: none;
}
.filled:hover {
  background-color: #e0e7ff;
}
.contact-section {
  background-color: #f9fafb;
  padding: 60px 20px;
  text-align: center;
}
.container {
  max-width: 1200px;
  margin: auto;
}
.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}
.section-subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 40px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  text-align: left;
}
.contact-form-card,
.info-box {
  background-color: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}
.contact-form-card h3,
.info-box h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}
form input,
form select,
form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  font-size: 0.95rem;
}
form button {
  width: 100%;
  padding: 12px;
  background-color: #2563eb;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}
form button:hover {
  background-color: #1d4ed8;
}
.blue {
  background-color: #2563eb;
  color: #fff;
}
.blue p {
  color: #fff;
}
.info-box p span {
  float: right;
  font-weight: 500;
}
.social-icons {
  margin-top: 15px;
}
.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #2563eb;
  background: #f1f5f9;
  padding: 8px;
  border-radius: 50%;
  font-size: 0.9rem;
  transition: 0.3s;
}
.social-icons a:hover {
  background-color: #2563eb;
  color: #fff;
}
.info-box {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  padding: 24px 20px;
  margin-bottom: 20px;
}
.info-box.blue {
  background-color: #2563eb;
  color: #fff;
}
.info-box h3 {
  font-size: 1.125rem;
  margin-bottom: 16px;
}
.info-box p {
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
}
.info-box p strong {
  display: block;
  margin-bottom: 5px;
}
.info-box.blue a {
  color: #dbeafe;
  word-break: break-word;
}
.info-box .hours p {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  margin: 6px 0;
}
.social-icons {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background-color: #e5e7eb;
  border-radius: 50%;
  font-size: 0.95rem;
  color: #2563eb;
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-icons a:hover {
  background-color: #2563eb;
  color: #fff;
}
@media (min-width: 768px) {
  .info-box {
    padding: 30px 32px;
  }
  .info-box h3 {
    font-size: 1.25rem;
  }
  .social-icons {
    justify-content: flex-start;
  }
}
.site-footer {
  background-color: #0e1628;
  color: #cbd5e1;
  padding: 60px 20px 30px;
  font-size: 16px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto 30px;
  gap: 40px;
}
.footer-column {
  flex: 1 1 250px;
}
.footer-about h2 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}
.footer-about p {
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-column h3 {
  color: #fff;
  font-size: 17px;
  margin-bottom: 15px;
}
.footer-column ul {
  list-style: none;
  padding: 0;
}
.footer-column li {
  margin-bottom: 10px;
}
.footer-column a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-column a:hover {
  color: #3b82f6;
}
.social-icons {
  display: flex;
  gap: 15px;
}
.social-icons img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s;
}
.social-icons img:hover {
  transform: scale(1.2);
}
.footer-bottom {
  border-top: 1px solid #1e293b;
  text-align: center;
  padding-top: 20px;
  color: #94a3b8;
  font-size: 14px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
  background-color: #0b1120;
  color: #fff;
}
.footer-column {
  margin-bottom: 20px;
}
.footer-about {
  flex: 1 1 100%;
  max-width: 100%;
}
.footer-links-wrapper {
  display: flex;
  flex: 1 1 100%;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-links-wrapper .footer-column {
  flex: 1 1 45%;
  min-width: 140px;
}
.footer-bottom {
  text-align: center;
  padding: 10px;
  background-color: #0b1120;
  color: #fff;
  font-size: 14px;
}
.social-icons a {
  margin-right: 10px;
}
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .form-row {
    flex-direction: column;
  }
  .footer-links-wrapper {
    flex-direction: row;
    justify-content: space-evenly;
    gap: 10px;
  }
  .footer-links-wrapper .footer-column {
    flex: 1 1 auto;
    min-width: 120px;
    padding: 0 5px;
  }
  .footer-about {
    margin-bottom: 10px;
  }
}
