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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-base);
  line-height: 1;
  cursor: pointer;
  border: none;
  text-decoration: none;
  border-radius: var(--radius-md);
  padding: 18px 32px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

.btn--accent {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: var(--shadow-accent);
}

.btn--accent:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(76, 175, 80, 0.45);
}

.btn--dark {
  background: var(--gradient-dark);
  color: var(--color-white);
  box-shadow: var(--shadow-btn);
}

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

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-text);
}

.btn--outline:hover {
  background: var(--color-text);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 12px 20px;
  font-size: var(--text-sm);
  border-radius: var(--radius-sm);
}

.btn--lg {
  padding: 20px 40px;
  font-size: var(--text-lg);
}

/* ============================================================
   LOGO
   ============================================================ */

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.logo-icon svg {
  width: 20px;
  height: 20px;
}

.logo-icon--lg {
  width: 80px;
  height: 80px;
  box-shadow: var(--shadow-hero);
}

.logo-icon--lg svg {
  width: 44px;
  height: 44px;
}

.logo-text {
  font-size: var(--text-xl);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--color-white);
}

.site-header.is-scrolled .logo-text {
  color: var(--color-text);
}

/* ============================================================
   NAV LINKS
   ============================================================ */

.nav__links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
  padding: 4px 0;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 1px;
}

.nav__links a:hover {
  color: var(--color-white);
}

.nav__links a:hover::after {
  transform: scaleX(1);
}

.site-header.is-scrolled .nav__links a {
  color: rgba(0, 0, 0, 0.6);
}

.site-header.is-scrolled .nav__links a:hover {
  color: var(--color-text);
}

.nav__lang {
  font-size: var(--text-sm);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  padding: 6px 10px;
  border-radius: var(--radius-xs);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all var(--transition);
  letter-spacing: 0.5px;
}

.nav__lang:hover {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.site-header.is-scrolled .nav__lang {
  color: rgba(0, 0, 0, 0.5);
  border-color: var(--color-border);
}

.site-header.is-scrolled .nav__lang:hover {
  color: var(--color-text);
  border-color: rgba(0, 0, 0, 0.3);
}

/* ============================================================
   HERO CONTENT
   ============================================================ */

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-3);
  padding: 6px 12px 6px 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
}

.hero__label .material-symbols-rounded {
  font-size: 14px;
  color: var(--color-accent);
}

.hero__title {
  color: var(--color-white);
  font-size: var(--text-5xl);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: var(--space-3);
}

@media (max-width: 767px) {
  .hero__title {
    font-size: 2rem;
    letter-spacing: -0.75px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero__title {
    font-size: var(--text-3xl);
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: clamp(2.5rem, 4vw, 4rem);
  }
}

.hero__subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-lg);
  font-weight: 400;
  margin-bottom: var(--space-5);
  max-width: 500px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1) var(--space-3);
}

@media (max-width: 480px) {
  .hero__trust {
    flex-direction: column;
    gap: 8px;
  }
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}

.trust-item .material-symbols-rounded {
  font-size: 16px;
  color: var(--color-accent);
}

/* ============================================================
   PHONE MOCKUP (Hero)
   ============================================================ */

.phone-mockup {
  width: 270px;
  background: var(--color-white);
  border-radius: 40px;
  border: 8px solid #1A1A1A;
  box-shadow: var(--shadow-hero), 0 0 0 1px rgba(255,255,255,0.08);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.phone-notch {
  width: 90px;
  height: 24px;
  background: #1A1A1A;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.phone-screen {
  background: #F2F2F7;
  min-height: 480px;
  position: relative;
  overflow: hidden;
}

.phone-app-header {
  background: var(--color-white);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-border);
}

.phone-app-logo {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--color-text);
}

.phone-bell-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.phone-bell-wrap .material-symbols-rounded {
  font-size: 22px;
  color: var(--color-text);
}

.phone-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  background: var(--color-accent);
  border-radius: 50%;
  color: var(--color-white);
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: badge-pulse 2.2s infinite;
}

@keyframes badge-pulse {
  0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
  60% { box-shadow: 0 0 0 8px rgba(76, 175, 80, 0); }
  100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

.phone-section-head {
  padding: 12px 16px 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-muted);
}

.phone-order {
  background: var(--color-white);
  margin: 0 8px 8px;
  border-radius: 14px;
  padding: 12px 12px 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-1);
  border-left: 3px solid transparent;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.phone-order--new { border-left-color: var(--color-accent); }
