/* ==========================================================================
   AFTERPATH — MAIN STYLESHEET
   Imports the Webflow-generated CSS for page sections, then adds
   navigation, footer, modal, and mobile menu styles.
   ========================================================================== */

@import url('./webflow.css');

/* --------------------------------------------------------------------------
   1. GLOBAL OVERRIDES
   -------------------------------------------------------------------------- */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  color: #51545e;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.is-modal-open {
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   2. NAVIGATION
   -------------------------------------------------------------------------- */
.ap-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(17, 17, 29, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  will-change: transform;
  transition: transform 0.35s cubic-bezier(.22, 1, .36, 1);
}

.ap-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ap-nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ap-logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  filter: drop-shadow(0 0 6px rgba(78,70,156,0.4)) drop-shadow(0 0 12px rgba(78,70,156,0.2));
}

.ap-logo-wordmark {
  display: inline-flex;
  align-items: center;
}
.ap-logo-wordmark-img {
  display: block;
  height: 24px;
  width: auto;
}

.ap-logo-icon--footer {
  filter: drop-shadow(0 0 4px rgba(78,70,156,0.3)) drop-shadow(0 0 8px rgba(78,70,156,0.15));
}

.ap-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.ap-nav-link {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #8b8d97;
  text-decoration: none;
  transition: color 0.2s;
}

.ap-nav-link:hover {
  color: #ffffff;
}

.ap-nav-cta {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  background: #11111d;
  padding: 10px 24px;
  border-radius: 80px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

/* Nav dropdowns */
.ap-nav-dropdown {
  position: relative;
}

.ap-nav-dropdown-toggle {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #8b8d97;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}

.ap-nav-dropdown-toggle:hover {
  color: #ffffff;
}

.ap-nav-arrow {
  font-size: 10px;
  margin-left: 2px;
  display: inline-block;
  transition: transform 0.25s ease;
}

/* Dropdown panel — animated reveal */
.ap-nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  margin-top: 12px;
  background: rgba(22, 22, 38, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 12px 0;
  min-width: 240px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(78,205,196,0.06);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

/* Invisible hover bridge — fills the gap between toggle and dropdown */
.ap-nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -10px;
  right: -10px;
  height: 24px;
}

.ap-nav-dropdown:hover .ap-nav-dropdown-menu,
.ap-nav-dropdown.is-touch-open .ap-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.ap-nav-dropdown:hover .ap-nav-arrow,
.ap-nav-dropdown.is-touch-open .ap-nav-arrow {
  transform: rotate(180deg);
}

/* Dropdown items */
.ap-nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #8b8d97;
  text-decoration: none;
  padding: 10px 20px;
  transition: color 0.2s, background 0.2s, padding-left 0.2s;
}

.ap-nav-dropdown-item:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  padding-left: 24px;
}

/* Inline icon for feature items */
.ap-nav-dropdown-icon {
  color: #4ecdc4;
  font-size: 12px;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.ap-nav-dropdown-item:hover .ap-nav-dropdown-icon {
  opacity: 1;
}

/* Section labels inside dropdown */
.ap-nav-dropdown-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #4ecdc4;
  padding: 10px 20px 6px;
  margin-top: 4px;
}

.ap-nav-dropdown-label:first-child {
  margin-top: 0;
  padding-top: 4px;
}

/* Wide dropdown (Solutions) — two columns */
.ap-nav-dropdown-wide {
  min-width: 400px;
  padding: 16px 0 0;
}

.ap-nav-dropdown-cols {
  display: flex;
  gap: 0;
}

.ap-nav-dropdown-col {
  flex: 1;
  min-width: 0;
}

.ap-nav-dropdown-col + .ap-nav-dropdown-col {
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

/* Featured link at bottom of dropdown */
.ap-nav-dropdown-featured {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #4ecdc4;
  text-decoration: none;
  padding: 12px 20px;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s, color 0.2s;
}

.ap-nav-dropdown-featured:hover {
  background: rgba(78, 205, 196, 0.08);
  color: #5fd6ce;
}

.ap-nav-dropdown-featured span {
  transition: transform 0.2s;
}

.ap-nav-dropdown-featured:hover span {
  transform: translateX(3px);
}

/* Mobile section labels */
.ap-mobile-section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #4ecdc4;
  padding: 12px 0 4px;
  margin-top: 8px;
}

