/* ── ACQUISITIONS PAGE STYLES ── */

/* ── NAV (same pattern as service-area.css / pricing.css) ── */
.pricing-nav {
  background: var(--midnight);
  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pricing-nav-inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.01em;
}

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

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-link:hover { color: rgba(255,255,255,0.9); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 20px;
  background: var(--aqua);
  color: var(--midnight);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.15s, box-shadow 0.15s;
}
.nav-cta:hover { background: #00c4e8; }

/* ── HERO ── */
.acq-hero {
  background: var(--midnight);
  color: #fff;
  padding: 100px 40px 80px;
  position: relative;
  overflow: hidden;
}

.acq-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 80% 20%, rgba(0, 216, 255, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 90%, rgba(0, 216, 255, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.acq-hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.acq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 216, 255, 0.1);
  border: 1px solid rgba(0, 216, 255, 0.2);
  border-radius: 4px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 28px;
}

.acq-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(42px, 6.5vw, 88px);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  max-width: 720px;
  margin-bottom: 28px;
}

.acq-headline em {
  font-style: italic;
  color: var(--aqua);
}

.acq-lede {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 540px;
  line-height: 1.7;
}

/* ── WHY BLUESWEEP ── */
.acq-why {
  background: #F5F0E8;
  padding: 80px 40px;
}

.acq-why-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.acq-why-heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 300;
  color: var(--midnight);
  margin-bottom: 48px;
  text-align: center;
}

.acq-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.acq-why-card {
  background: #fff;
  border: 1px solid #E8E2D9;
  border-radius: 8px;
  padding: 32px 28px;
}

.acq-why-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 216, 255, 0.08);
  border: 1px solid rgba(0, 216, 255, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aqua);
  margin-bottom: 20px;
}

.acq-why-card-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--midnight);
  margin-bottom: 10px;
}

.acq-why-card-body {
  font-size: 14px;
  color: #6B6560;
  line-height: 1.65;
  margin: 0;
}

/* ── FAQ ── */
.acq-faq {
  background: #fff;
  padding: 80px 40px;
}

.acq-faq-inner {
  max-width: 720px;
  margin: 0 auto;
}

.acq-faq-heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 300;
  color: var(--midnight);
  margin-bottom: 40px;
}

.acq-faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.acq-faq-item {
  border: 1px solid #E8E2D9;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 8px;
}

.acq-faq-item[open] {
  border-color: rgba(0, 216, 255, 0.25);
}

.acq-faq-q {
  font-size: 16px;
  font-weight: 600;
  color: var(--midnight);
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.acq-faq-q::-webkit-details-marker { display: none; }

.acq-faq-q::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--aqua);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s;
}

.acq-faq-item[open] .acq-faq-q::after {
  content: '−';
}

.acq-faq-a {
  font-size: 15px;
  color: #5A5450;
  line-height: 1.7;
  margin: 0;
  padding: 0 24px 20px;
}

/* ── FORM ── */
.acq-form-section {
  background: #F5F0E8;
  padding: 80px 40px;
}

.acq-form-inner {
  max-width: 560px;
  margin: 0 auto;
}

.acq-form-card {
  background: #fff;
  border: 1px solid #E8E2D9;
  border-radius: 8px;
  padding: 44px 40px;
}

.acq-form-heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--midnight);
  margin-bottom: 6px;
}

.acq-form-subhead {
  font-size: 14px;
  color: #6B6560;
  margin-bottom: 28px;
}

.acq-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.acq-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.acq-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--midnight);
  letter-spacing: 0.03em;
}

.acq-optional {
  font-weight: 400;
  color: #9A9490;
}

.acq-field input {
  height: 44px;
  padding: 0 14px;
  border: 1px solid #D8D2C9;
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
  color: var(--midnight);
  background: #FAFAF8;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.acq-field input:focus {
  outline: none;
  border-color: var(--aqua);
  box-shadow: 0 0 0 3px rgba(0, 216, 255, 0.12);
}

.acq-submit {
  margin-top: 8px;
  height: 50px;
  padding: 0 28px;
  background: var(--aqua);
  color: var(--midnight);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, box-shadow 0.15s;
}

.acq-submit:hover {
  background: #00c4e8;
  box-shadow: 0 4px 16px rgba(0, 216, 255, 0.25);
}

/* ── SUCCESS STATE ── */
.acq-success {
  background: #fff;
  border: 1px solid #E8E2D9;
  border-radius: 8px;
  padding: 56px 40px;
  text-align: center;
}

.acq-success-icon {
  width: 64px;
  height: 64px;
  background: rgba(0, 216, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aqua);
  margin: 0 auto 24px;
}

.acq-success-heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--midnight);
  margin-bottom: 12px;
}

.acq-success-body {
  font-size: 16px;
  color: #6B6560;
  line-height: 1.65;
  max-width: 400px;
  margin: 0 auto;
}

/* ── ERROR BANNER (reuse existing class name from inquiry.css) ── */
.form-error-banner {
  background: #FFF0F0;
  border: 1px solid #FFCDD2;
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 14px;
  color: #B71C1C;
  margin-bottom: 20px;
}

/* ── FOOTER (reuse theme.css .footer classes) ── */

/* ── MOBILE ── */
@media (max-width: 768px) {
  .acq-hero {
    padding: 72px 24px 60px;
  }

  .acq-why {
    padding: 60px 24px;
  }

  .acq-why-grid {
    grid-template-columns: 1fr;
  }

  .acq-faq {
    padding: 60px 24px;
  }

  .acq-form-section {
    padding: 60px 24px;
  }

  .acq-form-card {
    padding: 32px 24px;
  }

  .acq-success {
    padding: 40px 24px;
  }

  .pricing-nav {
    padding: 0 20px;
  }
}
