/*
  Never Miss Again — Florist Partner Pitch page styles.
  Goal: match the existing home page hero + navbar look, while keeping the rest of the page on a clean white background.
*/

:root{
  --brand-primary: #14614A;   /* Evergreen (lighter) */
  --brand-secondary: #1E293B; /* Charcoal (lighter) */
  --brand-accent: #2F7D64;    /* Bright evergreen accent */
  --bg-light: #F7F8F9;
  --text-dark: #111827;
  --text-light: #FFFFFF;

  --radius: 6px;
  --shadow-box: 1px 3px 20px 0px rgba(0,0,0,0.75);

  --fl-space-1: 8px;
  --fl-space-2: 12px;
  --fl-space-3: 16px;
  --fl-space-4: 24px;
  --fl-space-5: 40px;

  /* Bootstrap variable nudges */
  --bs-primary: var(--brand-primary);
  --bs-success: var(--brand-accent);
  --bs-body-color: var(--text-dark);
  --bs-body-bg: #ffffff;
}

body.florists{
  color: var(--text-dark);
  background: #ffffff;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  min-height: 100vh;
}

body.florists h1,
body.florists h2,
body.florists h3,
body.florists h4{
  color: var(--text-dark);
  font-weight: 700;
  letter-spacing: -0.015em;
}

