/* ══════════════════════════
   WORK WITH US — CTA CARDS
   ══════════════════════════ */
.work-with-us { background: var(--gray-50); }

.cta-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.cta-card {
  border-radius: var(--r-xl);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-slow), box-shadow var(--t-slow);
}
.cta-card:hover { transform: translateY(-4px); box-shadow: 0 20px 56px rgba(0,0,0,0.18); }

.cta-card-dark { background: var(--navy); }
.cta-card-gold { background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%); }

/* Decorative circles */
.cta-card::before {
  content: '';
  position: absolute;
  top: -70px; right: -70px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.cta-card::after {
  content: '';
  position: absolute;
  bottom: -50px; right: 30px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}

.cta-card-icon {
  width: 58px; height: 58px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative; z-index: 1;
}
.cta-card-dark .cta-card-icon { background: rgba(212,146,10,0.15); }
.cta-card-gold .cta-card-icon { background: rgba(255,255,255,0.22); }
.cta-card-icon svg { width: 28px; height: 28px; color: var(--white); }

.cta-card-tag {
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.55;
  color: var(--white);
  margin-bottom: 10px;
  position: relative; z-index: 1;
}
.cta-card h3 {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
  position: relative; z-index: 1;
}
.cta-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 340px;
  position: relative; z-index: 1;
}
.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  border-bottom: 2px solid rgba(255,255,255,0.38);
  padding-bottom: 3px;
  transition: gap var(--t), border-color var(--t);
  position: relative; z-index: 1;
}
.cta-link:hover { gap: 13px; border-color: var(--white); }
.cta-link svg { width: 16px; height: 16px; }

@media (max-width: 768px) {
  .cta-cards { grid-template-columns: 1fr; }
  .cta-card  { padding: 36px 28px; }
}
