/*
Theme Name: AcquireForward
Description: Native WordPress theme for AcquireForward, rebuilt from the original design as plain HTML/CSS/PHP. No iframes, no external JS framework, real per-page URLs.
Author: AcquireForward
Version: 1.0
*/

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  color: #000000;
  background: #FFFFFF;
}

img { max-width: 100%; }

a { color: inherit; }

/* ---------- Header ---------- */

.af-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #F28500;
  border-bottom: 1px solid rgba(0,0,0,0.12);
  font-family: 'Inter', sans-serif;
}

.af-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 clamp(20px, 4vw, 32px);
  gap: 24px;
}

.af-logo { display: flex; align-items: center; text-decoration: none; }
.af-logo img { height: 30px; width: auto; display: block; }

.af-nav-row {
  display: flex;
  align-items: center;
  gap: 28px;
}

.af-nav-row a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
}

.af-header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.af-signin-link {
  display: flex;
  align-items: center;
  color: #000000;
  font-size: 14px;
  text-decoration: none;
}

.af-submit-btn {
  background: #007FFF;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
}

.af-menu-btn {
  display: none;
  align-items: center;
  background: transparent;
  border: none;
  padding: 6px;
  cursor: pointer;
}

.af-icon-close { display: none; }

.af-mobile-panel {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: #F28500;
  border-bottom: 1px solid rgba(0,0,0,0.12);
  flex-direction: column;
  padding: 20px clamp(20px, 4vw, 32px) 28px;
  gap: 18px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.af-mobile-panel a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  color: #000000;
}

.af-mobile-panel .af-signin-link { color: #000000; font-size: 15px; }

@media (max-width: 1149px) {
  .af-nav-row, .af-header-right .af-signin-link { display: none; }
  .af-menu-btn { display: flex; }
  body.af-menu-open .af-mobile-panel { display: flex; }
  body.af-menu-open .af-icon-menu { display: none; }
  body.af-menu-open .af-icon-close { display: block; }
}

/* ---------- Footer ---------- */

.af-footer {
  font-family: 'Inter', sans-serif;
  background: #007FFF;
  color: #FFFFFF;
}

.af-footer-bar { height: 3px; background: #F28500; }

.af-footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px clamp(20px, 4vw, 32px) clamp(20px, 4vw, 32px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
}

.af-footer-grid a { color: #FFFFFF; font-size: 15px; text-decoration: none; }

.af-footer-col { display: flex; flex-direction: column; gap: 12px; }

.af-footer-label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.3px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}

.af-footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px clamp(20px, 4vw, 32px) clamp(20px, 4vw, 32px);
  border-top: 1px solid rgba(255,255,255,0.25);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.af-footer-bottom a { color: rgba(255,255,255,0.75); font-size: 13px; }
.af-footer-bottom-links { display: flex; align-items: center; gap: 20px; }

/* ---------- Closing CTA ---------- */

.af-closing-cta {
  background: #000000;
  padding: 72px clamp(20px, 4vw, 32px);
  position: relative;
}

.af-closing-cta .af-footer-bar { position: absolute; top: 0; left: 0; right: 0; }

.af-closing-cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.af-closing-cta h2 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 36px);
  color: #FFFFFF;
  letter-spacing: -0.5px;
}

.af-closing-cta p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}

.af-btn-primary {
  background: #F28500;
  color: #000000;
  font-weight: 600;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.af-btn-primary:hover { opacity: 0.87; }

.af-btn-secondary-dark {
  border: 1px solid rgba(255,255,255,0.4);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  display: inline-block;
}
.af-btn-secondary-dark:hover { border-color: #FFFFFF; }

/* ---------- FAQ accordion (native <details>, no JS) ---------- */

.af-faq { display: flex; flex-direction: column; }

.af-faq details {
  border-bottom: 1px solid #D1D5DB;
}

.af-faq summary {
  list-style: none;
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  gap: 16px;
  font-family: inherit;
}

.af-faq summary::-webkit-details-marker { display: none; }

.af-faq summary .af-faq-q {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #000000;
}

.af-faq summary .af-faq-symbol {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #007FFF;
  flex-shrink: 0;
}

.af-faq summary .af-faq-symbol::before { content: '+'; }
.af-faq details[open] summary .af-faq-symbol::before { content: '\2212'; }

.af-faq p {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.6;
  color: #374151;
  max-width: 720px;
}

/* ---------- Forms ---------- */

.af-input {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid #D1D5DB;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
  color: #000000;
  background: #FFFFFF;
}
.af-input:focus { outline: none; border-color: #007FFF; }

.af-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.af-field { display: flex; flex-direction: column; gap: 6px; }
.af-field label { font-weight: 600; font-size: 14px; }

.af-success-panel {
  border: 1px solid #D1D5DB;
  border-radius: 6px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  max-width: 560px;
}

.af-success-icon {
  width: 44px;
  height: 44px;
  background: #000000;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Process tabs (Home page) ---------- */

.af-tab-toggle {
  display: inline-flex;
  gap: 6px;
  padding: 4px;
  background: #F3F4F6;
  border-radius: 6px;
  width: fit-content;
}

.af-tab-btn {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  background: transparent;
  color: #000000;
}

.af-tab-btn.is-active { background: #007FFF; color: #FFFFFF; }

.af-tab-panel { display: none; }
.af-tab-panel.is-active { display: grid; }

/* ---------- Misc shared ---------- */

.af-eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  color: #007FFF;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.af-image-slot {
  display: block;
  width: 100%;
  object-fit: cover;
}
