/* ═══════════════════════════════════════
   APPLICATIONS PAGE
   ═══════════════════════════════════════ */

.a-inner {
  max-width: 1320px; margin: 0 auto;
  padding-left: 64px; padding-right: 64px;
}

/* ── Hero ── */
.a-hero { background: var(--dark); position: relative; overflow: hidden; }
.a-hero-bg {
  position: absolute; inset: 0;
  background: url('assets/bg-hero-app.jpg') center/cover no-repeat; z-index: 1;
}
.a-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(10,12,20,0.5); z-index: 2;
}
.a-hero .a-inner {
  padding-top: 156px; padding-bottom: 80px;
  position: relative; z-index: 3;
}
.a-label {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  color: var(--gold); margin-bottom: 16px; text-transform: uppercase;
}
.a-hero h1 {
  font-size: 48px; font-weight: 300; line-height: 1.2;
  color: var(--white); margin-bottom: 36px;
}
.a-hero h1 .gold { color: var(--gold); font-weight: 600; }
.a-hero-pills { display: flex; align-items: center; gap: 0; }
.a-pill {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 0 28px; position: relative;
}
.a-pill:first-child { padding-left: 0; }
.a-pill:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 10%; height: 80%;
  width: 1px; background: rgba(255,255,255,0.2);
}
.a-pill-text { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.a-pill-bar { width: 32px; height: 3px; border-radius: 2px; }
.a-pill-bar.purple { background: #9B6FE8; }
.a-pill-bar.cyan { background: #3FC5D9; }
.a-pill-bar.green { background: #4CAF50; }

/* ── Four Systems ── */
.a-four { background: #fdfcfc; position: relative; overflow: hidden; }
.a-four-bg { position: absolute; inset: 0; background: url('assets/bg-app-2.jpg') center right/cover no-repeat; opacity: 0.25; z-index: 1; }
.a-four .a-inner {
  position: relative; z-index: 2;
  padding-top: 80px; padding-bottom: 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.a-four-left { border-left: 4px solid var(--gold); padding-left: 28px; }
.a-four-left h2 { font-size: 36px; font-weight: 800; line-height: 1.2; color: var(--text-dark); letter-spacing: 1px; }
.a-four-left h2 .gold { color: var(--gold); }
.a-four-right p { font-size: 16px; font-weight: 400; color: #666; line-height: 1.75; }
.a-four-right p strong { color: var(--text-dark); font-weight: 700; }

/* ── Product sections shared ── */
.a-product { position: relative; }
.a-product .a-inner {
  padding-top: 72px; padding-bottom: 72px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.a-product-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px; font-size: 13px;
  font-weight: 800; margin-right: 12px; vertical-align: middle;
}
.a-product-name {
  font-size: 32px; font-weight: 800; color: var(--text-dark);
  letter-spacing: 2px; display: inline; vertical-align: middle;
}
.a-product-subtitle {
  font-size: 14px; font-weight: 600; font-style: italic;
  margin: 12px 0; letter-spacing: 0.3px;
}
.a-product-divider { width: 32px; height: 3px; margin-bottom: 20px; }
.a-product-tagline {
  font-size: 26px; font-weight: 300; color: var(--text-dark);
  line-height: 1.35; margin-bottom: 16px;
}
.a-product-desc {
  font-size: 14px; font-weight: 400; color: #888; line-height: 1.7;
  margin-bottom: 28px; max-width: 380px;
}
.a-product-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 4px; text-decoration: none;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  border: 1.5px solid; transition: all 0.25s;
}
.a-product-btn:hover { transform: translateX(4px); }

/* Product images */
.a-product-img { border-radius: 12px; width: 100%; display: block; }

/* Color themes */
.a-emisso { background: #fdfcfc; }
.a-emisso .a-product-num { background: #FFF3E0; color: #E67E22; border: 1.5px solid #E67E22; }
.a-emisso .a-product-subtitle { color: #E67E22; }
.a-emisso .a-product-divider { background: #E67E22; }
.a-emisso .a-product-btn { color: #E67E22; border-color: #E67E22; }
.a-emisso .a-product-btn:hover { background: #E67E22; color: #fff; }

.a-jalvay { background: #f3f3f6; }
.a-jalvay .a-product-num { background: #E8F4FD; color: #2196F3; border: 1.5px solid #2196F3; }
.a-jalvay .a-product-subtitle { color: #2196F3; }
.a-jalvay .a-product-divider { background: #2196F3; }
.a-jalvay .a-product-btn { color: #2196F3; border-color: #2196F3; }
.a-jalvay .a-product-btn:hover { background: #2196F3; color: #fff; }

.a-lens { background: #fdfdfd; }
.a-lens .a-product-num { background: #E8F5E9; color: #4CAF50; border: 1.5px solid #4CAF50; }
.a-lens .a-product-subtitle { color: #4CAF50; }
.a-lens .a-product-divider { background: #4CAF50; }
.a-lens .a-product-btn { color: #4CAF50; border-color: #4CAF50; }
.a-lens .a-product-btn:hover { background: #4CAF50; color: #fff; }

.a-verdict-section { background: #f4f3f5; }
.a-verdict-section .a-product-num { background: #EDE7F6; color: #7C4DFF; border: 1.5px solid #7C4DFF; }
.a-verdict-section .a-product-subtitle { color: #7C4DFF; }
.a-verdict-section .a-product-divider { background: #7C4DFF; }
.a-verdict-section .a-product-btn { color: #7C4DFF; border-color: #7C4DFF; }
.a-verdict-section .a-product-btn:hover { background: #7C4DFF; color: #fff; }

/* VERDICT inline framework */
.a-verdict-fw {
  display: flex; flex-direction: column; align-items: center; gap: 24px;
  position: relative;
}
.a-verdict-flow {
  position: relative; padding: 32px 24px;
  border: 1px solid rgba(124,77,255,0.12);
  border-radius: 20px;
  background: rgba(124,77,255,0.02);
}
.a-verdict-icons {
  display: flex; gap: 0; align-items: flex-start; position: relative;
}
.a-verdict-icon-item {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px;
  width: 110px; position: relative; z-index: 2;
}
.a-verdict-icon-circle {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1.5px solid #ccc; background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #7C4DFF; position: relative; z-index: 2;
}
.a-verdict-icon-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 26px;
  left: calc(50% + 26px);
  width: calc(100% - 52px);
  height: 0;
  border-top: 1.5px solid #ddd;
  z-index: 1;
}
.a-verdict-icon-item h5 {
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px; color: var(--text-dark);
}
.a-verdict-icon-item p {
  font-size: 9.5px; font-weight: 400; color: #999; line-height: 1.3;
}
.a-verdict-badge {
  background: var(--dark); color: var(--white);
  padding: 12px 32px; border-radius: 8px;
  font-size: 14px; font-weight: 800; letter-spacing: 4px;
  display: flex; align-items: center; gap: 8px;
}
.a-verdict-badge-icon { font-size: 16px; color: #7C4DFF; }

/* ── CTA ── */
.a-cta { background: var(--dark); position: relative; overflow: hidden; }
.a-cta-bg {
  position: absolute; inset: 0;
  background: url('assets/footer-bg-app.jpg') center/cover no-repeat; z-index: 1;
}
.a-cta-bg::after { content: ''; position: absolute; inset: 0; background: rgba(14,16,24,0.55); }
.a-cta .a-inner {
  padding-top: 72px; padding-bottom: 72px;
  display: flex; align-items: center; gap: 48px;
  position: relative; z-index: 2;
}
.a-cta h2 { font-size: 36px; font-weight: 300; color: var(--white); line-height: 1.3; flex-shrink: 0; }
.a-cta h2 .gold { color: var(--gold); }
.a-cta-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.15); flex-shrink: 0; }
.a-cta-desc { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 320px; }
.a-cta-right { margin-left: auto; flex-shrink: 0; }

.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; background: var(--gold); color: var(--dark);
  text-decoration: none; font-size: 12px; font-weight: 700; letter-spacing: 2px;
  border-radius: 4px; transition: background 0.25s; white-space: nowrap;
}
.btn-gold:hover { background: var(--gold-hover); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .a-inner { padding-left: 36px; padding-right: 36px; }
  .a-product .a-inner { grid-template-columns: 1fr; gap: 36px; }
  .a-text-col { order: -1; }
  .a-four .a-inner { grid-template-columns: 1fr; gap: 36px; }
  .a-verdict-icons { flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 768px) {
  .a-inner { padding-left: 24px; padding-right: 24px; }
  .a-hero h1 { font-size: 32px; }
  .a-four-left h2 { font-size: 26px; }
  .a-product-tagline { font-size: 22px; }
  .a-product-name { font-size: 26px; }
  .a-cta .a-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .a-cta-divider { width: 40px; height: 1px; }
  .a-cta h2 { font-size: 28px; }
  .a-cta-right { margin-left: 0; }
  .a-hero-pills { flex-wrap: wrap; gap: 12px; }
  .a-pill:not(:last-child)::after { display: none; }
}
@media (max-width: 480px) {
  .a-hero h1 { font-size: 26px; }
  .a-four-left h2 { font-size: 22px; }
  .a-product-tagline { font-size: 20px; }
  .a-verdict-icons { gap: 16px; }
  .a-verdict-icon-item { width: 80px; }
}