/* Shoppi POS - Enhanced CSS */

/* ========================================
   BASE STYLES
======================================== */

body {
  font-family: 'Fira Sans', sans-serif;
  color: #333;
  font-size: 14px;
  line-height: 20px;
}

/* ========================================
   HERO SECTION
======================================== */

.hero-section {
  position: relative;
  padding-left: 10px;
  background-color: rgba(51, 51, 51, 0.1);
  color: #1b193b;
}

.hero-wrapper {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  padding-top: 30px;
  padding-bottom: 120px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.hero-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1160px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.hero-content {
  width: 50%;
  padding: 10px;
}

.hero-h1 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 4.9em;
  line-height: 105%;
}

.hero-p {
  margin-top: 30px;
  margin-bottom: 30px;
  opacity: 0.7;
  font-size: 2.1em;
  line-height: 150%;
}

/* Hero Badge */
.hero-badge {
  display: inline-block;
  margin-bottom: 20px;
}

.badge-text {
  display: inline-block;
  padding: 8px 20px;
  background-color: #faa21b;
  color: white;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9em;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Competitive Advantage Bar */
.competitive-bar {
  display: flex;
  gap: 20px;
  margin: 25px 0;
  flex-wrap: wrap;
}

.competitive-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  background-color: rgba(27, 25, 59, 0.05);
  border-radius: 8px;
  font-weight: 500;
}

.competitive-icon {
  font-size: 1.2em;
}

/* CTA Group */
.cta-group {
  display: flex;
  gap: 15px;
  margin: 30px 0;
  flex-wrap: wrap;
}

