/* ============================================================
   Affooh CRM — marketing site shared styles
   Fonts: Hanken Grotesk (UI), Quicksand (wordmark), JetBrains Mono
   loaded from Google Fonts in each page <head>.
   ============================================================ */

:root {
  --brand-pink: #e0218a;
  --brand-coral: #ee5a6f;
  --brand-orange: #f2752b;
  --brand-grad: linear-gradient(100deg, #e0218a 0%, #ee5a6f 50%, #f2752b 100%);
  --brand-grad-soft: linear-gradient(135deg, #fdeaf3 0%, #fdf0e8 100%);

  --bg: #ffffff;
  --bg-alt: #faf9fb;
  --bg-ink: #17141c;
  --ink: #19171c;
  --ink-2: #45424c;
  --muted: #7a7680;
  --faint: #a9a5b0;
  --line: #ececef;
  --line-soft: #f4f3f6;

  --pink-tint: #fdeaf3;
  --pink-tint-2: #fbf3f8;
  --green: #2e9e6b;
  --green-bg: #e6f5ee;
  --amber: #d98315;
  --amber-bg: #fdf2e2;
  --violet: #7a5cd6;
  --blue: #3b76d6;

  --maxw: 1180px;
  --r-lg: 20px;
  --r-md: 14px;
  --r-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(20,17,28,.05);
  --shadow-md: 0 10px 30px -10px rgba(20,17,28,.14), 0 2px 6px rgba(20,17,28,.05);
  --shadow-lg: 0 30px 70px -24px rgba(20,17,28,.28), 0 6px 18px rgba(20,17,28,.06);
  --shadow-brand: 0 12px 30px -8px rgba(224,33,138,.42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 { font-family: "Hanken Grotesk", sans-serif; letter-spacing: -.02em; line-height: 1.1; margin: 0; font-weight: 800; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: var(--pink-tint); }
.mono { font-family: "JetBrains Mono", monospace; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.center { text-align: center; }

/* eyebrow */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--brand-pink); background: var(--pink-tint); padding: 6px 13px; border-radius: 40px; white-space: nowrap;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-pink); }

.section-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); margin: 18px 0 0; }
.section-head p { font-size: 18px; color: var(--muted); margin-top: 16px; }

.grad-text {
  background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 15px; padding: 13px 24px; border-radius: 12px;
  transition: transform .1s, filter .15s, background .15s, border-color .15s, box-shadow .15s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--brand-grad); color: #fff; box-shadow: var(--shadow-brand); }