body.florists a{ color: var(--brand-primary); text-decoration: none; }
body.florists a:hover{ color: color-mix(in srgb, var(--brand-primary), #000 12%); text-decoration: underline; }
.muted{ color: rgba(17, 24, 39, 0.70); }

/* Navbar (match home page) */
body.florists .navbar{
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(10px);
}
body.florists .navbar .nav-link,
body.florists .navbar .navbar-brand{
  color: var(--text-dark);
  font-weight: 600;
}
body.florists .navbar .nav-link:hover{ color: var(--brand-primary); }
body.florists .navbar .nav-link.active{
  color: var(--brand-primary);
  box-shadow: inset 0 -2px 0 0 color-mix(in srgb, var(--brand-accent), #000 6%);
}

/* Buttons (match home page) */
body.florists .btn{ border-radius: var(--radius); font-weight: 600; letter-spacing: 0.01em; }
body.florists .btn-primary{ background: var(--brand-primary); border-color: var(--brand-primary); }
body.florists a.btn-primary,
body.florists .btn.btn-primary{ color: var(--text-light); }
body.florists .btn-primary:hover{
  background: color-mix(in srgb, var(--brand-primary), #000 14%);
  border-color: color-mix(in srgb, var(--brand-primary), #000 14%);
}
body.florists a.btn-primary:hover,
body.florists .btn.btn-primary:hover{ color: var(--text-light); }
body.florists .btn-outline-secondary{ color: var(--text-dark); border-color: rgba(17, 24, 39, 0.22); }
body.florists .btn-outline-secondary:hover{
  color: var(--text-light);
  background: var(--brand-secondary);
  border-color: var(--brand-secondary);
}

/* Hero (match home page) */
body.florists .hero{
  background: linear-gradient(160deg,
    color-mix(in srgb, var(--brand-primary), #fff 10%) 0%,
    color-mix(in srgb, var(--brand-secondary), #fff 8%) 82%);
  padding: 96px 0 72px;
  color: var(--text-light);
}
body.florists .nm-hero{ padding: clamp(56px, 7vw, 96px) 0 clamp(48px, 6vw, 72px); }
body.florists .hero h1{ color: var(--text-light); font-size: clamp(2.1rem, 3.2vw, 3.1rem); }
body.florists .hero p.lead{ color: rgba(255, 255, 255, 0.86); }
body.florists .hero .muted{ color: rgba(255, 255, 255, 0.72); }
body.florists .hero .btn-primary{ background: var(--brand-accent); border-color: var(--brand-accent); }
body.florists .hero .btn-primary:hover{
  background: color-mix(in srgb, var(--brand-accent), #000 12%);
  border-color: color-mix(in srgb, var(--brand-accent), #000 12%);
}
body.florists .hero .btn-outline-secondary{ color: var(--text-light); border-color: rgba(255, 255, 255, 0.55); }
body.florists .hero .btn-outline-secondary:hover{
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--text-light);
}

body.florists .pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#ffffff;
  color: var(--text-dark);
  border-radius: var(--radius);
  padding:8px 14px;
  box-shadow: var(--shadow-box);
  border: 1px solid rgba(255,255,255,0.75);
}
body.florists .icon-circle{
  width:44px;
  height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  background: rgba(47,125,100,0.12);
  color: var(--brand-primary);
}
body.florists .text-success{ color: var(--brand-accent) !important; }

/* Section system */
body.florists .nm-section{ padding: clamp(28px, 5.5vw, 72px) 0; }
body.florists .section-title{ font-weight: 700; position: relative; display: inline-block; }
body.florists .section-title::after{
  content: "";
  display: block;
  height: 2px;
  width: 48px;
  background: color-mix(in srgb, var(--brand-accent), #fff 35%);
  margin: 10px auto 0;
  opacity: 0.8;
}

/* Cards (match home page) */
body.florists .card.shadow-soft{
  box-shadow: var(--shadow-box);
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: #ffffff;
  border-radius: var(--radius);
}

body.florists .nm-shadowCard{
  box-shadow: color-mix(in srgb, var(--shadow-box), transparent 40%);
}

/* Bullets */
body.florists .nm-bullets{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
body.florists .nm-bullets li{
  position: relative;
  padding-left: 20px;
  color: rgba(17, 24, 39, 0.70);
  line-height: 1.5;
}
body.florists .nm-bullets li::before{
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--brand-primary), #fff 35%);
  position: absolute;
  left: 0;
  top: 7px;
}

body.florists .nm-stepCard{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}
body.florists .nm-stepNum{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: color-mix(in srgb, var(--brand-primary), #fff 88%);
  color: color-mix(in srgb, var(--brand-primary), #000 18%);
  border: 1px solid rgba(17, 24, 39, 0.10);
}

body.florists .nm-statValue{
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Accordion with height animation */
body.florists .nm-accordion{ display:grid; gap: 10px; }
body.florists .nm-acc-item{
  border: 1px solid rgba(17,24,39,0.12);
  border-radius: var(--radius);
  overflow: hidden;
  background:#fff;
  box-shadow: var(--shadow-box);
}
body.florists .nm-acc-btn{
  width: 100%;
  border: 0;
  background: transparent;
  padding: 16px 16px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  text-align: left;
}
body.florists .nm-acc-icon{ font-size: 18px; transition: transform 160ms ease; }
body.florists .nm-acc-panel{
  height: 0;
  overflow: hidden;
  transition: height 220ms ease;
  border-top: 1px solid rgba(17,24,39,0.10);
}
body.florists .nm-acc-panel__inner{ padding: 14px 16px 18px; color: rgba(17,24,39,0.72); line-height: 1.55; }
body.florists .nm-acc-item.is-open .nm-acc-icon{ transform: rotate(45deg); }

/* Form error styles */
body.florists .nm-form__grid{ display:grid; grid-template-columns: 1fr; gap: 14px; }
body.florists .nm-span2{ grid-column: 1 / -1; }
body.florists .nm-req{ color: #7f1d1d; margin-left: 4px; }
body.florists .nm-err{
  min-height: 16px;
  font-size: 12px;
  margin-top: 6px;
  color: #7f1d1d;
  font-weight: 600;
}
body.florists .nm-field.is-invalid .form-control,
body.florists .nm-field.is-invalid .form-select{ border-color: rgba(127,29,29,0.9); }

body.florists .nm-form__footer{
  display:flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
  align-items: flex-start;
  justify-content: space-between;
}

body.florists .nm-btn__spinner{
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.45);
  border-top-color: rgba(255,255,255,0.95);
  border-radius: 999px;
  display: none;
  animation: flSpin 0.75s linear infinite;
  margin-left: 8px;
}
body.florists .is-loading .nm-btn__spinner{ display:inline-block; }
@keyframes flSpin{ to { transform: rotate(360deg); } }

body.florists .nm-hp{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }

/* Scroll reveal */
body.florists .nm-reveal{ opacity: 0; transform: translateY(10px); transition: opacity 420ms ease, transform 420ms ease; }
body.florists .nm-reveal.is-visible{ opacity: 1; transform: translateY(0); }

/* Mobile sticky CTA bar (header-only color) */
body.florists .nm-mobileCta{
  position: sticky;
  top: 76px;
  z-index: 5;
  background: linear-gradient(160deg,
    color-mix(in srgb, var(--brand-primary), #000 8%) 0%,
    color-mix(in srgb, var(--brand-secondary), #000 8%) 82%);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: 10px 0;
  margin-bottom: 0;
}
@media (min-width: 992px){
  body.florists .nm-mobileCta{ display:none; }
}

@media (min-width: 900px){
  body.florists .nm-form__grid{ grid-template-columns: 1fr 1fr; }
  body.florists .nm-form__footer{ flex-direction: row; align-items: center; }
}

@media (prefers-reduced-motion: reduce){
  body.florists .nm-reveal{ transition:none; transform:none; opacity:1; }
  body.florists .nm-acc-panel{ transition:none; }
}