.ap-mobile-section-label:first-child {
  margin-top: 0;
}

/* Mobile featured link */
.ap-mobile-featured {
  color: #4ecdc4 !important;
  font-weight: 500 !important;
}

.ap-nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.ap-nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.ap-nav-mobile-toggle.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.ap-nav-mobile-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.ap-nav-mobile-toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.ap-mobile-menu {
  display: none;
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(17, 17, 29, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

.ap-mobile-menu.is-open {
  display: flex;
}

.ap-mobile-menu-link {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  padding: 14px 0;
  transition: color 0.2s;
}

.ap-mobile-menu-link:hover {
  color: #4ecdc4;
}

/* Add padding for fixed nav */
main {
  padding-top: 65px;
}

/* --------------------------------------------------------------------------
   3. LEGACY LAYOUT HELPERS
   -------------------------------------------------------------------------- */
.section_reserve {
  padding-bottom: 80px !important;
}

.page-wrapper + .ap-footer,
main > *:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   4. MODAL
   -------------------------------------------------------------------------- */
.ap-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.ap-modal.is-visible {
  display: flex;
}

.ap-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(17, 17, 29, 0.7);
  backdrop-filter: blur(4px);
}

.ap-modal-content {
  position: relative;
  background: #11111d;
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 480px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  color: #ffffff;
}

.ap-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.ap-modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.ap-modal-title {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 28px;
}

/* Form styles inside modal */
.ap-form-group {
  margin-bottom: 20px;
}

.ap-form-label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #8b8d97;
  margin-bottom: 8px;
}

.ap-form-input,
.ap-form-select {
  width: 100%;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 16px;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s;
}

.ap-form-input:focus,
.ap-form-select:focus {
  border-color: #4ecdc4;
}

.ap-form-input::placeholder {
  color: #51545e;
}

.ap-form-select {
  appearance: none;
  cursor: pointer;
}

.ap-form-select option {
  background: #11111d;
  color: #ffffff;
}

.ap-form-submit {
  width: 100%;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  background: #11111d;
  padding: 14px 32px;
  border-radius: 80px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.ap-modal-success {
  text-align: center;
}

.ap-modal-success h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #4ecdc4;
  margin: 0 0 12px;
}

.ap-modal-success p {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #8b8d97;
  margin: 0;
}

/* --------------------------------------------------------------------------
   5. STAR DECORATION (override Webflow)
   -------------------------------------------------------------------------- */
[data-star-decor] {
  will-change: transform, opacity, filter;
  transform: translate3d(0, 0, 0);
  transform-origin: center;
  pointer-events: none;
}

@media (max-width: 991px) {
  [data-star-decor] {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   5b. PRODUCT DEMO SHOWCASE
   -------------------------------------------------------------------------- */
.ap-demo-section {
  position: relative;
  background: #11111d;
  padding: 120px 24px 100px;
  overflow: hidden;
}

.ap-demo-section::before {
  display: none;
}

.ap-demo-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ap-demo-header {
  text-align: center;
  margin-bottom: 48px;
}

.ap-demo-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4ecdc4;
  margin: 0 0 16px;
}

.ap-demo-title {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 16px;
  letter-spacing: -0.3px;
}

.ap-demo-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: #8b8d97;
  margin: 0 auto;
  max-width: 600px;
  line-height: 1.6;
}

.ap-demo-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 24px 80px rgba(0, 0, 0, 0.5),
    0 0 120px rgba(78, 205, 196, 0.08);
}