.phone-order--prep { border-left-color: #FF9800; }
.phone-order--done { border-left-color: #2196F3; }

.phone-order__left {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.phone-order__table {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.phone-order__items {
  font-size: 11px;
  color: var(--color-muted);
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.phone-order__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}

.phone-order__total {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
}

.phone-order__status {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.phone-order__status--new {
  background: rgba(76, 175, 80, 0.12);
  color: #388E3C;
}

.phone-order__status--prep {
  background: rgba(255, 152, 0, 0.12);
  color: #E65100;
}

.phone-order__status--done {
  background: rgba(33, 150, 243, 0.12);
  color: #1565C0;
}

/* Notification toast */
.phone-toast {
  position: absolute;
  top: 62px;
  left: 10px;
  right: 10px;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  animation: toast-slide 4s ease infinite 1.5s;
  opacity: 0;
  transform: translateY(-8px);
}

.phone-toast .material-symbols-rounded {
  font-size: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.phone-toast__title {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-white);
}

.phone-toast__sub {
  display: block;
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}

@keyframes toast-slide {
  0% { opacity: 0; transform: translateY(-8px); }
  10% { opacity: 1; transform: translateY(0); }
  70% { opacity: 1; transform: translateY(0); }
  80% { opacity: 0; transform: translateY(-8px); }
  100% { opacity: 0; transform: translateY(-8px); }
}

/* Hero glow */
.hero__glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
}

/* ============================================================
   SOCIAL PROOF
   ============================================================ */

.proof__stat {
  text-align: center;
  padding: var(--space-2) var(--space-4);
}

.proof__value {
  display: block;
  font-size: var(--text-4xl);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--color-text);
  line-height: 1;
  margin-bottom: 4px;
}

.proof__label-small {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-muted);
  font-weight: 500;
}

/* ============================================================
   PROBLEM CARDS
   ============================================================ */

.problem-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  transition: background var(--transition), border-color var(--transition);
}

.problem-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.problem-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
}

.problem-card__icon .material-symbols-rounded {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.5);
}

.problem-card h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-1);
  letter-spacing: -0.3px;
}

.problem-card p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

/* ============================================================
   SOLUTION
   ============================================================ */

.solution .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */

.feature-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(76, 175, 80, 0.2);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
}

.feature-card__icon .material-symbols-rounded {
  font-size: 24px;
  color: var(--color-white);
}

.feature-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-1);
  letter-spacing: -0.3px;
}

.feature-card p {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 1.65;
}

/* ============================================================
   HOW IT WORKS STEPS
   ============================================================ */

.step {
  position: relative;
  z-index: 1;
}

.step__number {
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-border);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: var(--space-2);
  position: relative;
  display: inline-block;
}

.step__number::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 32px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
}

.step__content h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.step__content p {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 1.65;
}

.how__cta .btn {
  min-width: 200px;
}

/* ============================================================
   SCREENSHOTS — Phone showcases
   ============================================================ */

.phone-showcase {
  background: var(--color-white);
  border-radius: 36px;
  border: 6px solid rgba(255,255,255,0.1);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  transition: transform var(--transition);
}

.phone-showcase--center {
  width: 240px;
  z-index: 3;
  position: relative;
}

.phone-showcase--left,
.phone-showcase--right {
  width: 200px;
  opacity: 0.65;
}

.phone-showcase--left {
  transform: rotate(-8deg) translateY(40px);
  z-index: 2;
}

.phone-showcase--right {
  transform: rotate(8deg) translateY(40px);
  z-index: 2;
}

.phone-showcase--left:hover,
.phone-showcase--right:hover {
  transform: translateY(-8px) rotate(0deg);
  opacity: 1;
  z-index: 4;
}

/* Mobile: solo il telefono centrale, a tutta larghezza */
@media (max-width: 767px) {
  .phone-showcase--left,
  .phone-showcase--right {
    display: none;
  }

  .phone-showcase--center {
    width: min(280px, 78vw);
  }
}

.showcase-screen {
  background: #F2F2F7;
}

/* Menu screen mockup */
.showcase-menu-header {
  background: var(--color-white);
  padding: 12px 14px 10px;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.showcase-cat-tabs {
  padding: 8px 10px;
  display: flex;
  gap: 6px;
}

.cat-tab {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--color-bg);
  color: var(--color-muted);
}

.cat-tab--active {
  background: var(--color-text);
  color: var(--color-white);
}

