/* ═══════════════════════════════════════════════════════════
   APP2TABLE PRODUCT PAGE — Hospitality ordering platform
   Deep navy tones, warm amber accents, refined table-service feel
   ═══════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════
   A2T-HERO — Dark hero with device showcase
   ═══════════════════════════════════════════ */
.a2t-hero {
  position: relative;
  overflow: hidden;
  background: #0e1520;
  margin-top: calc(-1 * (var(--nav-h) + 40px));
  padding-top: calc(var(--nav-h) + 40px);
}

.a2t-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.a2t-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 55% 65% at 55% 45%, black 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 55% 65% at 55% 45%, black 10%, transparent 70%);
}

.a2t-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}
.a2t-hero__orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,126,47,0.25) 0%, transparent 70%);
  top: -10%; right: 15%;
  animation: a2t-orb1 16s ease-in-out infinite;
}
.a2t-hero__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,123,193,0.18) 0%, transparent 70%);
  bottom: -20%; left: 10%;
  animation: a2t-orb2 18s ease-in-out infinite;
}
.a2t-hero__orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(82,171,51,0.12) 0%, transparent 70%);
  top: 40%; left: 35%;
  animation: a2t-orb3 20s ease-in-out infinite;
}

@keyframes a2t-orb1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 15px) scale(1.08); }
}
@keyframes a2t-orb2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(25px, -18px) scale(1.06); }
}
@keyframes a2t-orb3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-12px, 15px); }
}

/* ─── Split inner ─── */
.a2t-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: clamp(2rem, 3vw, 3rem) 2.4rem clamp(3.5rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

/* ─── Breadcrumbs ─── */
.a2t-hero__crumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.a2t-hero__crumbs a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.a2t-hero__crumbs a:hover { color: rgba(255,255,255,0.7); }
.a2t-hero__crumbs span { color: rgba(255,255,255,0.2); }
.a2t-hero__crumbs-current { color: rgba(255,255,255,0.65) !important; }

/* ─── Badge ─── */
.a2t-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem 0.4rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  background: rgba(212,126,47,0.12);
  border: 1px solid rgba(212,126,47,0.25);
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.a2t-hero__badge svg { flex-shrink: 0; }

/* ─── Title ─── */
.a2t-hero__title {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin-bottom: 1rem;
}
.a2t-hero__title-gradient {
  display: block;
  background: linear-gradient(135deg, var(--amber) 0%, #e8a54c 40%, #f0c060 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.a2t-hero__title-sub {
  display: block;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: -0.02em;
  margin-top: 0.2rem;
}
.a2t-hero__title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 1.2rem;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--amber) 0%, #f0c060 100%);
  opacity: 0.7;
}

/* ─── Subtitle ─── */
.a2t-hero__sub {
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 1.5rem;
}

/* ─── Feature checklist ─── */
.a2t-hero__features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  margin-bottom: 2rem;
  padding: 0;
}
.a2t-hero__features li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.01em;
}
.a2t-hero__features svg {
  color: var(--amber);
  flex-shrink: 0;
}

/* ─── CTAs ─── */
.a2t-hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ─── Device showcase ─── */
.a2t-hero__devices {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}

.a2t-hero__device-main {
  position: relative;
  z-index: 2;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow:
    0 8px 40px rgba(0,0,0,0.45),
    0 0 60px rgba(212,126,47,0.08);
  max-width: 340px;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.5s cubic-bezier(0.22,1,0.36,1);
}
.a2t-hero__device-main--solo {
  border: none;
  border-radius: 0;
  overflow: visible;
  background: none;
  box-shadow: none;
  max-width: 520px;
  filter: drop-shadow(0 12px 40px rgba(0,0,0,0.45))
          drop-shadow(0 0 60px rgba(212,126,47,0.1));
}
.a2t-hero__device-main:hover {
  transform: translateY(-6px);
  box-shadow:
    0 14px 50px rgba(0,0,0,0.5),
    0 0 80px rgba(212,126,47,0.12);
}
.a2t-hero__device-main--solo:hover {
  box-shadow: none;
  filter: drop-shadow(0 16px 50px rgba(0,0,0,0.5))
          drop-shadow(0 0 80px rgba(212,126,47,0.14));
}
.a2t-hero__device-main img {
  width: 100%;
  display: block;
}

.a2t-hero__device-side {
  position: absolute;
  z-index: 1;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.08);
  box-shadow: 0 6px 30px rgba(0,0,0,0.35);
  max-width: 160px;
  width: 35%;
  opacity: 0.7;
  transition: opacity 0.4s, transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.a2t-hero__device-side:hover {
  opacity: 0.9;
  transform: translateY(-4px);
}
.a2t-hero__device-side img {
  width: 100%;
  display: block;
}
.a2t-hero__device-side--left {
  left: -5%;
  bottom: 10%;
}
.a2t-hero__device-side--right {
  right: -5%;
  top: 10%;
}

/* ═══════════════════════════════════════════
   A2T-MODES — Staff / Customer dual mode
   ═══════════════════════════════════════════ */
