/* ═══════════════════════════════════════════════════════════
   additions.css — FlutterGini CRO Upgrades
   New sections: Process · FAQ · Lead Magnet · WhatsApp FAB
   Add <link rel="stylesheet" href="css/additions.css"> to both HTML files
═══════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════
   1. FLOATING WHATSAPP BUTTON (FAB)
══════════════════════════════════════════════════════════ */
.wa-fab {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0;
  background: #25d366;
  border-radius: 100px;
  padding: 0;
  box-shadow: 0 4px 16px rgba(37,211,102,.35), 0 2px 6px rgba(0,0,0,.2);
  overflow: hidden;
  transition: all .3s cubic-bezier(.34,1.56,.64,1);
  text-decoration: none;
  max-width: 56px;
  border: 1.5px solid #1daa52;
}
.wa-fab:hover {
  max-width: 220px;
  box-shadow: 0 8px 28px rgba(37,211,102,.4), 0 4px 12px rgba(0,0,0,.18);
}
.wa-fab-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wa-fab-icon svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}
.wa-fab-label {
  font-family: var(--f-b);
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  padding-right: 1.1rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .25s .05s, transform .25s .05s;
}
.wa-fab:hover .wa-fab-label {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile: always show label */
@media (max-width: 768px) {
  .wa-fab { bottom: 1.25rem; right: 1.25rem; }
}


/* ══════════════════════════════════════════════════════════
   2. HOW I WORK — PROCESS SECTION
══════════════════════════════════════════════════════════ */
.process-section {
  background: linear-gradient(160deg, var(--ink2) 0%, var(--ink) 100%);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 5vw, 4rem);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.process-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.process-header {
  text-align: center;
  margin-bottom: 3rem;
}
.process-eyebrow {
  font-family: var(--f-m);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .75rem;
}
.process-title {
  font-family: var(--f-h);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -.04em;
  color: #fff;
  line-height: 1.1;
  margin-bottom: .75rem;
}
.process-title em {
  font-style: italic;
  color: var(--gold);
}
.process-subtitle {
  font-size: .95rem;
  color: rgba(255,255,255,.45);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Steps grid */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px;
  overflow: hidden;
}
.process-step {
  background: linear-gradient(160deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  padding: 1.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: background .25s;
  position: relative;
}
.process-step::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.process-step:hover {
  background: linear-gradient(160deg, rgba(13,122,107,.12), rgba(255,255,255,.04));
}
.process-step:hover::after {
  transform: scaleX(1);
}
.step-num-badge {
  font-family: var(--f-m);
  font-size: .65rem;
  font-weight: 700;
  color: var(--teal);
  background: rgba(13,122,107,.15);
  border: 1px solid rgba(13,122,107,.25);
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: .05em;
}
.step-body {}
.step-title {
  font-family: var(--f-h);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .35rem;
  letter-spacing: -.02em;
}
.step-desc {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  line-height: 1.65;
}
.step-duration {
  font-family: var(--f-m);
  font-size: .63rem;
  color: var(--gold);
  letter-spacing: .08em;
  margin-top: .45rem;
  display: inline-block;
  background: rgba(200,150,42,.1);
  border: 1px solid rgba(200,150,42,.2);
  border-radius: 4px;
  padding: 2px 8px;
}


/* ══════════════════════════════════════════════════════════
   3. FAQ SECTION
══════════════════════════════════════════════════════════ */
.faq-section {
  background: linear-gradient(160deg, var(--parchment), var(--cream2));
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 5vw, 4rem);
  border-top: 1px solid var(--border);
}
.faq-inner {
  max-width: 820px;
  margin: 0 auto;
}
.faq-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--sh-card);
}
.faq-item {
  background: linear-gradient(160deg, var(--parchment), var(--cream2));
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  font-family: var(--f-h);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
  gap: 1rem;
  transition: background .2s;
  user-select: none;
}
.faq-q:hover {
  background: var(--teal-ll);
}
.faq-item.open .faq-q {
  color: var(--teal-d);
  background: var(--teal-ll);
}
.faq-chevron {
  flex-shrink: 0;
  width: 18px; height: 18px;
  background: var(--cream3);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s var(--ease), background .2s;
  box-shadow: var(--sh-raised);
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--teal-l);
  border-color: rgba(13,122,107,.2);
}
.faq-chevron svg { stroke: var(--muted); }
.faq-item.open .faq-chevron svg { stroke: var(--teal-d); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease), padding .25s;
  padding: 0 1.5rem;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}
.faq-a p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.75;
  border-left: 2px solid var(--teal-l);
  padding-left: 1rem;
}
.faq-a strong { color: var(--ink3); }
.faq-cta-row {
  text-align: center;
  margin-top: 2rem;
  font-size: .85rem;
  color: var(--muted);
}
.faq-cta-row a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ══════════════════════════════════════════════════════════
   4. LEAD MAGNET SECTION (replaces newsletter)