.showcase-product {
  background: var(--color-white);
  margin: 0 8px 6px;
  border-radius: 12px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.showcase-product-img {
  width: 40px;
  height: 40px;
  background: var(--color-bg);
  border-radius: var(--radius-xs);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-product-img .material-symbols-rounded {
  font-size: 20px;
  color: var(--color-muted);
}

.showcase-product-info {
  flex: 1;
  min-width: 0;
}

.showcase-product-name {
  display: block;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.showcase-product-price {
  display: block;
  font-size: 11px;
  color: var(--color-accent);
  font-weight: 700;
  margin-top: 2px;
}

/* QR Code screen mockup */
.showcase-qr-header {
  background: var(--color-white);
  padding: 12px 14px 10px;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
  font-weight: 800;
}

.showcase-qr-body {
  padding: 14px 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.showcase-qr-code {
  width: 130px;
  height: 130px;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.showcase-qr-table {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-muted);
}

.showcase-qr-actions {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}

.showcase-qr-btn {
  font-size: 10px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  color: var(--color-text);
}

.showcase-qr-btn--accent {
  background: var(--color-accent);
  color: var(--color-white);
}

/* ============================================================
   PRICING CARDS
   ============================================================ */

.pricing-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.pricing-card--featured {
  background: var(--gradient-dark);
  border-color: transparent;
  box-shadow: var(--shadow-hero);
  transform: scale(1.02);
}

@media (max-width: 1023px) {
  .pricing-card--featured {
    transform: none;
  }
}

.pricing-card--soon {
  opacity: 0.55;
  cursor: default;
}

.pricing-card__header h3 {
  font-size: var(--text-xl);
  font-weight: 800;
  margin-bottom: var(--space-2);
  color: var(--color-white);
}

.pricing-card:not(.pricing-card--featured) .pricing-card__header h3 {
  color: var(--color-text);
}

.pricing-card__badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-muted);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-2);
  border: 1px solid rgba(0,0,0,0.06);
}

.pricing-price {
  margin-bottom: var(--space-2);
}

.pricing-price .price-value {
  font-size: var(--text-4xl);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--color-white);
  line-height: 1;
}

.pricing-price .price-period {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  margin-left: 4px;
}

.pricing-card__desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: var(--space-2);
}

.pricing-card:not(.pricing-card--featured) .pricing-card__desc {
  color: var(--color-muted);
}

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

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}

.pricing-features li .material-symbols-rounded {
  font-size: 16px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing__note {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-muted);
  font-weight: 500;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */

.faq__item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq__item.is-open {
  box-shadow: var(--shadow-card);
  border-color: rgba(76, 175, 80, 0.2);
}

.faq__question button {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-3) var(--space-4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  transition: color var(--transition);
}

.faq__question button:hover {
  color: var(--color-accent);
}

.faq__question button:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: -3px;
}

.faq__chevron {
  font-size: 20px;
  color: var(--color-muted);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq__item.is-open .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq__answer p {
  padding: 0 var(--space-4) var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 1.7;
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-2);
  margin-top: 0;
}

/* ============================================================
   CTA FINAL
   ============================================================ */

.cta-final__title {
  color: var(--color-white);
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin-bottom: var(--space-2);
}

.cta-final__subtitle {
  color: rgba(255, 255, 255, 0.55);
  font-size: var(--text-lg);
  max-width: 520px;
  margin: 0 auto var(--space-6);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.cta-stores {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  justify-content: center;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  cursor: not-allowed;
  opacity: 0.45;
  min-width: 160px;
  transition: opacity var(--transition);
  user-select: none;
}

.store-btn__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.store-btn__coming {
  display: block;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--font-body);
  margin-bottom: 2px;
}

.store-btn__name {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-white);
  font-weight: 700;
  font-family: var(--font-body);
}

.cta-final__note {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.25);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  margin-bottom: var(--space-1);
}

.footer__logo .logo-text {
  color: var(--color-white);
}

.footer__tagline {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
  max-width: 240px;
}

.footer__col h4 {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: var(--space-3);
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer__col ul a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  transition: color var(--transition);
}

.footer__col ul a:hover {
  color: var(--color-white);
}

.footer__bottom p {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.25);
  font-weight: 400;
}

.footer__lang {
  font-size: var(--text-xs);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xs);
  letter-spacing: 0.5px;
  transition: all var(--transition);
}

.footer__lang:hover {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   SHOWCASE UTILITY CLASSES
   ============================================================ */

.showcase-notch {
  background: #1A1A1A;
  border-radius: 0 0 12px 12px;
  margin: 0 auto;
}

.showcase-notch--sm {
  width: 70px;
  height: 18px;
}

.showcase-notch--md {
  width: 80px;
  height: 20px;
  border-radius: 0 0 14px 14px;
}

.showcase-products-list {
  padding: 0 8px;
}

.phone-screen--tall {
  min-height: 420px;
}

/* ============================================================
   QR CODE SVG (decorative)
   ============================================================ */

.qr-svg {
  width: 100%;
  height: 100%;
}