.a2t-modes {
  padding: var(--section-pad) 2.4rem;
  background: var(--white);
}
.a2t-modes__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
}
.a2t-modes__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.a2t-modes__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.a2t-mode {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 2.5rem 2.2rem;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.35s;
}
.a2t-mode:hover {
  transform: translateY(-4px);
}

.a2t-mode--staff {
  background: linear-gradient(160deg, #f8f4ee 0%, #faf6f0 100%);
  border: 1px solid rgba(212,126,47,0.15);
}
.a2t-mode--staff:hover {
  box-shadow: 0 12px 40px rgba(212,126,47,0.1);
}
.a2t-mode--customer {
  background: linear-gradient(160deg, #edf3f9 0%, #f0f5fb 100%);
  border: 1px solid rgba(0,123,193,0.12);
}
.a2t-mode--customer:hover {
  box-shadow: 0 12px 40px rgba(0,123,193,0.08);
}

.a2t-mode__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
}
.a2t-mode--staff .a2t-mode__icon {
  background: rgba(212,126,47,0.12);
  border: 1px solid rgba(212,126,47,0.2);
}
.a2t-mode--customer .a2t-mode__icon {
  background: rgba(0,123,193,0.1);
  border: 1px solid rgba(0,123,193,0.18);
}

.a2t-mode__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.7rem;
  letter-spacing: -0.02em;
}

.a2t-mode__desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

.a2t-mode__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.a2t-mode__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.5;
}
.a2t-mode__list svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.a2t-mode--staff .a2t-mode__list svg { color: var(--amber); }
.a2t-mode--customer .a2t-mode__list svg { color: var(--blue); }

.a2t-mode__image {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.a2t-mode__image img {
  width: 100%;
  display: block;
}

/* ═══════════════════════════════════════════
   A2T-FEATURES — Alternating feature sections
   ═══════════════════════════════════════════ */
.a2t-features {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.a2t-feature {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 2.4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  margin-bottom: clamp(5rem, 8vw, 8rem);
}
.a2t-feature:last-child { margin-bottom: 0; }
.a2t-feature--reverse { direction: rtl; }
.a2t-feature--reverse > * { direction: ltr; }

.a2t-feature__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}
.a2t-feature__badge--amber {
  color: var(--amber);
  background: var(--amber-pale);
  border: 1px solid rgba(212,126,47,0.2);
}
.a2t-feature__badge--green {
  color: var(--green);
  background: var(--green-pale);
  border: 1px solid rgba(82,171,51,0.2);
}
.a2t-feature__badge--blue {
  color: var(--blue);
  background: var(--blue-pale);
  border: 1px solid rgba(0,123,193,0.2);
}
.a2t-feature__badge--purple {
  color: #7c3aed;
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.2);
}

.a2t-feature__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1rem;
}
.a2t-feature__title em {
  font-style: normal;
  color: var(--blue);
}

.a2t-feature__desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.8rem;
  max-width: 480px;
}

.a2t-feature__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 0;
}
.a2t-feature__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.5;
}
.a2t-feature__list svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--green);
}

.a2t-feature__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.a2t-feature__screen {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    0 4px 24px rgba(0,0,0,0.08),
    0 20px 60px rgba(0,0,0,0.06);
  max-width: 420px;
  width: 100%;
  background: var(--white);
}
.a2t-feature__screen img {
  width: 100%;
  display: block;
}

.a2t-feature__glow {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  z-index: 0;
}
.a2t-feature__glow--amber { background: var(--amber); }
.a2t-feature__glow--green { background: var(--green); }
.a2t-feature__glow--blue { background: var(--blue); }
.a2t-feature__glow--purple { background: #7c3aed; }

/* ═══════════════════════════════════════════
   A2T-SHOWCASE — Standalone feature section
   ═══════════════════════════════════════════ */
.a2t-showcase {
  padding: var(--section-pad) 2.4rem;
  background: var(--white);
}
.a2t-showcase__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.a2t-showcase__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  color: var(--green);
  background: var(--green-pale);
  border: 1px solid rgba(82,171,51,0.2);
}

.a2t-showcase__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1rem;
}
.a2t-showcase__title em {
  font-style: normal;
  color: var(--green);
}

.a2t-showcase__desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 1.8rem;
}

.a2t-showcase__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 0;
}
.a2t-showcase__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.5;
}
.a2t-showcase__list svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--green);
}

.a2t-showcase__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.a2t-showcase__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  max-width: 520px;
  width: 100%;
}
.a2t-showcase__image img {
  width: 100%;
  display: block;
}
.a2t-showcase__glow {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  z-index: 0;
  background: var(--green);
}

/* ═══════════════════════════════════════════
   A2T-INTEGRATION — Dark EPOS section
   ═══════════════════════════════════════════ */
