/* =========================================================================
   <FinalCTA /> — Website Design & Development §10
   Deepest navy frame. 720px centred. Breathing lime CTA + trust ticks.
   ========================================================================= */

.cwd-final {
  position: relative;
  background: var(--color-primary-dark);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cwd-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 50% 100%, rgba(232,180,0,0.16), transparent 70%),
    radial-gradient(700px 420px at 50% 0%, rgba(0,0,0,0.30), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.cwd-final__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 150px var(--container-pad);
  text-align: center;
}

.cwd-final__eyebrow {
  margin: 0 0 22px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.cwd-final__title {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 4.8vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #fff;
  text-wrap: balance;
}
.cwd-final__title em { font-style: normal; color: var(--color-accent); }

.cwd-final__sub {
  margin: 0 0 40px;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  text-wrap: pretty;
}

.cwd-final__cta-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cwd-final__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--color-accent);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  padding: 20px 32px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 28px -10px rgba(232,180,0,0.45);
  animation: cwd-final-glow 3.2s var(--ease-out-soft) infinite;
  transition:
    background 220ms var(--ease-out-soft),
    transform 220ms var(--ease-out-soft),
    box-shadow 220ms var(--ease-out-soft);
}
@keyframes cwd-final-glow {
  0%, 100% { box-shadow: 0 8px 28px -10px rgba(232,180,0,0.45); }
  50%      { box-shadow: 0 10px 40px -6px rgba(232,180,0,0.65); }
}
.cwd-final__cta:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow:
    0 16px 44px -10px rgba(232,180,0,0.55),
    0 0 0 1px rgba(232,180,0,0.40);
  animation: none;
}
.cwd-final__cta:active { transform: translateY(0) scale(0.99); }
.cwd-final__cta .arrow { transition: transform 200ms var(--ease-out-soft); display: inline-block; }
.cwd-final__cta:hover .arrow { transform: translateX(4px); }

.cwd-final__cta-sub {
  margin: 0;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.cwd-final__cta-sub strong {
  color: var(--color-accent);
  font-weight: 700;
  margin-right: 4px;
}

/* trust ticks */
.cwd-final__ticks {
  list-style: none;
  margin: 56px 0 0;
  padding: 32px 0 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  text-align: left;
}
.cwd-final__ticks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
}
.cwd-final__tick {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(232,180,0,0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.cwd-final__tick svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 720px) {
  .cwd-final__inner { padding: 108px 24px; }
  .cwd-final__ticks { grid-template-columns: 1fr; gap: 12px; }
}
@media (max-width: 540px) {
  .cwd-final__inner { padding: 88px 18px; }
  .cwd-final__cta { width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .cwd-final__cta { animation: none; }
  .cwd-final__cta:active { transform: none; }
}