/* Pricing Highlight */
.pricing-highlight {
  margin: 20px 0;
  padding: 15px;
  background-color: rgba(250, 162, 27, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(250, 162, 27, 0.2);
}

.pricing-main {
  font-size: 1.3em;
  font-weight: 700;
  color: #1b193b;
  margin-bottom: 5px;
}

.pricing-comparison {
  color: #666;
  font-size: 0.95em;
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: inline-block;
  padding: 5px 10px;
  color: #666;
  font-size: 0.9em;
}

/* Hero Phone Mockup */
.hero-phone-mockup {
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.hero-phone-mockup:hover {
  transform: translateY(-10px);
}

.phone-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.play-button {
  width: 60px;
  height: 60px;
  background-color: rgba(250, 162, 27, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  transition: all 0.3s ease;
}

.hero-phone-mockup:hover .play-button {
  background-color: rgba(250, 162, 27, 1);
  transform: scale(1.1);
}

.overlay-text {
  font-weight: 600;
  font-size: 1.1em;
}

/* ========================================
   NAVIGATION
======================================== */
.nav-top {
  position: sticky;
  top: 0;
  z-index: 999; /* Make sure it stays above other content */
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); /* subtle shadow */
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Optional: shrink padding on scroll (if you animate this later) */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 10px; /* adjusted for sticky nav */
}


.nav-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav-container a,
.nav-container a:visited,
.nav-container a:hover,
.nav-container a:active {
  text-decoration: none;
}


.nav-link {
  padding: 10px 20px;
  color: #1b193b;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #faa21b;
}

.btn.nav-cta {
  margin-left: 20px;
}

/* ========================================
   SECTIONS
======================================== */

.section {
  padding: 75px 10px;
}

.section.footer {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #333;
}

.section.alt {
  background-color: rgba(27, 25, 59, 0.03);
}

.section.dark {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: #333;
  color: #fff;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
}

.container.center-f {
  text-align: center;
}

.title-wrapper {
  width: 100%;
  max-width: 650px;
  margin-right: auto;
  margin-bottom: 30px;
  margin-left: auto;
  padding: 30px;
  text-align: center;
}

.title-wrapper.nm {
  margin-bottom: 0px;
}

.section-title {
  margin-top: 0px;
  margin-bottom: 20px;
  color: #1b193b;
  font-size: 3.2em;
  line-height: 120%;
}

.section-title.w {
  color: #fff;
}

/* ========================================
   COMPARISON SECTION
======================================== */

.comparison-section {
  background-color: #f8f9fa;
}

.comparison-table {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  max-width: 900px;
}

.comparison-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background-color: #1b193b;
  color: white;
  padding: 20px;
  font-weight: 600;
  text-align: center;
}

.comparison-feature-col {
  text-align: left;
}

.comparison-sumup-col,
.comparison-shoppi-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.competitor-logo,
.our-logo {
  height: 30px;
  object-fit: contain;
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 20px;
  border-bottom: 1px solid #eee;
  align-items: center;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row.highlight {
  background-color: rgba(250, 162, 27, 0.05);
}

.feature-name {
  font-weight: 500;
  color: #1b193b;
}

.sumup-feature,
.shoppi-feature {
  text-align: center;
  font-size: 0.95em;
}

.sumup-feature {
  color: #666;
}

.shoppi-feature {
  color: #1b193b;
  font-weight: 500;
}

/* ========================================
   FEATURES SECTION
======================================== */

.features-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: white;
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.feature-card.premium {
  border: 2px solid rgba(250, 162, 27, 0.3);
}

.feature-icon-large {
  font-size: 3em;
  margin-bottom: 20px;
}

.feature-title {
  margin-top: 0px;
  margin-bottom: 20px;
  color: #1b193b;
  font-size: 1.5em;
  line-height: 120%;
}

.feature-desc {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.highlight-item {
  display: inline-block;
  padding: 5px 15px;
  background-color: rgba(27, 25, 59, 0.05);
  border-radius: 20px;
  font-size: 0.9em;
  color: #1b193b;
}

/* ========================================
   BENEFITS SECTION
======================================== */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.benefit-card {
  text-align: center;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 2.5em;
  margin-bottom: 15px;
}

.benefit-title {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #faa21b;
}

.benefit-text {
  opacity: 0.9;
  line-height: 1.6;
}

/* ========================================
   INDUSTRIES SECTION
======================================== */

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.industry-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.industry-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.industry-title {
  font-size: 1.4em;
  color: #1b193b;
  margin-bottom: 15px;
}

.industry-desc {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.industry-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.industry-feature {
  display: inline-block;
  padding: 5px 15px;
  background-color: rgba(250, 162, 27, 0.1);
  border-radius: 20px;
  font-size: 0.9em;
  color: #1b193b;
}

/* ========================================
   PRICING SECTION
======================================== */

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 50px auto;
  max-width: 1000px;
}

.pricing-card {
  background: white;
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular {
  border: 2px solid #faa21b;
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #faa21b;
  color: white;
  padding: 5px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85em;
}

.pricing-header {
  margin-bottom: 30px;
}

.pricing-plan {
  font-size: 1.5em;
  color: #1b193b;
  margin-bottom: 10px;
}

.pricing-price {
  font-size: 3em;
  font-weight: 700;
  color: #faa21b;
  line-height: 1;
}

.pricing-period {
  color: #666;
  font-size: 0.9em;
  margin-top: 5px;
}

.pricing-features {
  margin: 30px 0;
}

.pricing-feature {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95em;
}

.pricing-feature:last-child {
  border-bottom: none;
}

.pricing-note {
  text-align: center;
  margin-top: 30px;
  color: #666;
  font-style: italic;
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */

.testimonials-section {
  background-color: #f8f9fa;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-text {
  font-size: 1.1em;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.author-name {
  color: #1b193b;
  font-size: 1.1em;
}

.author-role {
  color: #999;
  font-size: 0.9em;
}


/* ========================================
   FOOTER
======================================== */
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin: 40px 0;
}

.footer-section {
  text-align: center;
}

.footer-title {
  color: #faa21b;
  font-size: 1.2em;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-link {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 5px 0;
  transition: all 0.3s ease;
  font-size: 0.9em;
}

.footer-link:hover {
  color: #faa21b;
}

.wrapper-logo-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 40px;
}

.logo-item.w {
  color: #fff;
}

.wrapper-footer-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 30px;
  padding-bottom: 30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.link-footer {
  margin-right: 5px;
  margin-left: 5px;
  padding-right: 7px;
  padding-left: 7px;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

.link-footer:hover {
  color: #faa21b;
}

.separator-footer-link {
  width: 1px;
  height: 14px;
  background-color: #faa21b;
}

.cp-text {
  margin-top: 10px;
  color: hsla(0, 0%, 100%, 0.8);
  font-size: 0.9em;
}


/* ========================================
   MODAL
======================================== */

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  padding: 20px;
  overflow-y: auto;
}

.modal-overlay.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}


.modal-container {
  background: white;
  border-radius: 10px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin: 0 auto; /* ⬅ Centering inside flex parent */
}


.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  border-bottom: 1px solid #eee;
}

.modal-title {
  font-size: 1.5em;
  color: #1b193b;
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 2em;
  color: #999;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.modal-close:hover {
  background-color: #f5f5f5;
  color: #333;
}

.modal-content {
  padding: 30px;
  overflow-y: auto;
  flex: 1;
}

.modal-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  border-bottom: 2px solid #eee;
}

.tab-btn {
  background: none;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.tab-btn:hover {
  color: #1b193b;
}

.tab-btn.active {
  color: #faa21b;
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #faa21b;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.overview-section {
  margin-bottom: 30px;
}

.overview-section h4 {
  color: #1b193b;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.features-comparison-modal {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin-top: 20px;
}

.comparison-table.modal-style {
  margin-top: 20px;
  border-radius: 8px;
  background-color: #f8f9fa;
  overflow-x: auto;
  font-size: 0.95em;
}

.comparison-table.modal-style .comparison-header,
.comparison-table.modal-style .comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  align-items: center;
  padding: 10px 15px;
  border-bottom: 1px solid #ddd;
}

.comparison-table.modal-style .comparison-header {
  font-weight: 600;
}

.comparison-table.modal-style .comparison-row:last-child {
  border-bottom: none;
}

.comparison-table.modal-style .highlight {
  background-color: #fffbe6;
  font-weight: 600;
}

.competitor-logo,
.our-logo {
  max-height: 24px;
  vertical-align: middle;
  margin-right: 5px;
}


.modal-comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 15px;
  border-bottom: 1px solid #ddd;
  align-items: center;
}

.modal-comparison-row:last-child {
  border-bottom: none;
}

.screenshots-grid-modal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.screenshot-item {
  text-align: center;
}

.screenshot-item img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}