.ap-demo-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #1a1a2e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ap-demo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.ap-demo-dot:nth-child(1) { background: #ff5f57; }
.ap-demo-dot:nth-child(2) { background: #febc2e; }
.ap-demo-dot:nth-child(3) { background: #28c840; }

.ap-demo-url {
  flex: 1;
  margin-left: 12px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: #51545e;
}

.ap-demo-iframe-wrap {
  position: relative;
  width: 100%;
  height: 680px;
  background: #F8F7F5;
}

.ap-demo-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.ap-demo-caption {
  text-align: center;
  margin-top: 32px;
}

.ap-demo-caption p {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #8b8d97;
  margin: 0;
}

.ap-demo-caption .ap-demo-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  background: #11111d;
  padding: 12px 28px;
  border-radius: 80px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.ap-demo-caption .ap-demo-cta-wrap {
  margin-top: 20px;
}

/* Estate ledger variant — darker iframe bg */
.ap-demo-iframe-wrap.dark-demo {
  background: #1a1a2e;
}

@media (max-width: 767px) {
  .ap-demo-section {
    padding: 60px 16px 80px;
  }

  .ap-demo-title {
    font-size: 28px;
  }

  .ap-demo-iframe-wrap {
    height: 480px;
  }

  .ap-demo-url {
    display: none;
  }
}

@media (max-width: 480px) {
  .ap-demo-iframe-wrap {
    height: 380px;
  }
}

/* --------------------------------------------------------------------------
   5c. DARK THEME — STEPS SECTION, SECTION_BOT, CTA ANIMATION
   -------------------------------------------------------------------------- */
.section_steps {
  background-color: #11111d !important;
}

.section_steps::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, #ffffff, #11111d);
  z-index: 1;
  pointer-events: none;
}

.steps_title {
  color: #ffffff !important;
}

.steps_text {
  color: #8b8d97 !important;
}

.item-steps_title {
  color: #ffffff !important;
}

.item-steps_text {
  color: #8b8d97 !important;
}

.item-steps-dot {
  background: rgba(78, 205, 196, 0.3) !important;
}

.item-steps_line {
  background: rgba(255, 255, 255, 0.08) !important;
}

.section_bot {
  background-color: #11111d !important;
  border-radius: 0 !important;
  height: 0 !important;
  overflow: hidden;
}

/* Rainbow gradient border wrappers — matches .fp-cta-btn-wrap from features.css */
@keyframes rainbow-spin {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.ap-nav-cta-wrap,
.ap-demo-cta-wrap,
.ap-form-submit-wrap {
  display: inline-block;
  background-image: linear-gradient(110deg, #ce4a5e, #7b6dce 25%, #43b9e6 50%, #49e8af 75%, #f29161);
  background-size: 200% 200%;
  animation: rainbow-spin 12s linear infinite;
  border-radius: 80px;
  padding: 2px;
  position: relative;
  transition: transform 0.4s;
}

.ap-form-submit-wrap {
  display: block;
  margin-top: 8px;
}

.ap-nav-cta-wrap::after,
.ap-demo-cta-wrap::after,
.ap-form-submit-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, #bf4e6e, #7b6dce 25%, #43b9e6 50%, #49e8af 75%, #d99c6a);
  filter: blur(40px);
  border-radius: 80px;
  z-index: -1;
  opacity: 0.5;
}

/* Hover — scale on wrapper */
.ap-nav-cta-wrap:hover,
.ap-demo-cta-wrap:hover,
.ap-form-submit-wrap:hover {
  transform: scale(1.05);
}

/* Steps section — mobile responsive */
@media (max-width: 991px) {
  .steps_list {
    flex-wrap: wrap;
    justify-content: center;
  }

  .item-steps {
    flex: 0 0 calc(50% - 20px);
    width: auto;
  }

  .item-steps_line,
  .item-steps-dot {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .item-steps {
    flex: 0 0 100%;
  }
}

/* --------------------------------------------------------------------------
   6. WEBFLOW OVERRIDES
   -------------------------------------------------------------------------- */
/* Fix image paths — replace CDN references with local */
.header {
  will-change: transform;
  transition: transform 0.35s cubic-bezier(.22, 1, .36, 1);
}

/* FAQ panel transition */
.item-faq_panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq_list .item-faq:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq_list .item-faq:first-child {
  padding-top: 0;
}

.item-faq_head.active .item-faq_icon {
  transform: rotate(180deg);
}

/* Steps dots */
.item-steps-dot.last::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  width: 120px;
  height: 20px;
  background-color: #11111d;
}

.item-steps-dot.first::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120px;
  width: 120px;
  height: 20px;
  background-color: #11111d;
}

/* Custom select field */
.select-field {
  display: none;
}

.reserve_selector option {
  background-color: #15151D;
  font-size: 14px;
}

.fs-selectcustom_link.w--current {
  background-color: rgba(242, 243, 248, 0.2);
  border: none;
}

.fs-selectcustom_link:focus {
  border: none;
}

/* --------------------------------------------------------------------------
   7. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
  .ap-nav-links {
    display: none;
  }

  .ap-nav-mobile-toggle {
    display: flex;
  }

  .ap-footer-links {
    flex-direction: column;
    gap: 16px;
  }

  .ap-nav-dropdown-menu {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }
}

/* --------------------------------------------------------------------------
   8. SIMPLE PAGE STYLES (privacy, terms, contact)
   -------------------------------------------------------------------------- */
.ap-simple-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  font-family: 'Outfit', sans-serif;
}

