/************************************************************
 MEED CONTACT — 100K ENTERPRISE FUNNEL
 Uses global hero.css for hero
 This file ONLY styles contact content
*************************************************************/

/* =========================================================
   CONTACT SECTION WRAPPER
========================================================= */

.contact-funnel {
  background: #ffffff;
  padding: 90px 20px 120px;
}

/* Grid container */
.funnel-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: stretch;
}

/* =========================================================
   LEFT — CONTACT FORM CARD
========================================================= */

.funnel-left form {
  background: #ffffff;
  border-radius: 18px;
  padding: 48px 44px 42px;
  border: 1px solid #e4e8ef;
  box-shadow:
    0 18px 48px rgba(0,0,0,0.08),
    inset 0 0 0 1px rgba(255,255,255,0.6);
}

/* Form title */
.funnel-left h3 {
  font-size: 26px;
  font-weight: 800;
  color: #071A2F;
  margin-bottom: 26px;
}

/* Form groups */
.funnel-left .form-group {
  margin-bottom: 26px;
}

/* Labels */
.funnel-left label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #0b1a33;
  margin-bottom: 8px;
}

/* Inputs */
.funnel-left input,
.funnel-left textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border-radius: 10px;
  border: 1px solid #cfd6e1;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.funnel-left input:focus,
.funnel-left textarea:focus {
  border-color: #00B46E;
  box-shadow: 0 0 0 3px rgba(0,180,110,0.18);
  outline: none;
}

/* Textarea height */
.funnel-left textarea {
  min-height: 150px;
  resize: vertical;
}

/* Turnstile spacing */
.cf-turnstile {
  margin-top: 6px;
}

/* =========================================================
   SUBMIT BUTTON — ENTERPRISE CTA
========================================================= */

.funnel-left button.large-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 999px;
  border: none;
  background: linear-gradient(
    135deg,
    #00B46E,
    #009E5F
  );
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.funnel-left button.large-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,180,110,0.35);
}

.funnel-left button.large-btn:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

/* =========================================================
   RIGHT — COMMITMENT PANEL (TRUST BLOCK)
========================================================= */

.commitment-panel {
  background: linear-gradient(
    160deg,
    #0b1a33,
    #071A2F
  );
  border-radius: 18px;
  padding: 42px 38px 44px;
  color: #ffffff;
	box-shadow: 0 18px 40px rgba(2, 6, 23, 0.18),
    inset 0 0 0 1px rgba(255,255,255,0.05);
}

/* Panel heading */
.commitment-panel h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 22px;
  color: #ffffff;
}

/* Bullet list */
.commitment-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.commitment-panel li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.55;
  color: #e6edf4;
}

.commitment-panel li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #00B46E;
  font-size: 22px;
  line-height: 1;
}

/* =========================================================
   RESPONSIVE — TABLET & MOBILE
========================================================= */

@media (max-width: 980px) {
  .funnel-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .commitment-panel {
    order: -1; /* trust block first on mobile */
  }
}

@media (max-width: 600px) {
  .contact-funnel {
    padding: 70px 16px 100px;
  }

  .funnel-left form {
    padding: 38px 26px 34px;
  }

  .funnel-left h3 {
    font-size: 22px;
  }
}
/* =========================================================
   CONTACT PAGE — FINAL SPACING POLISH (100K)
========================================================= */


/* Reduce excessive top padding */
.contact-funnel {
  padding-top: 96px;
  padding-bottom: 96px;
}

/* Align visual weight of form + commitment panel */
.funnel-left form,
.commitment-panel {
  margin-top: 0;
}

/* Slightly reduce commitment panel visual float */
.commitment-panel {
  transform: translateY(6px);
}

/* Increase separation before footer */
.contact-funnel + footer,
.contact-funnel + .site-footer {
  margin-top: 60px;
}

/* Desktop tightening only */
@media (min-width: 1200px) {
  .contact-funnel {
    padding-top: 60px;
    padding-bottom: 120px;
  }
}
/* =========================================================
   CONTACT TRUST STRIP — EXECUTIVE SIGNAL
========================================================= */

.contact-trust-strip {
  background: #f7f9fc;
  border-bottom: 1px solid #e5e9f0;
  padding: 18px 20px;
}

.trust-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-inner span {
  font-size: 14px;
  font-weight: 600;
  color: #0b1a33;
  opacity: 0.85;
  white-space: nowrap;
}

/* Mobile */
@media (max-width: 768px) {
  .trust-inner {
    justify-content: center;
    gap: 12px 18px;
  }

  .trust-inner span {
    font-size: 13px;
  }
}
/* =========================================================
   COMMITMENT PANEL — TRUST EMPHASIS
========================================================= */

