/* Shoppi POS - Compatible CSS for Existing HTML Structure */

/* ========================================
   BASE STYLES
======================================== */
* {
  box-sizing: border-box;
}

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

/* ========================================
   HERO SECTION
======================================== */
.hero-section {
  position: relative;
  padding-left: 10px;
  padding-right: 10px;
  background-color: rgba(51, 51, 51, 0.1);
  color: #1b193b;
  min-height: 100vh;
}

.hero-wrapper {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  padding-top: 120px;
  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;
  margin: 0 auto;
  -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;
  padding: 0 30px;
}

.hero-content {
  width: 48%;
  padding: 30px;
  flex-shrink: 0;
}

.hero-content.st {
  position: relative;
  width: 48%;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.hero-p {
  margin-top: 20px;
  margin-bottom: 20px;
  opacity: 0.7;
  font-size: 1.3em;
  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: 15px;
  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;
  font-size: 0.9em;
}

.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 20px;
  background-color: rgba(250, 162, 27, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(250, 162, 27, 0.2);
  display: inline-block;
}

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

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

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

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

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

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

.hero-img {
  max-width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

.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);
  z-index: 2;
}

.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: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
  padding: 20px 30px;
  -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;
}

.logo-wrapper {
  text-decoration: none;
}

.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.5em;
  line-height: 1;
  font-weight: 800;
  gap: 10px;
}

.logo-symbol {
  width: 50px;
  height: 50px;
  border-radius: 360px;
  object-fit: cover;
}

.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;
  gap: 20px;
}

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

.nav-link:hover {
  background-color: rgba(27, 25, 59, 0.05);
  color: #faa21b;
}

.menu-button {
  display: none;
}

/* ========================================
   SECTIONS
======================================== */
.section {
  padding: 75px 10px;
}

.section.footer {
  padding-top: 50px;
  padding-bottom: 30px;
  background-color: #0f0f0f;
  color: #fff;
}

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

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

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

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

.title-wrapper {
  width: 100%;
  max-width: 650px;
  margin-right: auto;
  margin-bottom: 50px;
  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: 2.5em;
  line-height: 120%;
  font-weight: 800;
}

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

.paragraph {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 1.1em;
  line-height: 150%;
  color: #666;
}

/* ========================================
   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;
  align-items: center;
}

.comparison-feature-col {
  text-align: left;
  padding: 0 20px;
}

.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;
  padding: 0 20px;
}

.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;
  border: 2px solid rgba(250, 162, 27, 0.2);
}

.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%;
  font-weight: 700;
}

.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: 8px 20px;
  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;
  font-weight: 600;
}

.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: 0 auto 20px;
}

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

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

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

.industry-feature {
  display: inline-block;
  padding: 8px 20px;
  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;
  font-weight: 700;
}

.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;
  font-weight: 600;
}

.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 {
  background: white;
  border-radius: 10px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.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;
  font-weight: 700;
}

.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;
  font-family: inherit;
}

.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 h4 {
  color: #1b193b;
  font-size: 1.3em;
  margin-bottom: 10px;
}

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

.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: 1px;
  text-transform: capitalize;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  color: white;
  cursor: pointer;
  font-size: 1em;
}

.btn:hover {
  opacity: 0.8;
  -webkit-transform: translate(0px, -3px);
  -ms-transform: translate(0px, -3px);
  transform: translate(0px, -3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.btn.primary:hover {
  background-color: #e89100;
  border-color: #e89100;
}

.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;
}

.btn.nav-cta {
  padding: 12px 30px;
  font-size: 0.9em;
}

/* ========================================
   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%;
  z-index: 10;
}

.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;
  justify-content: center;  
}

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

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

/* ========================================
   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;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media screen and (max-width: 991px) {
  .hero-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero-wrapper {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 80px;
  }

  .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%;
    text-align: center;
    padding: 20px;
  }

  .hero-content.st {
    position: static;
    width: 100%;
    margin-top: 40px;
  }

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

  .hero-p {
    font-size: 1.2em;
  }

  .competitive-bar {
    justify-content: center;
  }

  .cta-group {
    justify-content: center;
  }

  .pricing-highlight {
    text-align: center;
  }

  .trust-indicators {
    justify-content: center;
  }

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

  .container {
    padding: 0 20px;
  }

  .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;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }

  .menu-button {
    display: block;
    border-radius: 360px;
    padding: 10px;
  }

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

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

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .hero-p {
    font-size: 1.1em;
  }

  .section {
    padding: 50px 15px;
  }

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

  .btn {
    padding: 15px 30px;
    font-size: 0.9em;
  }

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

  /* Navigation Mobile */
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: white;
    transform: translateY(-100vh);
    transition: transform 0.3s ease;
  }

  .w--open ~ .nav-menu {
    transform: translateY(0);
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
  }

  .nav-cta {
    margin-top: 10px;
    width: 100%;
  }

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

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

  .feature-name {
    font-size: 1.1em;
    margin-bottom: 15px;
    text-align: center;
  }

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

  .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;
  }

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

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

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

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

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

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

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

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

  .hero-wrapper {
    padding-top: 87px;
    padding-bottom: 60px;
  }

  .hero-content {
    padding: 15px;
  }

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

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

  .nav-container {
    padding: 15px;
  }

  .logo-item {
    font-size: 1.2em;
  }

  .logo-symbol {
    width: 40px;
    height: 40px;
  }

  .section {
    padding: 40px 10px;
  }

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

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

  .paragraph {
    font-size: 1em;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 15px 25px;
  }

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

  /* Hero 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;
    padding: 8px 12px;
    font-size: 0.85em;
  }

  .cta-group {
    flex-direction: column;
    width: 100%;
  }

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

  .pricing-highlight {
    padding: 12px;
  }

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

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

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

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

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

  .feature-title {
    font-size: 1.3em;
  }

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

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

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

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

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

  .wrapper-logos {
    position: static;
    margin-top: 40px;
  }

  .logos-container {
    padding: 20px;
  }

  .logo-sp {
    width: 100px;
    height: auto;
  }
}

/* ========================================
   FIXES FOR WEBFLOW CLASSES
======================================== */
.w-button {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.w-nav {
  position: relative;
  background: #fff;
  z-index: 1000;
}

.w-nav-menu {
  position: relative;
  float: right;
}

.w-nav-button {
  position: relative;
  float: right;
  padding: 18px;
  font-size: 24px;
  display: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.w-nav-button:focus {
  outline: 0;
}

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

.w-icon-nav-menu {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.w-icon-nav-menu:before {
  content: "☰";
}

.w--open .w-icon-nav-menu:before {
  content: "✕";
}

.wf-section {
  position: relative;
}

.w-inline-block {
  max-width: 100%;
  display: inline-block;
}