.a2t-integration {
  position: relative;
  padding: var(--section-pad) 2.4rem;
  background: var(--dark);
  overflow: hidden;
}
.a2t-integration__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 50% at 30% 50%, rgba(212,126,47,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 70% 60%, rgba(0,123,193,0.05) 0%, transparent 60%);
}
.a2t-integration__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.a2t-integration__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}
.a2t-integration__header .section-title { color: #fff; }
.a2t-integration__header .section-title em { color: var(--amber); }
.a2t-integration__header .section-sub { color: rgba(255,255,255,0.5); }

.a2t-integration__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.a2t-integration__text {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}
.a2t-integration__text p + p {
  margin-top: 1.2rem;
}
.a2t-integration__text strong {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

.a2t-integration__visual {
  display: flex;
  justify-content: center;
}
.a2t-integration__device {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  max-width: 380px;
  width: 100%;
}
.a2t-integration__device img {
  width: 100%;
  display: block;
}

/* ═══════════════════════════════════════════
   A2T-WORKFLOW — Order flow steps
   ═══════════════════════════════════════════ */
.a2t-workflow {
  padding: var(--section-pad) 2.4rem;
  background: var(--white);
}
.a2t-workflow__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
}
.a2t-workflow__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

.a2t-workflow__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.a2t-step {
  position: relative;
  padding: 2rem 1.6rem;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.35s, border-color 0.35s;
}
.a2t-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.06);
  border-color: rgba(212,126,47,0.2);
}

.a2t-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber), #e8a54c);
  margin-bottom: 1.2rem;
  box-shadow: 0 3px 10px rgba(212,126,47,0.25);
}

.a2t-step__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.a2t-step__desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Connector lines between steps */
.a2t-step::after {
  content: '';
  position: absolute;
  top: 2.7rem;
  right: -0.75rem;
  width: calc(1.5rem);
  height: 2px;
  background: linear-gradient(90deg, var(--border), transparent);
}
.a2t-step:last-child::after { display: none; }

/* ═══════════════════════════════════════════
   A2T-PAYMENTS — Payment section
   ═══════════════════════════════════════════ */
.a2t-payments {
  padding: clamp(4rem, 6vw, 6rem) 2.4rem;
  background: var(--bg);
  text-align: center;
}
.a2t-payments__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.a2t-payments__desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 620px;
  margin: 1.5rem auto 0;
}
.a2t-payments__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(3rem, 6vw, 5rem);
  margin-top: 3rem;
}
.a2t-payments__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.a2t-payments__logo-box {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.a2t-payments__logo-box:hover {
  border-color: var(--amber);
  box-shadow: 0 4px 20px rgba(212,126,47,0.15);
}
.a2t-payments__logo span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   A2T-SCALE — Scalability section
   ═══════════════════════════════════════════ */
.a2t-scale {
  padding: var(--section-pad) 2.4rem;
  background: var(--white);
}
.a2t-scale__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.a2t-scale__content {}
.a2t-scale__desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 1.8rem;
}
.a2t-scale__visual {
  display: flex;
  justify-content: center;
}
.a2t-scale__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  max-width: 480px;
  width: 100%;
}
.a2t-scale__image img {
  width: 100%;
  display: block;
}

/* ═══════════════════════════════════════════
   A2T-DOWNLOAD — App store badges
   ═══════════════════════════════════════════ */
.a2t-download {
  padding: clamp(4rem, 7vw, 7rem) 2.4rem;
  background: var(--bg);
  text-align: center;
}
.a2t-download__inner {
  max-width: 640px;
  margin: 0 auto;
}
.a2t-download__badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
.a2t-download__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.6rem;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
}
.a2t-download__badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.a2t-download__badge small {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-align: left;
}
.a2t-download__badge span {
  text-align: left;
  line-height: 1.2;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .a2t-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .a2t-hero__copy { order: 1; }
  .a2t-hero__devices { order: 2; }
  .a2t-hero__crumbs { justify-content: center; }
  .a2t-hero__sub { margin-inline: auto; }
  .a2t-hero__features { justify-content: center; }
  .a2t-hero__title::after { margin-inline: auto; }
  .a2t-hero__actions { justify-content: center; }
  .a2t-hero__badge { margin-inline: auto; }

  .a2t-modes__grid { grid-template-columns: 1fr; }

  .a2t-feature { grid-template-columns: 1fr; gap: 3rem; }
  .a2t-feature--reverse { direction: ltr; }
  .a2t-feature__visual { order: -1; }
  .a2t-feature__desc { max-width: 100%; }

  .a2t-showcase__inner { grid-template-columns: 1fr; }
  .a2t-showcase__visual { order: -1; }
  .a2t-showcase__desc { max-width: 100%; }

  .a2t-integration__content { grid-template-columns: 1fr; }
  .a2t-integration__visual { order: -1; }

  .a2t-workflow__steps { grid-template-columns: repeat(2, 1fr); }
  .a2t-step:nth-child(2)::after { display: none; }

  .a2t-scale__inner { grid-template-columns: 1fr; }
  .a2t-scale__visual { order: -1; }
}

@media (max-width: 768px) {
  .a2t-hero__device-main { max-width: 260px; }
  .a2t-hero__device-side { max-width: 120px; }

  .a2t-workflow__steps { grid-template-columns: 1fr; }
  .a2t-step::after { display: none; }

  .a2t-payments__logos { flex-wrap: wrap; gap: 2rem; }

  .a2t-download__badges { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .a2t-hero__device-main { max-width: 220px; }
  .a2t-hero__device-side { display: none; }
}