.commitment-panel {
  position: relative;
}

/* Subtle trust accent bar */
.commitment-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  opacity: 0.85;
  background: linear-gradient(90deg, #00B46E, #009E5F);
  border-radius: 18px 18px 0 0;
}

/* Bullet emphasis */
.commitment-panel li {
  font-weight: 500;
}
.form-trust-note {
  font-size: 13px;
  color: #5a6a7a;
  margin-top: 4px;
  margin-bottom: 12px;
}
/* =========================================================
   WHAT HAPPENS NEXT — EXECUTIVE FLOW
========================================================= */

.next-steps {
  background: #f7f9fc;
  padding: 90px 20px;
  border-top: 1px solid #e5e9f0;
}

.next-steps-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
}

/* Individual step */
.step {
  background: #ffffff;
  border-radius: 16px;
  padding: 42px 34px 38px;
  box-shadow: 0 12px 34px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.12);
}

/* Step number */
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00B46E, #009E5F);
  color: #ffffff;
  font-weight: 800;
  font-size: 18px;
}

/* Titles */
.step h4 {
  font-size: 18px;
  font-weight: 700;
  color: #071A2F;
  margin-bottom: 10px;
}

/* Copy */
.step p {
  font-size: 15px;
  color: #4a5a6a;
  line-height: 1.5;
}

/* Mobile */
@media (max-width: 900px) {
  .next-steps-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .next-steps {
    padding: 70px 16px;
  }
}
/* =========================================================
   PRIMARY SCHEDULER CTA — BELOW HERO
========================================================= */

.contact-primary-cta {
  background: #f7f9fc;
  border-bottom: 1px solid #e5e9f0;
  padding: 48px 20px;
}

.contact-primary-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contact-primary-inner p {
  font-size: 18px;
  font-weight: 600;
  color: #071A2F;
  margin: 0;
}

/* Primary scheduler button */
.primary-schedule-btn {
  padding: 14px 34px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 999px;
  background: linear-gradient(135deg, #00B46E, #009E5F);
  color: #ffffff;
  transition: all 0.2s ease;
}

.primary-schedule-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0,180,110,0.35);
}

/* Mobile */
@media (max-width: 768px) {
  .contact-primary-inner {
    flex-direction: column;
    text-align: center;
  }
}
/* ===============================
   MERGED HERO TRANSITION STRIP
================================ */

.contact-primary-cta {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f7f9fc 100%
  );
  border-bottom: none;
  padding: 64px 20px 42px;
}

.contact-primary-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
}

.contact-primary-inner p {
  font-size: 20px;
  font-weight: 500;
  color: #071A2F;
  letter-spacing: -0.2px;
}
.primary-schedule-btn {
  background: #00B46E;
  font-size: 15px;
  padding: 12px 28px;
  box-shadow: none;
}

.primary-schedule-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0,180,110,0.25);
}
.contact-trust-strip {
  background: transparent;
  border-bottom: 1px solid #e6ebf2;
  padding: 26px 20px 34px;
}

.trust-inner {
  justify-content: space-around;
}

.trust-inner span {
  font-size: 14px;
  font-weight: 600;
  color: #071A2F;
  opacity: 0.7;
  letter-spacing: 0.2px;
}
.funnel-left form {
  box-shadow:
    0 10px 30px rgba(0,0,0,0.06);
  border-radius: 14px;
}
.funnel-left h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.2px;
}
.commitment-panel {
  padding: 48px 44px 52px;
}

.commitment-panel h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.3px;
}
.commitment-panel li {
  font-size: 15px;
  opacity: 0.9;
}
.step {
  box-shadow: none;
  border: 1px solid #e6ebf2;
}

.step:hover {
  transform: none;
  box-shadow: none;
}
.step-number {
  background: #071A2F;
}
.contact-primary-inner p {
  font-size: 19px;
  font-weight: 600;
  color: #071A2F;
  letter-spacing: -0.15px;
}

.primary-schedule-btn {
  padding: 12px 26px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: none;
}

.primary-schedule-btn:hover {
  transform: translateY(-1px);
}
.trust-inner {
  justify-content: space-between;
  max-width: 1040px;
}
.trust-inner span {
  text-transform: uppercase;
  font-size: 12.5px;
  letter-spacing: 0.8px;
}
.contact-funnel + .next-steps {
  margin-top: -30px;
}
.commitment-panel li {
font-size: 15px;
opacity: 0.9;
}/* Scheduler supporting line */