.ap-simple-page h1 {
  font-size: 40px;
  font-weight: 400;
  color: #11111d;
  margin: 0 0 32px;
  letter-spacing: -0.4px;
}

.ap-simple-page h2 {
  font-size: 24px;
  font-weight: 400;
  color: #11111d;
  margin: 40px 0 16px;
}

.ap-simple-page p {
  font-size: 16px;
  line-height: 1.7;
  color: #51545e;
  margin: 0 0 16px;
}

.ap-simple-page ul {
  font-size: 16px;
  line-height: 1.7;
  color: #51545e;
  padding-left: 28px;
  margin: 0 0 16px;
}

.ap-simple-page a {
  color: #4ecdc4;
  text-decoration: none;
}

.ap-simple-page a:hover {
  color: #3dbdb5;
}

/* --------------------------------------------------------------------------
   STICKY CTA BAR
   -------------------------------------------------------------------------- */
.ap-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(17, 17, 29, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(78, 205, 196, 0.2);
  padding: 12px 24px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(.22, 1, .36, 1);
}
.ap-sticky-cta.is-visible {
  transform: translateY(0);
}
.ap-sticky-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.ap-sticky-cta-text {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: #8b8d97;
  white-space: nowrap;
  flex-shrink: 0;
}
.ap-sticky-cta-text strong {
  color: #fff;
  font-weight: 500;
}
.ap-sticky-cta-text em {
  color: #4ecdc4;
  font-style: normal;
  font-weight: 500;
}
.ap-sticky-cta-form {
  display: flex;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.ap-sticky-cta-input {
  flex: 1;
  min-width: 0;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.ap-sticky-cta-input::placeholder {
  color: #8b8d97;
}
.ap-sticky-cta-input:focus {
  border-color: #4ecdc4;
}
.ap-sticky-cta-btn {
  padding: 10px 20px;
  background: #4ecdc4;
  color: #11111d;
  border: none;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.ap-sticky-cta-btn:hover {
  background: #5fd6ce;
}
.ap-sticky-cta-close {
  background: none;
  border: none;
  color: #8b8d97;
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ap-sticky-cta-close:hover {
  color: #fff;
}
@media (max-width: 767px) {
  .ap-sticky-cta-text { display: none; }
  .ap-sticky-cta-form { flex: 1; }
  .ap-sticky-cta-inner { gap: 8px; }
}

/* --------------------------------------------------------------------------
   HERO LAYOUT + SPACING
   -------------------------------------------------------------------------- */
.hero_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.hero_head {
  margin-bottom: 8px;
}

/* --------------------------------------------------------------------------
   HERO SCARCITY BADGE
   -------------------------------------------------------------------------- */
.ap-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 6px 14px;
  background: rgba(78, 205, 196, 0.08);
  border: 1px solid rgba(78, 205, 196, 0.2);
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: #4ecdc4;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.ap-hero-badge-dot {
  width: 6px;
  height: 6px;
  background: #4ecdc4;
  border-radius: 50%;
  animation: ap-dot-pulse 2.5s ease-in-out infinite;
}
@keyframes ap-dot-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* --------------------------------------------------------------------------
   HERO INLINE EMAIL CAPTURE
   -------------------------------------------------------------------------- */
.ap-hero-email {
  display: flex;
  gap: 8px;
  margin-top: 24px;
  max-width: 460px;
  width: 100%;
}
.ap-hero-email-input {
  flex: 1;
  min-width: 0;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ap-hero-email-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.ap-hero-email-input:focus {
  border-color: #4ecdc4;
  box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.15);
}
.ap-hero-email-btn {
  padding: 14px 28px;
  background: #4ecdc4;
  color: #11111d;
  border: none;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.ap-hero-email-btn:hover {
  background: #5fd6ce;
  transform: translateY(-1px);
}
.ap-hero-email-btn:active {
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   HERO SOCIAL PROOF (override Webflow's giant pill)
   -------------------------------------------------------------------------- */
.hero_reviews {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  height: auto !important;
  max-width: none !important;
  width: auto !important;
  padding: 0 !important;
  margin: 20px auto 0 !important;
  justify-content: center !important;
  gap: 10px;
  opacity: 0.65;
}
.hero_reviews-image {
  max-width: 130px !important;
  margin-right: 8px !important;
}
.hero_reviews-number {
  font-size: 15px !important;
  font-weight: 600;
  margin-right: 4px !important;
}
.hero_reviews-text {
  font-size: 12px !important;
  opacity: 0.8;
}

@media (max-width: 480px) {
  .ap-hero-email {
    flex-direction: column;
  }
  .ap-hero-email-btn {
    width: 100%;
  }
  .hero_reviews-image {
    max-width: 110px !important;
  }
}

/* --------------------------------------------------------------------------
   TRUST STRIP + STATS BAR
   -------------------------------------------------------------------------- */
.ap-trust-strip {
  background: #11111d;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 24px;
}
.ap-trust-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.ap-trust-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.ap-trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: #8b8d97;
  font-weight: 400;
}
.ap-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 32px;
}
.ap-stat {
  text-align: center;
}
.ap-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #4ecdc4;
  letter-spacing: -0.5px;
}
.ap-stat-label {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: #8b8d97;
  margin-top: 4px;
}
@media (max-width: 767px) {
  .ap-trust-badges { gap: 20px; }
  .ap-stats-bar { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .ap-trust-badges { flex-direction: column; align-items: center; gap: 12px; }
  .ap-stats-bar { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   VALUE PROP COMPARISON
   -------------------------------------------------------------------------- */
.ap-value-section {
  background: #f7f8fa;
  padding: 80px 24px;
}
.ap-value-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.ap-value-title {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: #11111d;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
}
.ap-value-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  color: #8b8d97;
  margin: 0 0 48px;
  font-weight: 300;
}
.ap-value-compare {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 20px;
  align-items: start;
}
.ap-value-card {
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: left;
  position: relative;
}
.ap-value-card--ap {
  border-color: #4ecdc4;
  box-shadow: 0 8px 32px rgba(78, 205, 196, 0.12);
}
.ap-value-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #4ecdc4;
  color: #11111d;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ap-value-card-label {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: #8b8d97;
  font-weight: 500;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ap-value-card-price {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: #11111d;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.ap-value-card-price span {
  font-size: 16px;
  color: #8b8d97;
  font-weight: 300;
}
.ap-value-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ap-value-card-list li {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: #51545e;
  padding: 8px 0;
  border-bottom: 1px solid #f7f8fa;
  padding-left: 20px;
  position: relative;
}
.ap-value-card-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #eef0f3;
  position: absolute;
  left: 0;
  top: 14px;
}
.ap-value-card--ap .ap-value-card-list li::before {
  background: #4ecdc4;
}
.ap-value-card--ap .ap-value-card-price {
  color: #4ecdc4;
}
.ap-value-card-savings {
  margin-top: 20px;
  padding: 12px;
  background: rgba(78, 205, 196, 0.08);
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: #4ecdc4;
  text-align: center;
}
.ap-value-card-savings strong {
  font-weight: 600;
}
@media (max-width: 767px) {
  .ap-value-compare { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .ap-value-title { font-size: 28px; }
}

/* --------------------------------------------------------------------------
   HOW AFTERPATH IS DIFFERENT
   -------------------------------------------------------------------------- */
.ap-diff-section {
  background: #11111d;
  padding: 80px 24px;
}
.ap-diff-inner {
  max-width: 900px;
  margin: 0 auto;
}
.ap-diff-title {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 40px;
  text-align: center;
  letter-spacing: -0.5px;
}
.ap-diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ap-diff-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 28px;
}
.ap-diff-vs {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #4ecdc4;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.ap-diff-card p {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: #8b8d97;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 767px) {
  .ap-diff-grid { grid-template-columns: 1fr; }
  .ap-diff-title { font-size: 28px; }
}

/* --------------------------------------------------------------------------
   PRODUCT FEATURE GRID
   -------------------------------------------------------------------------- */
.ap-features-grid-section {
  background: #f7f8fa;
  padding: 80px 24px;
}
.ap-features-grid-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.ap-features-grid-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4ecdc4;
  margin: 0 0 12px;
}
.ap-features-grid-title {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: #11111d;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
}
.ap-features-grid-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  color: #8b8d97;
  margin: 0 0 48px;
  font-weight: 300;
}
.ap-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}
.ap-feature-card {
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 12px;
  padding: 28px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: block;
}
.ap-feature-card:hover {
  border-color: rgba(78, 205, 196, 0.3);
  box-shadow: 0 4px 16px rgba(78, 205, 196, 0.08);
}
.ap-feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(78, 205, 196, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.ap-feature-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #11111d;
  margin: 0 0 8px;
}
.ap-feature-card p {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: #8b8d97;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 767px) {
  .ap-features-grid { grid-template-columns: 1fr 1fr; }
  .ap-features-grid-title { font-size: 28px; }
}
@media (max-width: 480px) {
  .ap-features-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   BLOG SURFACE SECTION
   -------------------------------------------------------------------------- */
.ap-blog-surface {
  background: #11111d;
  padding: 80px 24px;
}
.ap-blog-surface-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.ap-blog-surface-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4ecdc4;
  margin: 0 0 12px;
}
.ap-blog-surface-title {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 40px;
  letter-spacing: -0.5px;
}
.ap-blog-surface-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: left;
}
.ap-blog-surface-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 28px;
  text-decoration: none;
  display: block;
  transition: border-color 0.2s, background 0.2s;
}
.ap-blog-surface-card:hover {
  border-color: rgba(78, 205, 196, 0.3);
  background: rgba(255, 255, 255, 0.06);
}
.ap-blog-surface-cat {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #4ecdc4;
  margin-bottom: 8px;
  display: block;
}
.ap-blog-surface-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.3;
}
.ap-blog-surface-card p {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: #8b8d97;
  line-height: 1.5;
  margin: 0;
}
.ap-blog-surface-more {
  margin-top: 32px;
}
.ap-blog-surface-link {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: #4ecdc4;
  text-decoration: none;
  font-weight: 500;
}
.ap-blog-surface-link:hover {
  color: #5fd6ce;
}
@media (max-width: 767px) {
  .ap-blog-surface-grid { grid-template-columns: 1fr; }
  .ap-blog-surface-title { font-size: 28px; }
}

