/* ── Hero ── */
.hero {
  display: flex;
  align-items: center;
  padding-block: 2rem 4rem;
  background: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 60%;
  height: 130%;
  background: radial-gradient(ellipse at center, rgba(214, 48, 49, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.hero-headline {
  margin-bottom: 0;
}

.hero-subheading {
  font-size: var(--text-lg);
  color: var(--color-muted);
  line-height: 1.7;
  max-width: 560px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
  padding-top: var(--space-2);
}

.hero-visual {
  width: 100%;
  max-width: 540px;
  margin-inline: auto;
}

.hero-mockup {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.06);
  position: relative;
  padding: 2.5rem;
}

.hero-mockup .screenshot-placeholder {
  aspect-ratio: 16 / 10;
  border-radius: 0;
  font-size: var(--text-base);
}

@media (min-width: 1024px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
    gap: var(--space-16);
  }

  .hero-text {
    flex: 1;
    min-width: 0;
  }

  .hero-visual {
    flex: 1;
    min-width: 0;
    margin: 0;
    max-width: none;
  }
}

/* ── POS Screenshots ── */
.screenshots-pos {
  padding-block: var(--space-24);
  background: white;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .screenshots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Features ── */
.features {
  padding-block: var(--space-16);
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Online Ordering ── */
.online-ordering {
  padding-block: var(--space-16);
  background: var(--color-surface);
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

.two-col-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  justify-content: center;
}

.two-col-visual {
  width: 100%;
}

@media (min-width: 1024px) {
  .two-col {
    flex-direction: row;
    align-items: center;
    gap: var(--space-16);
  }

  .two-col-text {
    flex: 1;
  }

  .two-col-visual {
    flex: 1;
  }

  .two-col.reverse .two-col-text {
    order: 2;
  }
  .two-col.reverse .two-col-visual {
    order: 1;
  }
}

/* ── Integration callout ── */
.integration-callout {
  background: var(--color-dark-alt);
  padding-block: var(--space-20);
}

.callout-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
  text-align: center;
}

@media (min-width: 640px) {
  .callout-stats {
    flex-direction: row;
    justify-content: center;
    gap: var(--space-16);
  }
}

.callout-stat {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  align-items: center;
}

.callout-stat-number {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.callout-stat-label {
  font-size: var(--text-base);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.03em;
}

.callout-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  display: none;
}

@media (min-width: 640px) {
  .callout-divider {
    display: block;
  }
}

.callout-subtext {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-lg);
  max-width: 600px;
  margin-inline: auto;
  margin-top: var(--space-12);
  line-height: 1.7;
}

/* ── Mobile solutions ── */
.mobile-solutions {
  padding-block: var(--space-24);
  background: white;
}

.mobile-solutions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-16);
}

@media (min-width: 1024px) {
  .mobile-solutions-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
  }
}

.mobile-solution-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.mobile-solution-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.mobile-solution-title {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-dark-alt);
}

.mobile-solution-desc {
  color: var(--color-muted);
  font-size: var(--text-base);
  line-height: 1.7;
}

.mobile-solution-visual {
  display: flex;
  justify-content: center;
  padding-block: var(--space-4);
}

/* ── Trust strip ── */
.trust-strip {
  padding-block: var(--space-8);
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.trust-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
}

@media (min-width: 640px) {
  .trust-items {
    flex-direction: row;
    justify-content: center;
    gap: var(--space-12);
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-dark);
}

.trust-item svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ── Final CTA ── */
.cta-banner {
  padding-block: var(--space-16);
  background: var(--color-primary);
  text-align: center;
}

.cta-banner h2 {
  color: white;
  margin-bottom: var(--space-6);
  font-size: clamp(1.75rem, 4vw, var(--text-4xl));
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-lg);
  margin-bottom: var(--space-10);
  max-width: 560px;
  margin-inline: auto;
}

.cta-banner .btn-white {
  font-size: var(--text-lg);
  padding: 16px 36px;
  margin-top: 1rem;
}