.btn-primary:hover { filter: brightness(1.06); }
.btn-primary:active { transform: translateY(1px); }
.btn-ghost { background: #fff; color: var(--ink); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: #d9d6de; background: var(--bg-alt); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { filter: brightness(1.25); }
.btn-lg { padding: 16px 30px; font-size: 16px; border-radius: 13px; }
.btn-white { background: #fff; color: var(--brand-pink); }
.btn-white:hover { filter: brightness(.97); }
.btn-outline-white { border: 1px solid rgba(255,255,255,.4); color: #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,.1); }

/* ============ Nav ============ */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .18s;
}
.nav.scrolled { box-shadow: 0 4px 20px -12px rgba(20,17,28,.28); }
.nav-inner { display: flex; align-items: center; gap: 28px; height: 68px; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo .mark { width: 32px; height: 32px; border-radius: 9px; background: var(--brand-grad); display: grid; place-items: center; box-shadow: 0 3px 9px -2px rgba(224,33,138,.5); }
.logo .mark span { font-family: "Quicksand", sans-serif; font-weight: 700; color: #fff; font-size: 19px; margin-top: -2px; }
.logo .name { font-family: "Quicksand", sans-serif; font-weight: 700; font-size: 22px; background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.nav-links a { font-size: 15px; font-weight: 600; color: var(--ink-2); padding: 8px 13px; border-radius: 9px; transition: background .12s, color .12s; white-space: nowrap; }
.nav-links a:hover { background: var(--line-soft); color: var(--ink); }
.nav-links a.active { color: var(--brand-pink); }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.nav-cta .signin { font-size: 15px; font-weight: 600; color: var(--ink-2); padding: 8px 12px; border-radius: 9px; white-space: nowrap; }
.nav-cta .signin:hover { background: var(--line-soft); }
.nav-burger { display: none; width: 40px; height: 40px; border-radius: 10px; align-items: center; justify-content: center; margin-left: auto; }
.nav-burger svg { width: 22px; height: 22px; }

.mobile-menu { display: none; }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta .signin { display: none; }
  .nav-burger { display: flex; }
  .mobile-menu { display: none; padding: 12px 28px 20px; border-bottom: 1px solid var(--line); background: #fff; }
  .mobile-menu.open { display: block; }
  .mobile-menu a { display: block; padding: 12px 4px; font-weight: 600; color: var(--ink-2); border-bottom: 1px solid var(--line-soft); }
  .mobile-menu .btn { margin-top: 14px; width: 100%; }
}

/* ============ App-UI mockup (browser window) ============ */
.mock {
  border-radius: 16px; background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.mock img { display: block; width: 100%; height: auto; }
.mock-bar { display: flex; align-items: center; gap: 7px; padding: 12px 15px; border-bottom: 1px solid var(--line); background: var(--bg-alt); }
.mock-bar .dot { width: 11px; height: 11px; border-radius: 50%; }
.mock-bar .d1 { background: #ff5f57; } .mock-bar .d2 { background: #febc2e; } .mock-bar .d3 { background: #28c840; }
.mock-bar .url { margin-left: 12px; flex: 1; height: 22px; background: #fff; border: 1px solid var(--line); border-radius: 7px; display: flex; align-items: center; padding: 0 10px; font-size: 11px; color: var(--muted); font-family: "JetBrains Mono", monospace; }
.mock-body { display: grid; grid-template-columns: 148px 1fr; min-height: 340px; }
.mock-side { background: var(--bg-alt); border-right: 1px solid var(--line); padding: 14px 10px; }
.mock-side .ms-logo { display: flex; align-items: center; gap: 7px; padding: 4px 6px 14px; }
.mock-side .ms-logo b { width: 20px; height: 20px; border-radius: 6px; background: var(--brand-grad); }
.mock-side .ms-logo span { font-family: "Quicksand"; font-weight: 700; font-size: 14px; color: var(--ink); }
.mock-nav-i { display: flex; align-items: center; gap: 8px; padding: 7px 8px; border-radius: 7px; font-size: 11.5px; font-weight: 600; color: var(--muted); margin-bottom: 2px; }
.mock-nav-i .mi { width: 13px; height: 13px; border-radius: 4px; background: #dcd9e0; }
.mock-nav-i.on { background: var(--pink-tint); color: var(--brand-pink); }
.mock-nav-i.on .mi { background: var(--brand-pink); }
.mock-main { padding: 16px 18px; }
.mock-h { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.mock-h .mh-t { font-weight: 800; font-size: 16px; }
.mock-h .mh-b { width: 74px; height: 26px; border-radius: 7px; background: var(--brand-grad); }
.mock-kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 9px; margin-bottom: 14px; }
.mock-kpi { border: 1px solid var(--line); border-radius: 10px; padding: 9px 10px; }
.mock-kpi .k-l { font-size: 9px; color: var(--muted); font-weight: 600; }
.mock-kpi .k-v { font-size: 18px; font-weight: 800; margin-top: 3px; letter-spacing: -.02em; }
.mock-kpi .k-d { font-size: 9px; color: var(--green); font-weight: 700; margin-top: 1px; }
.mock-cards { display: grid; grid-template-columns: 1.4fr 1fr; gap: 10px; }
.mock-card { border: 1px solid var(--line); border-radius: 10px; padding: 11px 12px; }
.mock-card .mc-t { font-size: 10.5px; font-weight: 700; color: var(--ink-2); margin-bottom: 9px; }
.mock-bars { display: flex; align-items: flex-end; gap: 6px; height: 74px; }
.mock-bars i { flex: 1; border-radius: 3px 3px 0 0; background: var(--line); display: block; }
.mock-bars i.hl { background: var(--brand-grad); }
.mock-row { display: flex; align-items: center; gap: 8px; margin-bottom: 9px; }
.mock-row .mr-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.mock-row .mr-line { flex: 1; height: 7px; border-radius: 4px; background: var(--line-soft); }
.mock-row .mr-line.w1 { max-width: 82%; } .mock-row .mr-line.w2 { max-width: 60%; } .mock-row .mr-line.w3 { max-width: 70%; }

/* ============ Logo strip ============ */
.logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 46px; }
.logos .lg { font-family: "Quicksand", sans-serif; font-weight: 700; font-size: 21px; color: #b7b3bd; letter-spacing: -.01em; display: flex; align-items: center; gap: 8px; transition: color .15s; }
.logos .lg:hover { color: var(--ink-2); }
.logos .lg svg { width: 22px; height: 22px; }
.logos img {
  height: 38px; width: auto; max-width: 170px; object-fit: contain;
  filter: grayscale(1); opacity: .62;
  transition: filter .2s, opacity .2s;
}
.logos img:hover { filter: none; opacity: 1; }
@media (max-width: 620px) { .logos { gap: 14px 30px; } .logos img { height: 30px; } }

/* ============ Module blocks ============ */
.mod-block { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.mod-block + .mod-block { margin-top: 110px; }
.mod-block.rev .mod-visual { order: -1; }
.mod-ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px; box-shadow: var(--shadow-brand); }
.mod-ic svg { width: 26px; height: 26px; color: #fff; }
.mod-block h3 { font-size: 30px; margin-bottom: 14px; }
.mod-block .lead { font-size: 17px; color: var(--muted); margin-bottom: 20px; }
.mod-list { list-style: none; padding: 0; margin: 0 0 26px; display: flex; flex-direction: column; gap: 11px; }
.mod-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; color: var(--ink-2); }
.mod-list li .ck { width: 20px; height: 20px; border-radius: 6px; background: var(--pink-tint); display: grid; place-items: center; flex-shrink: 0; margin-top: 1px; }
.mod-list li .ck svg { width: 12px; height: 12px; color: var(--brand-pink); }
.mod-link { font-weight: 700; color: var(--brand-pink); display: inline-flex; align-items: center; gap: 6px; }
.mod-link svg { width: 15px; height: 15px; transition: transform .15s; }
.mod-link:hover svg { transform: translateX(3px); }
@media (max-width: 860px) {
  .mod-block { grid-template-columns: 1fr; gap: 30px; }
  .mod-block.rev .mod-visual { order: 0; }
}

/* ============ Feature cards grid ============ */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fcard { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 26px; box-shadow: var(--shadow-sm); transition: transform .15s, box-shadow .15s, border-color .15s; }
.fcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #e3e0e7; }
.fcard .fic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 16px; }
.fcard .fic svg { width: 22px; height: 22px; color: #fff; }
.fcard h3 { font-size: 19px; margin-bottom: 9px; }
.fcard p { font-size: 14.5px; color: var(--muted); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card-grid.four .fcard { padding: 24px 20px; }
@media (max-width: 1040px) { .card-grid.four { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .card-grid { grid-template-columns: 1fr; } }

/* ============ Stats ============ */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat-b { text-align: center; }
.stat-b .v { font-size: clamp(34px,5vw,52px); font-weight: 800; letter-spacing: -.03em; }
.stat-b .l { font-size: 14px; color: var(--muted); font-weight: 600; margin-top: 4px; }
@media (max-width: 700px) { .stats { grid-template-columns: 1fr 1fr; gap: 34px; } }

/* ============ Testimonials ============ */
.tgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.tcard { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.tcard .stars { display: flex; gap: 2px; color: var(--brand-orange); margin-bottom: 15px; }
.tcard .stars svg { width: 16px; height: 16px; }
.tcard .quote { font-size: 16px; color: var(--ink); line-height: 1.6; font-weight: 500; flex: 1; }
.tcard .who { display: flex; align-items: center; gap: 11px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line-soft); }
.tcard .who .av { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.tcard .who .nm { font-weight: 700; font-size: 14.5px; }
.tcard .who .rl { font-size: 12.5px; color: var(--muted); }
@media (max-width: 900px) { .tgrid { grid-template-columns: 1fr; } }

/* ============ Pricing ============ */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: stretch; }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; position: relative; }
.price-card.pop { border: 2px solid transparent; background:
  linear-gradient(#fff,#fff) padding-box,
  var(--brand-grad) border-box; box-shadow: var(--shadow-md); }
.price-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--brand-grad); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 15px; border-radius: 30px; letter-spacing: .03em; box-shadow: var(--shadow-brand); }
.price-card .tier { font-size: 15px; font-weight: 700; color: var(--brand-pink); text-transform: uppercase; letter-spacing: .05em; }
.price-card .tier-d { font-size: 13.5px; color: var(--muted); margin-top: 6px; min-height: 40px; }
.price-card .amt { margin: 18px 0 4px; display: flex; align-items: baseline; gap: 4px; }
.price-card .amt .cur { font-size: 22px; font-weight: 700; }
.price-card .amt .num { font-size: 46px; font-weight: 800; letter-spacing: -.03em; }
.price-card .amt .per { font-size: 14px; color: var(--muted); font-weight: 600; }
.price-card .amt-sub { font-size: 13px; color: var(--faint); margin-bottom: 22px; }
.price-card .btn { width: 100%; margin-bottom: 24px; }
.plist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 13px; }
.plist li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--ink-2); }
.plist li .ck { width: 18px; height: 18px; border-radius: 5px; background: var(--green-bg); display: grid; place-items: center; flex-shrink: 0; margin-top: 2px; }
.plist li .ck svg { width: 11px; height: 11px; color: var(--green); }
.plist li.off { color: var(--faint); }
.plist li.off .ck { background: var(--line-soft); }
.plist li.off .ck svg { color: var(--faint); }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }

/* ============ FAQ ============ */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 4px; text-align: left; font-size: 17px; font-weight: 700; color: var(--ink); }
.faq-q .pm { width: 24px; height: 24px; flex-shrink: 0; position: relative; transition: transform .2s; }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; background: var(--brand-pink); border-radius: 2px; }
.faq-q .pm::before { left: 5px; right: 5px; top: 11px; height: 2px; }
.faq-q .pm::after { top: 5px; bottom: 5px; left: 11px; width: 2px; transition: opacity .2s; }
.faq-item.open .faq-q .pm::after { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-a p { padding: 0 4px 22px; color: var(--muted); font-size: 15.5px; line-height: 1.65; margin: 0; }

/* ============ Lead form ============ */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 36px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { margin-bottom: 16px; }
.fg label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink-2); margin-bottom: 7px; }
.fg .req { color: var(--brand-pink); }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: 15px; color: var(--ink); background: #fff; outline: none;
  transition: border-color .14s, box-shadow .14s;
}
.fg textarea { resize: vertical; min-height: 100px; }
.fg input::placeholder, .fg textarea::placeholder { color: var(--faint); }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--brand-coral); box-shadow: 0 0 0 3px rgba(238,90,111,.13); }
.fg select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237a7680' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>"); background-repeat: no-repeat; background-position: right 13px center; padding-right: 38px; }
.fg.err input, .fg.err select, .fg.err textarea { border-color: var(--brand-coral); }
.fg .err-msg { display: none; font-size: 12.5px; color: var(--brand-coral); font-weight: 600; margin-top: 6px; }
.fg.err .err-msg { display: block; }
.form-ok { display: none; align-items: flex-start; gap: 12px; background: var(--green-bg); border-radius: var(--r-md); padding: 16px 18px; margin-bottom: 18px; }
.form-ok.show { display: flex; }
.form-ok svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.form-ok b { display: block; font-size: 14.5px; color: #1e6b48; }
.form-ok span { font-size: 13.5px; color: #2f7a58; }
.form-note { font-size: 12.5px; color: var(--faint); margin-top: 14px; text-align: center; }
/* embedded CRM form — sits flush inside the card */
.form-card.embed { padding: 0; overflow: hidden; }
.form-card.embed iframe { display: block; width: 100%; height: 640px; border: 0; }
@media (max-width: 620px) { .form-card.embed iframe { height: 760px; } }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* ============ CTA band ============ */
.cta-band { background: var(--bg-ink); border-radius: var(--r-lg); padding: 64px 56px; position: relative; overflow: hidden; text-align: center; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 120% at 50% 0%, rgba(224,33,138,.35), transparent 70%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(28px,4vw,40px); }
.cta-band p { color: rgba(255,255,255,.72); font-size: 18px; margin: 16px auto 32px; max-width: 520px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 560px) { .cta-band { padding: 46px 24px; } }

/* ============ Footer ============ */
.footer { background: var(--bg-ink); color: #fff; padding: 66px 0 34px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .f-brand .name { font-family: "Quicksand"; font-weight: 700; font-size: 24px; color: #fff; }
.footer .f-brand p { color: rgba(255,255,255,.55); font-size: 14px; margin-top: 14px; max-width: 260px; }
.footer .f-social { display: flex; gap: 10px; margin-top: 20px; }
.footer .f-social a { width: 36px; height: 36px; border-radius: 9px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .15s; }
.footer .f-social a:hover { background: rgba(255,255,255,.16); }
.footer .f-social svg { width: 17px; height: 17px; color: rgba(255,255,255,.8); }
.footer .f-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .05em; color: rgba(255,255,255,.5); font-weight: 700; margin-bottom: 16px; }
.footer .f-col a { display: block; color: rgba(255,255,255,.72); font-size: 14.5px; padding: 6px 0; transition: color .12s; }
.footer .f-col a:hover { color: #fff; }
.footer-bot { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; color: rgba(255,255,255,.45); font-size: 13px; flex-wrap: wrap; gap: 12px; }
.footer-bot .f-legal { display: flex; gap: 22px; }
.footer-bot .f-legal a { color: rgba(255,255,255,.45); }
.footer-bot .f-legal a:hover { color: rgba(255,255,255,.8); }
@media (max-width: 860px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer .f-brand { grid-column: 1 / -1; }
}

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Home page
   ============================================================ */
.hero { position: relative; overflow: hidden; padding: 68px 0 90px; }
.hero::before { content: ""; position: absolute; top: -220px; left: 50%; transform: translateX(-50%); width: 1100px; height: 620px; background: radial-gradient(ellipse at center, rgba(238,90,111,.16), rgba(242,117,43,.06) 45%, transparent 70%); z-index: 0; }
.hero-inner { position: relative; z-index: 1; text-align: center; max-width: 820px; margin: 0 auto; }
.hero h1 { font-size: clamp(38px, 6vw, 62px); line-height: 1.04; }
.hero .sub { font-size: clamp(17px, 2.2vw, 21px); color: var(--muted); margin: 22px auto 0; max-width: 620px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-size: 13.5px; color: var(--faint); display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.hero-note span { display: inline-flex; align-items: center; gap: 6px; }
.hero-note svg { width: 14px; height: 14px; color: var(--green); }
.hero-mock { max-width: 940px; margin: 56px auto 0; position: relative; z-index: 1; }

.module-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 30px; }
.mpill { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 40px; background: #fff; border: 1px solid var(--line); font-size: 14px; font-weight: 600; color: var(--ink-2); box-shadow: var(--shadow-sm); }
.mpill .mp-dot { width: 8px; height: 8px; border-radius: 50%; }

.why { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ============================================================
   Inner page header (modules / pricing / contact)
   ============================================================ */
.page-head { position: relative; overflow: hidden; padding: 72px 0 56px; text-align: center; background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.page-head::before { content: ""; position: absolute; top: -260px; left: 50%; transform: translateX(-50%); width: 1000px; height: 560px; background: radial-gradient(ellipse at center, rgba(238,90,111,.14), transparent 68%); }
.page-head > .wrap { position: relative; z-index: 1; }
.page-head h1 { font-size: clamp(34px, 5vw, 52px); margin-top: 20px; }
.page-head p { font-size: 18px; color: var(--muted); max-width: 620px; margin: 16px auto 0; }
.page-head .hero-actions { margin-top: 28px; }

/* module quick-nav */
.mod-nav { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 28px; }
.mod-nav a { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 40px; background: #fff; border: 1px solid var(--line); font-size: 14px; font-weight: 600; color: var(--ink-2); box-shadow: var(--shadow-sm); transition: border-color .15s, color .15s, transform .12s; }
.mod-nav a:hover { border-color: #d9d6de; color: var(--ink); transform: translateY(-1px); }
.mod-nav a .mp-dot { width: 8px; height: 8px; border-radius: 50%; }

/* ============================================================
   Pricing page
   ============================================================ */
.cmp-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff; box-shadow: var(--shadow-sm); }
table.cmp { width: 100%; border-collapse: collapse; min-width: 680px; }
table.cmp th, table.cmp td { padding: 15px 20px; text-align: left; font-size: 14.5px; border-bottom: 1px solid var(--line-soft); }
table.cmp thead th { font-size: 13px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); font-weight: 700; background: var(--bg-alt); border-bottom: 1px solid var(--line); }
table.cmp thead th:not(:first-child), table.cmp td:not(:first-child) { text-align: center; width: 150px; }
table.cmp tbody th { font-weight: 600; color: var(--ink-2); }
table.cmp tr.grp th { background: var(--pink-tint-2); color: var(--brand-pink); font-size: 12.5px; text-transform: uppercase; letter-spacing: .05em; font-weight: 700; }
table.cmp tr:last-child th, table.cmp tr:last-child td { border-bottom: none; }
table.cmp .yes svg { width: 17px; height: 17px; color: var(--green); }
table.cmp .no { color: var(--faint); }
table.cmp .hl { color: var(--brand-pink); font-weight: 700; }

/* ============================================================
   Contact page
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: start; }
.contact-points { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-direction: column; gap: 20px; }
.contact-points li { display: flex; gap: 14px; }
.contact-points .cp-ic { width: 40px; height: 40px; border-radius: 11px; background: var(--pink-tint); display: grid; place-items: center; flex-shrink: 0; }
.contact-points .cp-ic svg { width: 19px; height: 19px; color: var(--brand-pink); }
.contact-points b { display: block; font-size: 15.5px; }
.contact-points span { font-size: 14px; color: var(--muted); }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 34px; } }

/* ============================================================
   Auth pages (sign in / register)
   ============================================================ */
.auth-shell { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }
.auth-main { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 44px 28px; }
.auth-card { width: 100%; max-width: 420px; }
.auth-card .logo { justify-content: flex-start; margin-bottom: 30px; }
.auth-card h1 { font-size: 30px; }
.auth-card .auth-sub { font-size: 15.5px; color: var(--muted); margin: 10px 0 28px; }
.auth-card .btn { width: 100%; }
.auth-alt { display: flex; align-items: center; gap: 14px; margin: 22px 0; color: var(--faint); font-size: 13px; font-weight: 600; }
.auth-alt::before, .auth-alt::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.auth-sso { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.auth-sso a { display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 12px; border: 1px solid var(--line); border-radius: 11px; font-size: 14.5px; font-weight: 600; background: #fff; transition: border-color .15s, background .15s; }
.auth-sso a:hover { border-color: #d9d6de; background: var(--bg-alt); }
.auth-sso svg { width: 17px; height: 17px; }
.auth-foot { font-size: 14.5px; color: var(--muted); margin-top: 26px; text-align: center; }
.auth-foot a { color: var(--brand-pink); font-weight: 700; }
.auth-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 20px; }
.check { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; color: var(--ink-2); cursor: pointer; }
.check input { width: 16px; height: 16px; accent-color: var(--brand-pink); }
.link-pink { color: var(--brand-pink); font-weight: 700; font-size: 14px; }

.auth-aside { background: var(--brand-grad-soft); border-left: 1px solid var(--line); padding: 56px 48px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.auth-aside::before { content: ""; position: absolute; top: -180px; right: -160px; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(224,33,138,.16), transparent 65%); }
.auth-aside > * { position: relative; z-index: 1; }
.auth-aside h2 { font-size: 30px; max-width: 420px; }
.auth-aside .aa-sub { font-size: 16px; color: var(--ink-2); margin: 16px 0 30px; max-width: 420px; }
.auth-aside .mod-list { margin-bottom: 34px; }
.auth-aside .mod-list li .ck { background: #fff; }
.auth-quote { background: rgba(255,255,255,.75); border: 1px solid rgba(255,255,255,.9); border-radius: var(--r-md); padding: 22px; max-width: 420px; backdrop-filter: blur(6px); }
.auth-quote p { font-size: 15px; font-weight: 500; }
.auth-back { position: absolute; top: 24px; left: 28px; font-size: 14px; font-weight: 600; color: var(--muted); display: inline-flex; align-items: center; gap: 7px; z-index: 2; }
.auth-back:hover { color: var(--ink); }
.auth-back svg { width: 15px; height: 15px; }
@media (max-width: 980px) {
  .auth-shell { grid-template-columns: 1fr; min-height: 100vh; }
  .auth-aside { display: none; }
  .auth-main { padding-top: 84px; }
}

/* ============================================================
   Landing page (home)
   ============================================================ */

/* pill CTAs in the nav, site-wide */
.nav-cta .btn { border-radius: 40px; }

/* ---- Hero ---- */
.hero-lp { background: linear-gradient(180deg, #fde6f0 0%, #fdeef4 62%, #ffffff 100%); position: relative; overflow: hidden; padding: 54px 0 0; }
.hero-lp .wrap { position: relative; z-index: 2; }
.hero-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.badge-new { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid #f7cfe1; border-radius: 40px; padding: 5px 14px 5px 6px; font-size: 13px; font-weight: 600; color: var(--ink-2); box-shadow: 0 2px 8px rgba(224,33,138,.08); }
.badge-new .nw { background: var(--brand-grad); color: #fff; font-size: 11px; font-weight: 700; padding: 2px 9px; border-radius: 30px; letter-spacing: .03em; }
.badge-new .arw { color: var(--brand-pink); }
.hero-lp h1 { font-size: clamp(34px, 5.4vw, 56px); line-height: 1.08; margin-top: 22px; }
.hero-lp .sub { font-size: 16.5px; color: var(--ink-2); max-width: 620px; margin: 20px auto 0; line-height: 1.6; }
.hero-lp-actions { display: flex; gap: 14px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }
.hero-lp-actions .btn { border-radius: 40px; }
.zz { position: absolute; top: 90px; right: -20px; width: 200px; z-index: 1; opacity: .95; }
.hero-mock-lp { max-width: 940px; margin: 46px auto 0; position: relative; z-index: 2; padding-bottom: 8px; }
.hero-mock-lp .mock img { display: block; width: 100%; height: auto; }
@media (max-width: 620px) { .zz { display: none; } }

/* ---- Marquee band ---- */
.marquee { background: var(--brand-grad); overflow: hidden; }
.marquee-track { display: flex; white-space: nowrap; animation: marquee 26s linear infinite; }
.marquee-track span { display: inline-flex; align-items: center; gap: 22px; padding: 15px 22px; color: #fff; font-weight: 700; font-size: 16px; }
.marquee-track .zap { color: #ffe08a; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---- Video / showreel block ---- */
.video-wrap {
  position: relative; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
  background: var(--brand-grad);
}
.vw-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; background: #000; }
.video-wrap.playing::after { display: none; }
.video-wrap.playing .vw-label,
.video-wrap.playing .play { opacity: 0; pointer-events: none; transition: opacity .2s; }
.video-wrap::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 90% at 30% 20%, rgba(255,255,255,.28), transparent 60%),
              radial-gradient(ellipse 60% 80% at 85% 90%, rgba(23,20,28,.30), transparent 62%);
}
.video-wrap .vw-label { position: absolute; left: 30px; bottom: 26px; z-index: 3; color: #fff; }
.video-wrap .vw-label b { display: block; font-size: 20px; font-weight: 800; letter-spacing: -.02em; }
.video-wrap .vw-label span { font-size: 14px; color: rgba(255,255,255,.82); }
.video-wrap .play { position: absolute; inset: 0; margin: auto; width: 74px; height: 74px; border-radius: 50%; background: rgba(255,255,255,.92); display: grid; place-items: center; z-index: 3; box-shadow: 0 8px 24px rgba(0,0,0,.25); transition: transform .15s; cursor: pointer; }
.video-wrap .play:hover { transform: scale(1.08); }
.video-wrap .play svg { width: 26px; height: 26px; color: var(--brand-pink); margin-left: 3px; }
@media (max-width: 620px) { .video-wrap .vw-label { left: 18px; bottom: 16px; } .video-wrap .vw-label b { font-size: 16px; } }

/* ---- Feature tabs ---- */
.ftabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 34px; }
.ftab { font-size: 14px; font-weight: 600; color: var(--ink-2); padding: 9px 18px; border-radius: 40px; border: 1px solid var(--line); background: #fff; transition: background .15s, color .15s, border-color .15s, box-shadow .15s; }
.ftab.on { background: var(--brand-grad); color: #fff; border-color: transparent; box-shadow: var(--shadow-brand); }
.ftab:not(.on):hover { border-color: #e6c4d6; }
.feature-panel { display: grid; grid-template-columns: 1.5fr 1fr; gap: 46px; align-items: center; margin-top: 46px; }
.feature-visual { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); background: #21232e; }
.feature-text .fp-ic { width: 44px; height: 44px; border-radius: 12px; background: var(--pink-tint); display: grid; place-items: center; margin-bottom: 16px; }
.feature-text .fp-ic svg { width: 22px; height: 22px; color: var(--brand-pink); }
.feature-text h3 { font-size: 26px; margin-bottom: 12px; }
.feature-text p { color: var(--muted); font-size: 15.5px; line-height: 1.65; }
.ft-list { list-style: none; padding: 0; margin: 6px 0 0; display: flex; flex-direction: column; gap: 13px; }
.ft-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--ink-2); line-height: 1.5; }
.ft-list li .ck { width: 20px; height: 20px; border-radius: 6px; background: var(--green-bg); display: grid; place-items: center; flex-shrink: 0; margin-top: 1px; }
.ft-list li .ck svg { width: 12px; height: 12px; color: var(--green); }
.fv-mock { align-self: center; }
.fv-mock img { display: block; width: 100%; height: auto; }
@media (max-width: 860px) { .feature-panel { grid-template-columns: 1fr; gap: 26px; } }

/* dark app mockup */
.dmock { background: #21232e; padding: 0; }
.dmock-bar { display: flex; align-items: center; gap: 6px; padding: 11px 14px; border-bottom: 1px solid #33353f; }
.dmock-bar .d { width: 10px; height: 10px; border-radius: 50%; }
.dmock-body { display: grid; grid-template-columns: 44px 1fr; min-height: 300px; }
.dmock-rail { background: #1a1c25; border-right: 1px solid #33353f; padding: 12px 0; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.dmock-rail i { width: 18px; height: 18px; border-radius: 6px; background: #363945; }
.dmock-rail i.on { background: var(--brand-grad); }
.dmock-main { padding: 14px 16px; }
.dmock-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 10px; }
.dmock-col { background: #2a2c37; border-radius: 9px; padding: 9px; }
.dmock-col .ct { font-size: 9px; color: #9a9cab; font-weight: 700; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .04em; }
.dmock-card { background: #363945; border-radius: 7px; padding: 8px; margin-bottom: 7px; }
.dmock-card .l1 { height: 6px; border-radius: 4px; background: #4a4d5a; margin-bottom: 5px; }
.dmock-card .l2 { height: 6px; width: 60%; border-radius: 4px; background: #4a4d5a; }
.dmock-card .tag { width: 34px; height: 8px; border-radius: 4px; margin-bottom: 7px; }
.dmock-h { display: flex; align-items: center; justify-content: space-between; }
.dmock-h .t { color: #fff; font-size: 13px; font-weight: 700; }
.dmock-h .b { width: 60px; height: 22px; border-radius: 6px; background: var(--brand-grad); }

/* ---- Integration pills ---- */
.int-rows { display: flex; flex-direction: column; gap: 16px; margin-top: 40px; }
.int-row { display: flex; gap: 14px; flex-wrap: wrap; }
.ipill { display: inline-flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 11px 20px; font-size: 15px; font-weight: 700; box-shadow: var(--shadow-sm); flex-shrink: 0; }
.ipill .ilogo { width: 22px; height: 22px; display: grid; place-items: center; }
.ipill svg { width: 20px; height: 20px; }
@media (max-width: 620px) { .int-row { padding-left: 0 !important; } }

/* ---- Powerful features split ---- */
.pf-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 46px; align-items: center; }
.pf-left h2 { font-size: clamp(28px,3.6vw,38px); }
.pf-left p { color: var(--muted); font-size: 15px; margin-top: 16px; max-width: 380px; line-height: 1.6; }
.pf-stats { display: flex; gap: 40px; margin-top: 30px; flex-wrap: wrap; }
.pf-stat { display: flex; align-items: center; gap: 12px; }
.pf-stat .pfs-ic { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line); display: grid; place-items: center; }
.pf-stat .pfs-ic svg { width: 18px; height: 18px; color: var(--brand-pink); }
.pf-stat .v { font-size: 24px; font-weight: 800; letter-spacing: -.02em; }
.pf-stat .l { font-size: 12px; color: var(--muted); }
.pf-cards { display: flex; gap: 18px; }
.pf-card { flex: 1; min-width: 0; background: linear-gradient(180deg,#fbf3f7,#fff); border: 1px solid var(--line); border-radius: 18px; padding: 30px 24px; text-align: center; }
.pf-card .pc-vis { width: 90px; height: 90px; margin: 0 auto 20px; border-radius: 50%; background: radial-gradient(circle at 50% 40%, #fde6f0, #fbeef4); display: grid; place-items: center; }
.pf-card .pc-vis svg { width: 40px; height: 40px; color: var(--brand-pink); }
.pf-card h3 { font-size: 19px; margin-bottom: 10px; }
.pf-card p { font-size: 14px; color: var(--muted); }
@media (max-width: 860px) { .pf-grid { grid-template-columns: 1fr; gap: 30px; } }
@media (max-width: 560px) { .pf-cards { flex-direction: column; } }

/* ---- Clients grid ---- */
.clients-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; margin-top: 42px; }
.client-cell { background: #fff; border: 1px solid var(--line); border-radius: 14px; height: 92px; display: grid; place-items: center; padding: 0 18px; box-shadow: var(--shadow-sm); transition: transform .15s, box-shadow .15s; }
.client-cell:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.client-cell img { max-height: 40px; max-width: 100%; width: auto; object-fit: contain; filter: grayscale(1); opacity: .65; transition: filter .2s, opacity .2s; }
.client-cell:hover img { filter: none; opacity: 1; }
@media (max-width: 900px) { .clients-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 560px) { .clients-grid { grid-template-columns: repeat(2,1fr); } }

/* ---- Productivity CTA band ---- */
.prod-cta { position: relative; overflow: hidden; min-height: 320px; display: flex; align-items: center; }
.prod-cta .pc-bg { position: absolute; inset: 0; z-index: 0; background: var(--brand-grad); }
.prod-cta .pc-bg::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 90% at 78% 25%, rgba(255,255,255,.26), transparent 60%);
}
.prod-cta .pc-scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(20,17,28,.82) 0%, rgba(20,17,28,.55) 50%, rgba(20,17,28,.2) 100%); pointer-events: none; }
.prod-cta .pc-inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: 54px 28px; width: 100%; }
.prod-cta .tag { display: inline-block; border: 1px solid rgba(255,255,255,.4); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 5px 12px; border-radius: 30px; }
.prod-cta h2 { color: #fff; font-size: clamp(26px,3.6vw,36px); margin: 18px 0 12px; max-width: 560px; }
.prod-cta p { color: rgba(255,255,255,.8); font-size: 15px; max-width: 480px; line-height: 1.6; }
.prod-cta .pc-actions { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }

/* ---- Testimonials (landing variant) ---- */
.tsec-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-bottom: 34px; }
.tsec-head h2 { font-size: clamp(26px,3.4vw,34px); }
.tcards-lp { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.tcard-lp { border: 1px solid var(--line); border-radius: 16px; padding: 26px; background: #fff; }
.tcard-lp.fill { background: var(--brand-grad); border-color: transparent; color: #fff; }
.tcard-lp .tq { font-size: 14.5px; line-height: 1.6; color: var(--ink-2); min-height: 130px; }
.tcard-lp.fill .tq { color: #fff; }
.tcard-lp .twho { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.tcard-lp .tav { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 15px; background: var(--brand-grad); flex-shrink: 0; }
.tcard-lp.fill .tav { background: rgba(255,255,255,.22); }
.tcard-lp .tn { font-weight: 700; font-size: 14px; }
.tcard-lp .tr { font-size: 12px; color: var(--muted); }
.tcard-lp.fill .tr { color: rgba(255,255,255,.8); }
@media (max-width: 900px) { .tcards-lp { grid-template-columns: 1fr; } }

/* ---- FAQ (two-column landing variant) ---- */
.faq-lp { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: start; }
.faq-lp-left .hint { font-size: 13px; color: var(--brand-pink); font-weight: 600; background: var(--pink-tint); display: inline-block; padding: 4px 12px; border-radius: 30px; }
.faq-lp-left h2 { font-size: clamp(28px,3.6vw,38px); margin: 16px 0; }
.faq-lp-left p { color: var(--muted); font-size: 15px; line-height: 1.6; max-width: 300px; }
.faq-lp-left .support { margin-top: 26px; font-size: 13px; color: var(--ink-2); display: flex; align-items: center; gap: 8px; }
.faq-lp-left .support svg { width: 15px; height: 15px; color: var(--brand-pink); }
.faq-lp-left .btn { border-radius: 40px; margin-top: 16px; }
@media (max-width: 860px) { .faq-lp { grid-template-columns: 1fr; gap: 26px; } }

/* ---- Pink footer ---- */
.footer-lp { background: var(--brand-grad); color: #fff; padding: 60px 0 30px; }
.footer-lp .name { font-family: "Quicksand", sans-serif; font-weight: 700; font-size: 26px; color: #fff; }
.footer-lp-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.2); }
.footer-lp h4 { font-size: 15px; font-weight: 700; margin-bottom: 16px; color: #fff; }
.footer-lp a { display: block; color: rgba(255,255,255,.82); font-size: 14px; padding: 5px 0; }
.footer-lp a:hover { color: #fff; }
.footer-lp .f-blurb { color: rgba(255,255,255,.82); font-size: 14px; margin-top: 14px; max-width: 280px; }
.footer-lp .f-note { color: rgba(255,255,255,.82); font-size: 13px; }
.footer-lp .sub-form { display: flex; background: #fff; border-radius: 10px; padding: 5px; margin-top: 14px; }
.footer-lp .sub-form input { flex: 1; min-width: 0; border: none; outline: none; padding: 8px 12px; font-family: inherit; font-size: 14px; color: var(--ink); background: transparent; }
.footer-lp .sub-form button { background: var(--ink); color: #fff; border-radius: 7px; padding: 8px 16px; font-weight: 700; font-size: 13px; white-space: nowrap; }
.footer-lp .sub-msg { font-size: 12.5px; color: #fff; margin-top: 8px; min-height: 16px; }
.footer-lp-bot { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; font-size: 13px; color: rgba(255,255,255,.85); flex-wrap: wrap; gap: 12px; }
.footer-lp-social { display: flex; gap: 10px; }
.footer-lp-social a { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.18); display: grid; place-items: center; padding: 0; }
.footer-lp-social svg { width: 15px; height: 15px; color: #fff; }
@media (max-width: 860px) { .footer-lp-top { grid-template-columns: 1fr 1fr; } }
