/* ==========================================================================
   Final Call-to-Action - Ultra-Luxury Corporate Reveal Stage (Grand Finale)
   Apple / Awwwards / Stripe Warm Ivory Light Aesthetic (#FBF8F4)
   ========================================================================== */

:root {
  --fcta-bg: #FBF8F4;
  --fcta-white: #FFFFFF;
  --fcta-dark-text: #111827;
  --fcta-muted-text: #6B7280;
  --fcta-orange: #DF643B;
  --fcta-orange-glow: rgba(223, 100, 59, 0.25);
  --fcta-gold: #D4A139;
  --fcta-gold-light: #F5D47A;
  --fcta-gold-glow: rgba(212, 161, 57, 0.3);
  --fcta-border-glass: rgba(212, 161, 57, 0.25);
  --fcta-shadow-soft: 0 15px 35px rgba(0, 0, 0, 0.05);
  --fcta-font-heading: 'Syne', 'Outfit', 'Inter', -apple-system, sans-serif;
  --fcta-font-body: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
}

.fcta-section {
  position: relative;
  background-color: var(--fcta-bg);
  color: var(--fcta-dark-text);
  padding: 140px 0 160px;
  overflow: hidden;
  font-family: var(--fcta-font-body);
}

/* Shifting Background Radial Aura & Waves */
.fcta-radial-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 950px;
  height: 950px;
  background: radial-gradient(circle, rgba(212, 161, 57, 0.08) 0%, rgba(223, 100, 59, 0.05) 45%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  animation: fctaAuraShift 10s ease-in-out infinite alternate;
}

@keyframes fctaAuraShift {
  0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.7; }
  100% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.fcta-particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.8;
}

.fcta-bg-wave {
  position: absolute;
  top: 15%;
  left: 0;
  width: 100%;
  height: 500px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* Container */
.fcta-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Header Section */
.fcta-header {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 90px;
}

.fcta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  border-radius: 999px;
  background: var(--fcta-white);
  border: 1px solid var(--fcta-border-glass);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  color: var(--fcta-orange);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 26px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fcta-badge.fcta-visible {
  opacity: 1;
  transform: translateY(0);
}

.fcta-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fcta-gold);
  box-shadow: 0 0 10px var(--fcta-gold);
  animation: fctaDotPing 2s infinite;
}

@keyframes fctaDotPing {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.4; }
}