.screenshot-item p {
  font-size: 0.9em;
  color: #666;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-description {
  color: #666;
  line-height: 1.6;
}

.modal-footer {
  padding: 20px 30px;
  border-top: 1px solid #eee;
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* ========================================
   BUTTONS
======================================== */

.btn {
  padding: 18px 45px;
  border-style: solid;
  border-width: 1px;
  border-color: #faa21b;
  border-radius: 360px;
  background-color: #faa21b;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: capitalize;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  color: white;
  cursor: pointer;
}

.btn:hover {
  opacity: 0.7;
  -webkit-transform: translate(0px, -3px);
  -ms-transform: translate(0px, -3px);
  transform: translate(0px, -3px);
}

.btn.primary {
  background-color: #faa21b;
  border-color: #faa21b;
  color: white;
}

.btn.secondary {
  background-color: transparent;
  border-color: #1b193b;
  color: #1b193b;
}

.btn.secondary:hover {
  background-color: #1b193b;
  color: white;
}

.btn.outline {
  background-color: transparent;
  border-color: #faa21b;
  color: #faa21b;
}

.btn.outline:hover {
  background-color: #faa21b;
  color: white;
}

.btn.ghost {
  margin-left: 20px;
  border-color: #1b193b;
  background-color: transparent;
  color: #1b193b;
}

/* ========================================
   ANIMATIONS
======================================== */

.slide0, .slide200, .slide400 {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.slide0.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.slide200.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.slide400.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

@media (max-width: 768px) {
  .slide0, .slide200, .slide400 {
    opacity: 1 !important;
    transform: none !important;
  }
}


/* ========================================
   UTILITIES
======================================== */

.wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.wrapper-logos {
  position: absolute;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 0%;
}

.logos-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
  padding: 30px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.logo-sp {
  width: 130px;
  height: 70px;
  margin-right: 30px;
  opacity: 0.5;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  cursor: crosshair;
  -o-object-fit: contain;
  object-fit: contain;
}

.logo-sp:hover {
  opacity: 1;
}

.logo-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #1b193b;
  font-size: 1.8em;
  line-height: 1;
  font-weight: 800;
}

.logo-item.w {
  color: #fff;
}

.logo-symbol {
  width: 50px;
  height: 50px;
  margin-right: 15px;
  border-radius: 360px;
}

.wrapper-logo-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.wrapper-footer-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 30px;
  padding-bottom: 30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.link-footer {
  margin-right: 5px;
  margin-left: 5px;
  padding-right: 7px;
  padding-left: 7px;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

.link-footer:hover {
  color: #faa21b;
}

.separator-footer-link {
  width: 1px;
  height: 14px;
  background-color: #faa21b;
}

.cp-text {
  margin-top: 10px;
  color: hsla(0, 0%, 100%, 0.8);
}

.paragraph {
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 1.3em;
  line-height: 150%;
}

.paragraph a {
  color: #1b193b;
  text-decoration: none;
}

.hero-img {
  left: auto;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 1;
  width: 90%;
  height: 100%;
  padding-top: 120px;
  padding-bottom: 90px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: 0% 50%;
  object-position: 0% 50%;
}

.hero-shape {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: 0%;
  width: 50%;
  height: 100%;
  opacity: 0.2;
  -o-object-fit: cover;
  object-fit: cover;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media screen and (max-width: 991px) {
  .hero-section {
    padding-right: 80px;
    padding-left: 80px;
  }

  .hero-wrapper {
    min-height: auto;
  }

  .hero-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .hero-content {
    position: relative;
    z-index: 5;
    width: 100%;
  }

  .hero-content.st {
    position: static;
  }

  .hero-h1 {
    font-size: 4.6em;
  }

  .section {
    padding-right: 80px;
    padding-left: 80px;
  }

  .content._33 {
    width: 100%;
  }

  .content._40 {
    width: 100%;
  }

  .hero-img {
    position: relative;
    width: 100%;
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .hero-shape {
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    z-index: 0;
    display: none;
    width: 100%;
  }

  .nav-menu {
    padding-top: 30px;
    padding-bottom: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #fff;
  }

  .menu-button {
    border-radius: 360px;
  }

  .menu-button.w--open {
    background-color: #faa21b;
  }

  /* Comparison Table Responsive */
  .comparison-header,
  .comparison-row {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  /* Features Grid Responsive */
  .features-showcase {
    grid-template-columns: 1fr;
  }

  /* Benefits Grid Responsive */
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Pricing Cards Responsive */
  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .pricing-card.popular {
    transform: scale(1);
  }

  /* Modal Responsive */
  .modal-container {
    max-height: 100vh;
    margin: 0;
    border-radius: 0;
  }
}

@media screen and (max-width: 767px) {
  .hero-section {
    padding-right: 40px;
    padding-left: 40px;
  }

  .hero-h1 {
    font-size: 3.9em;
  }

  .section {
    padding-right: 40px;
    padding-left: 40px;
  }

  .section-title {
    font-size: 3em;
  }

  .btn {
    padding-right: 28px;
    padding-left: 28px;
  }

  .wrapper-footer-links {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .link-footer {
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 15px;
  }

  .separator-footer-link {
    display: none;
  }

  /* Comparison Table Mobile */
  .comparison-header {
    display: none;
  }

  .comparison-row {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 15px;
  }

  .feature-name {
    font-size: 1.1em;
    margin-bottom: 10px;
  }

  .sumup-feature,
  .shoppi-feature {
    display: block;
    padding: 5px;
  }

  .sumup-feature::before {
    content: "SumUp: ";
    font-weight: 600;
  }

  .shoppi-feature::before {
    content: "Shoppi: ";
    font-weight: 600;
  }

  /* Benefits Grid Mobile */
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  /* Industries Grid Mobile */
  .industries-grid {
    grid-template-columns: 1fr;
  }

  /* Testimonials Grid Mobile */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Footer Mobile */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* Modal Tabs Mobile */
  .modal-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .tab-btn {
    white-space: nowrap;
  }
}

@media screen and (max-width: 479px) {
  .hero-section {
    padding-right: 10px;
    padding-left: 10px;
  }

  .hero-wrapper {
    padding-top: 17px;
    padding-bottom: 0px;
  }

  .hero-content {
    padding: 10px 10px 0px;
  }

  .hero-h1 {
    font-size: 2.5em;
  }

  .hero-p {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 1em;
  }

  .nav-container {
    padding: 15px;
  }

  .wrapper-page {
    padding: 0px;
  }

  .section {
    padding: 40px 10px;
  }

  .title-wrapper {
    margin-bottom: 15px;
    padding: 15px;
  }

  .section-title {
    font-size: 2.4em;
  }

  .cp-text {
    font-size: 12px;
    line-height: 18px;
  }

  .btn {
    width: 60%;
    text-align: center;
  }

  .btn.ghost {
    margin-top: 20px;
    margin-left: 0px;
  }

  .wrapper-logos {
    position: static;
  }

  .logos-container {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .logo-sp {
    width: 50%;
    height: auto;
    margin-right: 0px;
    padding: 9px;
  }

  .paragraph {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 1em;
  }

  .wrapper-footer-links {
    padding-top: 20px;
    padding-bottom: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .link-footer {
    margin-top: 1px;
    margin-bottom: 1px;
  }

  /* Hero Enhancements Mobile */
  .hero-badge {
    margin-bottom: 15px;
  }

  .badge-text {
    font-size: 0.8em;
    padding: 6px 15px;
  }

  .competitive-bar {
    flex-direction: column;
    gap: 10px;
  }

  .competitive-item {
    width: 100%;
    justify-content: center;
  }

  .cta-group {
    flex-direction: column;
  }

  .cta-group .btn {
    width: 100%;
    margin: 0;
  }

  .pricing-highlight {
    padding: 10px;
  }

  .pricing-main {
    font-size: 1.1em;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 5px;
  }

  .trust-item {
    width: 100%;
    text-align: center;
  }

  /* Feature Card Mobile */
  .feature-card {
    padding: 25px 20px;
  }

  .feature-icon-large {
    font-size: 2.5em;
  }

  /* Pricing Card Mobile */
  .pricing-card {
    padding: 30px 20px;
  }

  .pricing-price {
    font-size: 2.5em;
  }

  /* Modal Mobile */
  .modal-content {
    padding: 20px;
  }

  .modal-footer {
    flex-direction: column;
  }

  .modal-footer .btn {
    width: 100%;
  }

  .screenshots-grid-modal {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   ADDITIONAL ENHANCEMENTS
======================================== */

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Focus States */
.btn:focus,
.nav-link:focus,
.tab-btn:focus {
  outline: 2px solid #faa21b;
  outline-offset: 2px;
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Error States */
.error {
  border-color: #e74c3c !important;
}

.error-message {
  color: #e74c3c;
  font-size: 0.9em;
  margin-top: 5px;
}

/* Success States */
.success {
  border-color: #27ae60 !important;
}

.success-message {
  color: #27ae60;
  font-size: 0.9em;
  margin-top: 5px;
}