/* --------------------------------------------------------------------------
   BLOG INLINE CTA
   -------------------------------------------------------------------------- */
.ap-blog-inline-cta {
  background: linear-gradient(135deg, rgba(78, 205, 196, 0.08), rgba(78, 205, 196, 0.03));
  border: 1px solid rgba(78, 205, 196, 0.2);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
}
.ap-blog-inline-cta-text {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: #51545e;
  margin-bottom: 12px;
  line-height: 1.5;
}
.ap-blog-inline-cta-text strong {
  color: #11111d;
  font-weight: 600;
}
.ap-blog-inline-cta-form {
  display: flex;
  gap: 8px;
}
.ap-blog-inline-cta-input {
  flex: 1;
  min-width: 0;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 8px;
  color: #11111d;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.ap-blog-inline-cta-input:focus {
  border-color: #4ecdc4;
}
.ap-blog-inline-cta-btn {
  padding: 10px 20px;
  background: #4ecdc4;
  color: #11111d;
  border: none;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.ap-blog-inline-cta-btn:hover {
  background: #5fd6ce;
}
@media (max-width: 480px) {
  .ap-blog-inline-cta-form { flex-direction: column; }
}

/* --------------------------------------------------------------------------
   PRICING ANCHOR (feature + audience pages)
   -------------------------------------------------------------------------- */
.fp-pricing-anchor {
  background: #11111d;
  padding: 60px 24px;
  text-align: center;
}
.fp-pricing-inner {
  max-width: 600px;
  margin: 0 auto;
}
.fp-pricing-badge {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #4ecdc4;
  background: rgba(78, 205, 196, 0.1);
  border: 1px solid rgba(78, 205, 196, 0.25);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 20px;
}
.fp-pricing-title {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.3px;
}
.fp-pricing-text {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: #8b8d97;
  line-height: 1.6;
  margin: 0 0 28px;
  font-weight: 300;
}
.fp-pricing-cta {
  display: flex;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   SCROLL-TRIGGERED REVEAL ANIMATIONS
   -------------------------------------------------------------------------- */
.ap-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1);
}
.ap-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger children inside a reveal group */
.ap-reveal-group .ap-reveal-child {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(.22,1,.36,1), transform 0.5s cubic-bezier(.22,1,.36,1);
}
.ap-reveal-group.is-visible .ap-reveal-child {
  opacity: 1;
  transform: translateY(0);
}
.ap-reveal-group.is-visible .ap-reveal-child:nth-child(1) { transition-delay: 0s; }
.ap-reveal-group.is-visible .ap-reveal-child:nth-child(2) { transition-delay: 0.08s; }
.ap-reveal-group.is-visible .ap-reveal-child:nth-child(3) { transition-delay: 0.16s; }
.ap-reveal-group.is-visible .ap-reveal-child:nth-child(4) { transition-delay: 0.24s; }
.ap-reveal-group.is-visible .ap-reveal-child:nth-child(5) { transition-delay: 0.32s; }
.ap-reveal-group.is-visible .ap-reveal-child:nth-child(6) { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  .ap-reveal,
  .ap-reveal-group .ap-reveal-child {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   POST-SUBMIT "WHAT HAPPENS NEXT" FLOW
   -------------------------------------------------------------------------- */
.ap-post-submit {
  text-align: center;
  padding: 8px 0;
}
.ap-post-submit-check {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(78, 205, 196, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ap-post-submit-check svg {
  width: 24px;
  height: 24px;
}
.ap-post-submit h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
}
.ap-post-submit p {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: #8b8d97;
  margin: 0 0 20px;
  line-height: 1.5;
}
.ap-post-submit-steps {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.ap-post-submit-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  max-width: 140px;
}
.ap-post-submit-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #4ecdc4;
  color: #11111d;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ap-post-submit-label {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  color: #c0c2c8;
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   ENHANCED FOOTER
   -------------------------------------------------------------------------- */
.ap-footer {
  background: #0d0d15;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 64px 24px 32px;
  position: relative;
  overflow: hidden;
}
.ap-footer-stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.ap-footer-star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #fff;
  border-radius: 50%;
  animation: footerStarFloat linear infinite;
}
@keyframes footerStarFloat {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: var(--star-opacity, 0.6);
  }
  90% {
    opacity: var(--star-opacity, 0.6);
  }
  100% {
    transform: translateY(var(--star-drift, -60px)) scale(0.5);
    opacity: 0;
  }
}
.ap-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.ap-footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.ap-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.ap-footer-logo-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
}
.ap-footer-logo-shimmer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78,205,196,0.15) 0%, rgba(78,205,196,0.05) 40%, transparent 70%);
  animation: footerShimmer 4s ease-in-out infinite;
}
@keyframes footerShimmer {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.9); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}
.ap-footer-logo-wrap .ap-logo-icon--footer {
  position: relative;
  z-index: 1;
}
.ap-footer-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: #8b8d97;
  line-height: 1.6;
  margin: 0;
  max-width: 280px;
}
.ap-footer-col {
  text-align: left;
}
.ap-footer-col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  margin: 0 0 16px;
}
.ap-footer-col a {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: #8b8d97;
  text-decoration: none;
  padding: 12px 0;
  transition: color 0.2s;
}
.ap-footer-col a:hover {
  color: #4ecdc4;
}
.ap-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
  gap: 16px;
}
.ap-footer-copyright {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: #51545e;
  margin: 0;
}
.ap-footer-nc-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: #8b8d97;
}
.ap-footer-nc-badge svg {
  width: 16px;
  height: 16px;
}
.ap-footer-social {
  display: flex;
  gap: 12px;
}
.ap-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.2s;
}
.ap-footer-social a:hover {
  background: rgba(78, 205, 196, 0.15);
}
.ap-footer-social svg {
  width: 16px;
  height: 16px;
}
@media (max-width: 767px) {
  .ap-footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .ap-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .ap-footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .ap-post-submit-steps {
    flex-direction: column;
    align-items: center;
  }
}