.fcta-title {
  font-family: var(--fcta-font-heading);
  font-size: clamp(2.4rem, 4.8vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fcta-dark-text);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fcta-title.fcta-visible {
  opacity: 1;
  transform: translateY(0);
}

.fcta-highlight {
  background: linear-gradient(135deg, var(--fcta-orange) 0%, var(--fcta-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fcta-description {
  font-size: 1.18rem;
  line-height: 1.8;
  color: var(--fcta-muted-text);
  max-width: 820px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.fcta-description.fcta-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Split Grid: Left Stage Visual & Right Action Items
   ========================================================================== */

.fcta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 90px;
}

/* Left Stage Visual */
.fcta-stage-wrapper {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Soft Spotlight Beams */
.fcta-spotlight {
  position: absolute;
  top: -40px;
  width: 140px;
  height: 320px;
  pointer-events: none;
  filter: blur(35px);
  opacity: 0.35;
}

.fcta-spotlight-left {
  left: 20%;
  background: linear-gradient(180deg, var(--fcta-orange) 0%, transparent 100%);
  transform: rotate(-15deg);
}

.fcta-spotlight-right {
  right: 20%;
  background: linear-gradient(180deg, var(--fcta-gold) 0%, transparent 100%);
  transform: rotate(15deg);
}

/* Flowing Light Ribbon SVG */
.fcta-ribbon-svg {
  width: 440px;
  height: 300px;
  z-index: 3;
  position: relative;
  filter: drop-shadow(0 0 20px rgba(212, 161, 57, 0.3));
  animation: fctaRibbonFloat 6s ease-in-out infinite alternate;
}

.fcta-ribbon-path {
  stroke: url(#fcta-ribbon-grad);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-dasharray: 600;
  stroke-dashoffset: 0;
  animation: fctaRibbonDraw 8s linear infinite alternate;
}

@keyframes fctaRibbonFloat {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes fctaRibbonDraw {
  0% { stroke-dashoffset: 600; }
  100% { stroke-dashoffset: 0; }
}

/* Circular Illuminated Platform Base */
.fcta-platform {
  position: absolute;
  bottom: 20px;
  width: 380px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fcta-platform-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212, 161, 57, 0.3);
  transform: rotateX(75deg);
}

.fcta-platform-ring-1 {
  width: 360px;
  height: 90px;
  border-color: rgba(212, 161, 57, 0.4);
  box-shadow: 0 0 25px rgba(212, 161, 57, 0.18);
  animation: fctaRingSpin 10s linear infinite;
}

.fcta-platform-ring-2 {
  width: 270px;
  height: 70px;
  border-color: rgba(223, 100, 59, 0.35);
  animation: fctaRingSpin 7s linear infinite reverse;
}

.fcta-platform-ring-3 {
  width: 180px;
  height: 50px;
  background: radial-gradient(ellipse, rgba(212, 161, 57, 0.25) 0%, transparent 70%);
}

@keyframes fctaRingSpin {
  0% { transform: rotateX(75deg) rotateZ(0deg); }
  100% { transform: rotateX(75deg) rotateZ(360deg); }
}

/* Right: 3 Vertical Floating Action Items */
.fcta-action-items {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-left: 24px;
}

.fcta-action-line {
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 52px;
  width: 2px;
  background: linear-gradient(180deg, var(--fcta-orange) 0%, var(--fcta-gold) 50%, rgba(212, 161, 57, 0.15) 100%);
  z-index: 1;
}

.fcta-action-item {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: transform 0.4s ease;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
}

.fcta-action-item.fcta-visible {
  opacity: 1;
  transform: translateY(0);
}

.fcta-action-item:hover {
  transform: translateX(8px);
}

.fcta-action-icon-wrap {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 50%;
  background: var(--fcta-white);
  border: 1.5px solid var(--fcta-border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--fcta-shadow-soft);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.fcta-action-item:hover .fcta-action-icon-wrap {
  border-color: var(--fcta-gold);
  box-shadow: 0 10px 28px rgba(212, 161, 57, 0.25);
  transform: scale(1.1) rotate(5deg);
}

.fcta-action-svg {
  width: 26px;
  height: 26px;
  stroke: var(--fcta-orange);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease, transform 0.3s ease;
}

.fcta-action-item:hover .fcta-action-svg {
  stroke: var(--fcta-gold);
  transform: scale(1.1);
}

.fcta-action-title {
  font-family: var(--fcta-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fcta-dark-text);
  line-height: 1.35;
  transition: color 0.3s ease;
}

.fcta-action-item:hover .fcta-action-title {
  color: var(--fcta-orange);
}

/* ==========================================================================
   Bottom Floating Glass CTA Button (Magnetic / Sweep / Liquid Glow)
   ========================================================================== */

.fcta-btn-wrapper {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fcta-btn-wrapper.fcta-visible {
  opacity: 1;
  transform: translateY(0);
}

.fcta-btn-magnetic {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 22px 52px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--fcta-orange) 0%, var(--fcta-gold) 100%);
  color: #FFFFFF;
  font-family: var(--fcta-font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(223, 100, 59, 0.35), 0 0 30px rgba(212, 161, 57, 0.25);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  cursor: pointer;
}

.fcta-btn-magnetic:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 25px 60px rgba(223, 100, 59, 0.5), 0 0 45px rgba(212, 161, 57, 0.4);
  color: #FFFFFF;
  text-decoration: none;
}

.fcta-btn-sweep {
  position: absolute;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transform: skewX(-25deg);
  transition: left 0.75s ease;
}

.fcta-btn-magnetic:hover .fcta-btn-sweep {
  left: 140%;
}

.fcta-arrow-icon {
  width: 22px;
  height: 22px;
  stroke: #FFFFFF;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

.fcta-btn-magnetic:hover .fcta-arrow-icon {
  transform: translateX(6px);
}

/* Responsive Adaptations */
@media (max-width: 991px) {
  .fcta-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .fcta-action-items {
    padding-left: 0;
  }

  .fcta-action-line {
    left: 28px;
  }

  .fcta-btn-magnetic {
    width: 100%;
    justify-content: center;
    padding: 18px 32px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .fcta-section {
    padding: 90px 0 100px;
  }

  .fcta-action-title {
    font-size: 1.1rem;
  }
}
