.btn-primary {
  background: var(--gradient-cta);
  color: white;
  padding: 20px 40px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  border-radius: 100px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-purple);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 48px rgba(168,85,247,0.35);
}

.btn-primary:hover::before { left: 100%; }

.btn-secondary {
  color: var(--purple-deep);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 24px;
  transition: all 0.3s;
}

.btn-secondary:hover {
  gap: 16px;
  color: var(--purple);
}

.btn-secondary svg { transition: transform 0.3s; }
.btn-secondary:hover svg { transform: translateX(5px); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 72px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--purple-warm);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 32px; height: 2px;
  background: var(--gradient-energy);
  border-radius: 2px;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 17px;
  color: var(--plum-soft);
  line-height: 1.8;
}

/* ===== FOOTER ===== */
.footer {
  padding: 80px 48px 40px;
  background: var(--plum);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo { margin-bottom: 20px; }

.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  line-height: 1.7;
}

.footer-title {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  color: white;
  margin-bottom: 20px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }

.footer-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
}

.footer-links a:hover { color: var(--cyan); }

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
}

.footer-powered {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
}

.footer-powered span {
  color: var(--cyan);
  font-weight: 600;
}

.footer-logo-img {
  filter: brightness(0) invert(1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .footer { padding: 60px 24px 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}
