 .cta-section {
    padding: 4rem 0;
    background-color: white;
  }
  .cta-outer-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  .cta-pill {
    background-color: var(--brand-primary, rgb(37, 99, 235));
    border-radius: 2rem;
    position: relative;
    overflow: hidden;
  }
  .cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    transform: skewY(-3deg);
    transform-origin: top left;
  }
  .cta-inner {
    position: relative;
    padding: 4rem 3rem;
  }
  @media(min-width: 768px) {
    .cta-inner {
      padding: 5rem 4rem;
    }
  }
  .cta-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
  }
  @media(min-width: 768px) {
    .cta-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  /* CTA Content */
  .cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  @media(min-width: 768px) {
    .cta-title {
      font-size: 2.5rem;
    }
  }
  @media(min-width: 1024px) {
    .cta-title {
      font-size: 3rem;
    }
  }
  .cta-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
  }
  @media(min-width: 768px) {
    .cta-subtitle {
      font-size: 1.25rem;
    }
  }
  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  @media(min-width: 640px) {
    .cta-buttons {
      flex-direction: row;
    }
  }
  .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.2s ease;
  }
  .cta-button--primary {
    background-color: white;
    color: var(--color-slate-900, #0f172a);
  }
  .cta-button--primary:hover {
    background-color: var(--color-slate-100, #f1f5f9);
  }
  .cta-button--primary:hover .cta-button-icon {
    transform: translateX(4px);
  }
  .cta-button-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.2s ease;
  }
  .cta-button-icon svg {
    width: 100%;
    height: 100%;
  }
  .cta-button--secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
  }
  .cta-button--secondary:hover {
    background-color: rgba(255, 255, 255, 0.3);
  }
  /* Contact Card */
  .contact-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  .contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    text-decoration: none;
    transition: opacity 0.2s ease;
  }
  .contact-item:hover {
    opacity: 0.8;
  }
  .contact-icon-wrapper {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .contact-icon-wrapper svg {
    width: 1.5rem;
    height: 1.5rem;
  }
  .contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
  }
  .contact-value {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: white;
  }
  /* Animation */
  @keyframes fade-in-up {
    from {
      opacity: 0;
      translate: 0 20px;
    }
    to {
      opacity: 1;
      translate: 0 0;
    }
  }
  .animate-fade-in-up {
    animation: fade-in-up 0.6s ease-out forwards;
    opacity: 0;
  }
  @media(prefers-reduced-motion: reduce) {
    .animate-fade-in-up {
      animation: none;
      opacity: 1;
      translate: none;
    }
  }