.scheduler-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.scheduler-note {
  font-size: 13.5px;
  color: #5f6f82;
  font-weight: 500;
}
.step-number {
  background: #071A2F;
}
@media (min-width: 1024px) {
  .contact-funnel + .next-steps {
    margin-top: -20px;
  }
}
/* =========================================================
   PARTNER-LED ASSURANCE — FOOTER-ADJACENT
========================================================= */

.partner-led-assurance {
  background: #f7f9fc;
  border-top: 1px solid #e6ebf2;
  padding: 28px 20px 30px;
}

.partner-led-assurance p {
  max-width: 1180px;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 600;
  color: #071A2F;
  opacity: 0.75;
  letter-spacing: 0.3px;
  text-align: center;
}
/* =========================================================
   FORM STATUS MODAL — FIX (OVERLAY + Z-INDEX + BUTTON STYLE)
   Ensures success/fail modal actually pops on screen
========================================================= */

.status-modal {
  position: fixed;
  inset: 0;
  display: none; /* shown via JS */
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(6, 27, 51, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 99999;
}

.status-modal-box {
  width: min(560px, 100%);
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e6ebf2;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  padding: 28px 26px 22px;
  text-align: center;
}

.status-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  color: #0b8043; /* default success */
}

.status-modal.success .status-icon {
  color: #0b8043;
}

.status-modal.error .status-icon {
  color: #b42318;
}

#statusTitle {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 800;
  color: #071A2F;
  letter-spacing: -0.2px;
}

#statusMessage {
  margin: 0 auto 18px;
  font-size: 15.5px;
  line-height: 1.55;
  color: #4a5a6a;
  max-width: 44ch;
}

/* Modal close button (your .large-btn styles were scoped to funnel-left) */
.status-modal .large-btn {
  display: inline-block;
  padding: 12px 26px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #00B46E, #009E5F);
  color: #ffffff;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.status-modal .large-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 180, 110, 0.28);
}

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .status-modal .large-btn,
  .status-modal .large-btn:hover {
    transition: none;
    transform: none;
  }
}
.field-error {
  display: none;
  margin-top: 6px;
  font-size: 13px;
  color: #b42318;
  font-weight: 500;
  line-height: 1.4;
}

.field-error.visible {
  display: block;
}

/* Input error state */
.funnel-left input.input-error,
.funnel-left textarea.input-error {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.funnel-left input.input-error:focus,
.funnel-left textarea.input-error:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.22);
}

/* Label hint (e.g. "First & Last") */
.label-hint {
  font-weight: 400;
  font-size: 13px;
  color: #7a8a9a;
  margin-left: 2px;
}
/* Smooth hero-to-CTA transition */
.page-hero {
  padding-bottom: 120px;
}

.contact-primary-cta {
  padding-top: 88px;
  padding-bottom: 88px;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0) 0%,
    #ffffff 40%
  );
}
.contact-primary-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr auto;
  align-items: center;
  gap: 48px;
}

.scheduler-copy p:first-child {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
}

.scheduler-qualifier {
  margin-top: 6px;
  font-size: 15px;
  color: #475569;
}

