/* ── HERO VISUAL ─────────────────────────────── */
.ap-hero .hero-inner {
  grid-template-columns: 55% 1fr;
  align-items: center;
}

.ap-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ap-phone {
  width: 160px;
  height: 300px;
  background: #1a1f2e;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 10px 10px;
  gap: 10px;
}

.ap-phone-notch {
  width: 48px;
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  flex-shrink: 0;
}

.ap-phone-screen {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ap-screen-header {
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(217,79,30,0.4), rgba(217,79,30,0.1));
  border: 1px solid rgba(217,79,30,0.2);
}

.ap-screen-card {
  height: 60px;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
}

.ap-screen-card.short { height: 40px; }

.ap-screen-row {
  display: flex;
  gap: 6px;
}

.ap-screen-block {
  flex: 1;
  height: 44px;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
}

.ap-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--dark);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 30px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  white-space: nowrap;
}

.ap-badge-1 { bottom: -16px; left: -32px; }
.ap-badge-2 { top: -16px; right: -32px; }

/* ── SHARED SECTION STYLES ───────────────────── */
.ap-section { padding: 100px 0; }

.ap-section-header { margin-bottom: 56px; }

.ap-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 18px;
}

.ap-eyebrow span {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  display: inline-block;
}

.ap-headline {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
}

.ap-headline em {
  font-family: "Merriweather", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
}

/* ── DELIVERABLES ────────────────────────────── */
.ap-deliverables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ap-del-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(15,22,41,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}

.ap-del-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(15,22,41,0.08);
}

.ap-del-icon {
  width: 44px;
  height: 44px;
  background: rgba(217,79,30,0.07);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.ap-del-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.ap-del-desc {
  font-size: 13px;
  line-height: 1.8;
  color: var(--mid);
}

/* ── APPROACH ────────────────────────────────── */
.ap-approach {
  padding: 100px 0;
  background: var(--dark);
}

.ap-approach .ap-eyebrow { color: rgba(255,255,255,0.4); }
.ap-approach .ap-headline { color: #fff; }

.ap-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
}

.ap-step {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 8px;
}

.ap-step-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--orange);
  text-transform: uppercase;
}

.ap-step-title {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.ap-step-desc {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
}

.ap-step-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.1);
  margin: 28px 24px 0;
}

/* ── TECH STACK ──────────────────────────────── */
.ap-tech-section { background: #f6f6f1; }

.ap-tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ap-tech-item {
  background: #fff;
  border: 1px solid rgba(15,22,41,0.09);
  border-radius: 10px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}

/* ── CTA ─────────────────────────────────────── */
.ap-cta-section {
  padding: 120px 0;
  background: var(--dark);
}

.ap-cta-inner { max-width: 620px; }

.ap-cta-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}

.ap-cta-label span {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  display: inline-block;
}

.ap-cta-headline {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.ap-cta-headline em {
  font-family: "Merriweather", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
}

.ap-cta-sub {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
  margin-bottom: 36px;
}

/* ── CTA BUTTON FIX (dark background) ───────── */
.ap-cta-btn {
  background: var(--orange) !important;
}
.ap-cta-btn:hover {
  background: #bf4318 !important;
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .ap-hero .hero-inner { grid-template-columns: 1fr; }
  .ap-hero-visual { display: none; }
  .ap-steps { grid-template-columns: 1fr; gap: 32px; }
  .ap-step-divider { display: none; }
}

@media (max-width: 768px) {
  .ap-deliverables { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .ap-deliverables { grid-template-columns: 1fr; }
}

/* Clean emphasis style */
em {
  font-style: normal !important;
  font-family: inherit !important;
  font-weight: inherit !important;
  color: inherit !important;
}
