/* =============================================
   CTA + FOOTER
   Brand: #0d0d0d · #f5c200 · #fafaf6
   ============================================= */

/* ════════════════════════════════════════════
   CTA SECTION
   ════════════════════════════════════════════ */

.cta-section {
  position: relative;
  z-index: 2;
  padding: 7rem 0 8rem;
  overflow: hidden;
}

/* Subtle radial glow behind CTA content */
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 60%,
    rgba(245,194,0,0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  position: relative;
}

/* ── Top label row ── */
.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f5c200;
  margin-bottom: 2rem;
}

.cta-eyebrow::before,
.cta-eyebrow::after {
  content: '';
  width: 2rem;
  height: 1px;
  background: #f5c200;
  opacity: 0.5;
}

/* ── Main headline ── */
.cta-heading {
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: #fafaf6;
  margin: 0 0 1.75rem;
}

.cta-heading em {
  font-style: normal;
  color: #f5c200;
  position: relative;
  display: inline-block;
}

/* Animated underline under em */
.cta-heading em::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #f5c200;
  transform: scaleX(0);
  transform-origin: left;
  animation: ctaUnderline 0.8s cubic-bezier(0.16,1,0.3,1) 0.6s forwards;
}

@keyframes ctaUnderline {
  to { transform: scaleX(1); }
}

/* ── Sub-text ── */
.cta-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  color: rgba(250,250,246,0.55);
  max-width: 540px;
  margin: 0 auto 3rem;
}

/* ── Button group ── */
.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Primary yellow button */
.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0d0d0d;
  background: #f5c200;
  border: 2px solid #f5c200;
  border-radius: 100px;
  padding: 1rem 2.25rem;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease,
              box-shadow 0.25s ease;
  white-space: nowrap;
}

.cta-btn-primary svg {
  width: 16px; height: 16px;
  transition: transform 0.25s ease;
}

.cta-btn-primary:hover {
  background: transparent;
  color: #f5c200;
  box-shadow: 0 0 0 2px #f5c200 inset;
  transform: translateY(-2px);
}
.cta-btn-primary:hover svg { transform: translateX(4px); }

/* Secondary outline button */
.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(250,250,246,0.7);
  background: transparent;
  border: 2px solid rgba(250,250,246,0.2);
  border-radius: 100px;
  padding: 1rem 2.25rem;
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}

.cta-btn-secondary:hover {
  border-color: rgba(250,250,246,0.6);
  color: #fafaf6;
  transform: translateY(-2px);
}

/* ── Trust bar ── */
.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(250,250,246,0.07);
  flex-wrap: wrap;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(250,250,246,0.4);
}

.cta-trust-item svg {
  width: 1rem; height: 1rem;
  color: #f5c200;
  flex-shrink: 0;
}

/* Scroll reveal */
.cta-eyebrow,
.cta-heading,
.cta-sub,
.cta-buttons,
.cta-trust {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16,1,0.3,1);
}

.cta-heading  { transition-delay: 0.08s; }
.cta-sub      { transition-delay: 0.16s; }
.cta-buttons  { transition-delay: 0.24s; }
.cta-trust    { transition-delay: 0.34s; }

.cta-section.is-visible .cta-eyebrow,
.cta-section.is-visible .cta-heading,
.cta-section.is-visible .cta-sub,
.cta-section.is-visible .cta-buttons,
.cta-section.is-visible .cta-trust {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */

.site-footer {
  position: relative;
  z-index: 2;
  background: #0a0a0a;
  border-top: 1px solid rgba(250,250,246,0.08);
  color: #fafaf6;
}

/* Yellow accent top line */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, #f5c200 0%, rgba(245,194,0,0.3) 50%, transparent 100%);
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem clamp(1.5rem, 5vw, 4rem) 4rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
}

/* ── Brand col ── */
.footer-brand-logo {
  display: block;
  margin-bottom: 1.25rem;
}

.footer-brand-logo img { height: 28px; }

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(250,250,246,0.5);
  margin: 0 0 2rem;
  max-width: 260px;
}

/* Social icons */
.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1.5px solid rgba(250,250,246,0.15);
  color: rgba(250,250,246,0.5);
  text-decoration: none;
  transition: border-color 0.25s ease, color 0.25s ease,
              background 0.25s ease, transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
}

.footer-social-link svg { width: 0.95rem; height: 0.95rem; }

.footer-social-link:hover {
  border-color: #f5c200;
  color: #0d0d0d;
  background: #f5c200;
  transform: translateY(-3px);
}

/* ── Nav/link cols ── */
.footer-col-heading {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f5c200;
  margin: 0 0 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(250,250,246,0.55);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease, gap 0.2s ease;
  position: relative;
}

.footer-links a::before {
  content: '';
  width: 0;
  height: 1px;
  background: #f5c200;
  transition: width 0.3s ease;
  flex-shrink: 0;
}

.footer-links a:hover {
  color: #fafaf6;
  gap: 10px;
}

.footer-links a:hover::before { width: 12px; }

/* ── Contact col ── */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.footer-contact-item:last-child { margin-bottom: 0; }

.footer-contact-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  color: #f5c200;
  margin-top: 1px;
}

.footer-contact-icon svg { width: 100%; height: 100%; }

.footer-contact-text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(250,250,246,0.55);
}

.footer-contact-text a {
  color: rgba(250,250,246,0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-text a:hover { color: #f5c200; }

/* ── Bottom bar ── */
.footer-bottom {
  border-top: 1px solid rgba(250,250,246,0.07);
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(250,250,246,0.3);
}

.footer-copy a {
  color: rgba(245,194,0,0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-copy a:hover { color: #f5c200; }

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.8rem;
  color: rgba(250,250,246,0.3);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover { color: rgba(250,250,246,0.7); }

/* ── Responsive ── */
@media (max-width: 1000px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 4rem;
  }
}

@media (max-width: 600px) {
  .footer-main {
    grid-template-columns: 1fr;
    padding-top: 3.5rem;
    gap: 2.5rem;
  }

  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-btn-primary,
  .cta-btn-secondary { justify-content: center; }

  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}