.primary-schedule-btn {
  padding: 16px 28px;
  font-size: 16px;
}
.contact-trust-strip {
  padding: 28px 24px;
  background: #f8fafc;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.contact-trust-strip span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #334155;
}
.page-hero h1 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero p {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.funnel-left,
.commitment-panel {
  border-radius: 16px;
}
.next-steps {
  padding-top: 104px;
  padding-bottom: 104px;
  background: #f8fafc;
}

.next-steps .step {
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.step-number {
  background: #0f172a;
  color: #ffffff;
}
.partner-led-assurance {
  padding-top: 48px;
  padding-bottom: 72px;
  font-size: 15px;
  color: #475569;
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
/* =========================================================
   CONTACT PAGE — FINAL VISUAL POLISH (ENTERPRISE FIX)
   Purpose: restore hierarchy, spacing, and balance
========================================================= */

/* ---------------------------
   HERO → CTA RELATIONSHIP
---------------------------- */

/* Reduce aggressive pull-up */
.contact-primary-cta {
  padding-top: 72px;
  padding-bottom: 72px;
}

/* Keep hero authoritative */
.page-hero {
  padding-bottom: 140px;
}

/* ---------------------------
   TRUST STRIP RE-ANCHOR
---------------------------- */

.contact-trust-strip {
  margin-top: 12px;
  padding-top: 32px;
  padding-bottom: 32px;
  background: #f8fafc;
}

/* Prevent it from feeling like nav */
.trust-inner {
  max-width: 1040px;
}

/* ---------------------------
   FORM + COMMITMENT ALIGNMENT
---------------------------- */

/* Remove artificial vertical offset */
.commitment-panel {
  transform: none;
}

/* Equalize perceived weight */
.funnel-left form,
.commitment-panel {
  min-height: 100%;
}

/* ---------------------------
   FUNNEL SECTION RHYTHM
---------------------------- */

.contact-funnel {
  padding-top: 88px;
  padding-bottom: 112px;
}

/* ---------------------------
   NEXT STEPS SPACING
---------------------------- */

.contact-funnel + .next-steps {
  margin-top: 0;
}

.next-steps {
  padding-top: 96px;
  padding-bottom: 96px;
}

/* ---------------------------
   MOBILE SAFETY
---------------------------- */

@media (max-width: 768px) {
  .contact-primary-cta {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .page-hero {
    padding-bottom: 120px;
  }
}
/* =========================================================
   CONTACT PAGE — FINAL, AUTHORITATIVE SPACING
   Single source of truth (do not duplicate)
========================================================= */

/* Hero accounts for fixed header */
.page-hero {
  margin-top: 96px; /* header height */
  padding-bottom: 120px;
}

/* Primary CTA sits naturally below hero */
.contact-primary-cta {
  margin-top: 0;
  padding: 64px 20px 48px;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f7f9fc 100%
  );
}

/* Subtle divider between CTA and trust strip */
.contact-primary-cta::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 88%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(15, 23, 42, 0.12),
    transparent
  );
}
/* =========================================================
   CONTACT PAGE — FINAL POLISH (V28)
   Paste at very bottom of contact.css
========================================================= */

/* --- CTA block: tighten vertical rhythm --- */
.contact-primary-cta {
  padding-top: 52px;
  padding-bottom: 40px;
}

.contact-primary-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 36px;
}

/* Slightly increase CTA copy weight for hierarchy */
.scheduler-copy p:first-child {
  font-weight: 700;
  color: #0f172a;
}

/* --- Trust strip: increase contrast + reduce "washed out" look --- */
.contact-trust-strip {
  background: #f8fafc;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.contact-trust-strip span {
  color: #334155;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* --- Funnel: balance form vs commitment visual weight --- */
.funnel-left form {
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.commitment-panel {
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.16);
}

/* Slightly reduce the dark panel dominance */
.commitment-panel h3 {
  font-size: 18px;
}

.commitment-panel ul li {
  opacity: 0.92;
}

/* --- Next steps: match depth/finish of funnel cards --- */
.next-steps .step {
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

/* Slightly tighten spacing above footer so page "lands" better */
.partner-led-assurance {
  padding-top: 44px;
  padding-bottom: 64px;
  color: #475569;
}

/* --- Mobile sanity --- */
@media (max-width: 768px) {
  .contact-primary-cta {
    padding-top: 44px;
    padding-bottom: 36px;
  }
}
.contact-primary-cta {
  padding-top: 52px;
  padding-bottom: 40px;
}
/* =========================================================
   CONTACT FORM — PREMIUM SUCCESS BANNER
========================================================= */

.contact-success-banner {
  display: none;
  margin-bottom: 24px;
  padding: 16px 20px;
  border-radius: 10px;
  background: linear-gradient(
    90deg,
    #ecfdf5,
    #f0fdf4
  );
  border: 1px solid #a7f3d0;
  color: #065f46;
  font-size: 15px;
}

.contact-success-banner strong {
  font-weight: 700;
  margin-right: 6px;
}

.contact-success-banner span {
  font-size: 13px;
  color: #047857;
}
.contact-success-banner,
.contact-error-banner{
  margin: 14px 0 18px;
  padding: 14px 14px;
  border-radius: 12px;
  border: 1px solid rgba(7,26,47,0.12);
  background: rgba(7,26,47,0.04);
}

.contact-success-title{
  font-weight: 800;
  color: rgba(7,26,47,0.92);
  margin-bottom: 6px;
}

.contact-success-meta{
  font-size: 13.5px;
  color: rgba(7,26,47,0.72);
}

.contact-error-banner{
  border-color: rgba(180, 35, 35, 0.25);
  background: rgba(180, 35, 35, 0.06);
}

.contact-error-title{
  font-weight: 800;
  color: rgba(140, 20, 20, 0.92);
  margin-bottom: 6px;
}

.contact-error-meta{
  font-size: 13.5px;
  color: rgba(120, 20, 20, 0.78);
}