══════════════════════════════════════════════════════════ */
.leadmagnet-section {
  background: linear-gradient(135deg, var(--teal-d) 0%, var(--teal) 55%, #1a9a84 100%);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 5vw, 4rem);
  border-top: 1px solid rgba(255,255,255,.1);
  position: relative;
  overflow: hidden;
}
.leadmagnet-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.leadmagnet-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(200,150,42,.06);
}
.leadmagnet-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.lm-left {}
.lm-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  padding: 4px 14px;
  font-family: var(--f-m);
  font-size: .65rem;
  color: rgba(255,255,255,.8);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .85rem;
}
.lm-badge-pill::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
}
.lm-title {
  font-family: var(--f-h);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -.04em;
  color: #fff;
  line-height: 1.1;
  margin-bottom: .85rem;
}
.lm-title em {
  font-style: italic;
  color: var(--gold);
}
.lm-desc {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.lm-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.lm-perks li {
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.lm-perks li::before {
  content: '';
  width: 14px; height: 14px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 8px;
}
.lm-right {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
}
.lm-form-title {
  font-family: var(--f-h);
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .35rem;
  letter-spacing: -.02em;
}
.lm-form-sub {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.lm-input {
  width: 100%;
  padding: .85rem 1rem;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 10px;
  font-family: var(--f-b);
  font-size: .9rem;
  color: var(--ink);
  margin-bottom: .6rem;
  outline: none;
  transition: all .2s;
  box-shadow: inset 0 1px 3px rgba(0,0,0,.08);
}
.lm-input::placeholder { color: var(--subtle); }
.lm-input:focus {
  background: #fff;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,150,42,.2), inset 0 1px 3px rgba(0,0,0,.06);
}
.lm-select {
  width: 100%;
  padding: .85rem 1rem;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 10px;
  font-family: var(--f-b);
  font-size: .9rem;
  color: var(--ink);
  margin-bottom: .75rem;
  outline: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237a6a54' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.lm-btn {
  width: 100%;
  padding: .95rem;
  background: linear-gradient(160deg, var(--gold), #a87820);
  color: #fff;
  border: 1px solid #9a6e18;
  border-bottom: 2px solid rgba(0,0,0,.25);
  border-radius: 10px;
  font-family: var(--f-b);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(200,150,42,.25), var(--sh-btn);
  transition: all .2s var(--ease);
  text-shadow: 0 1px 2px rgba(0,0,0,.2);
}
.lm-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200,150,42,.35), var(--sh-btn-hover);
}
.lm-btn:active { transform: translateY(0); }
.lm-note {
  font-size: .72rem;
  color: rgba(255,255,255,.4);
  text-align: center;
  margin-top: .6rem;
  font-family: var(--f-m);
}
.lm-success {
  display: none;
  text-align: center;
  padding: 1rem 0;
}
.lm-success-check {
  font-size: 2.5rem;
  margin-bottom: .5rem;
}
.lm-success h4 {
  font-family: var(--f-h);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: .35rem;
}
.lm-success p {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
}

@media (max-width: 820px) {
  .leadmagnet-inner {
    grid-template-columns: 1fr;
  }
}


/* ══════════════════════════════════════════════════════════
   5. CALENDLY CALLOUT (inside hero & contact)
══════════════════════════════════════════════════════════ */
.btn-calendly {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: .9rem 1.75rem;
  background: linear-gradient(160deg, var(--parchment), var(--cream2));
  color: var(--teal-d);
  border: 1px solid var(--border);
  border-bottom: 2px solid var(--border2);
  border-radius: 12px;
  font-family: var(--f-b);
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--sh-raised);
  transition: all .2s var(--ease);
  text-decoration: none;
}
.btn-calendly:hover {
  border-color: var(--teal);
  color: var(--teal-d);
  transform: translateY(-1px);
  box-shadow: var(--sh-card);
  background: var(--teal-ll);
}
.btn-calendly svg { color: var(--teal); }


/* ══════════════════════════════════════════════════════════
   6. SCROLL REVEAL for new sections
══════════════════════════════════════════════════════════ */
.process-step,
.faq-item,
.lm-left,
.lm-right {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.process-step.is-visible,
.faq-item.is-visible,
.lm-left.is-visible,
.lm-right.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.process-step:nth-child(2) { transition-delay: .07s; }
.process-step:nth-child(3) { transition-delay: .14s; }
.process-step:nth-child(4) { transition-delay: .21s; }
.process-step:nth-child(5) { transition-delay: .28s; }
.process-step:nth-child(6) { transition-delay: .35s; }
.faq-item:nth-child(2) { transition-delay: .05s; }
.faq-item:nth-child(3) { transition-delay: .10s; }
.faq-item:nth-child(4) { transition-delay: .15s; }
.faq-item:nth-child(5) { transition-delay: .20s; }
.faq-item:nth-child(6) { transition-delay: .25s; }
.lm-right { transition-delay: .1s; }

