@font-face { font-family: 'Outfit'; src: url('../fonts/outfit-400.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Outfit'; src: url('../fonts/outfit-600.woff2') format('woff2'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Outfit'; src: url('../fonts/outfit-700.woff2') format('woff2'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Outfit'; src: url('../fonts/outfit-800.woff2') format('woff2'); font-weight: 800; font-display: swap; }
@font-face { font-family: 'Outfit'; src: url('../fonts/outfit-900.woff2') format('woff2'); font-weight: 900; font-display: swap; }
@font-face { font-family: 'Manrope'; src: url('../fonts/manrope-400.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Manrope'; src: url('../fonts/manrope-600.woff2') format('woff2'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Manrope'; src: url('../fonts/manrope-800.woff2') format('woff2'); font-weight: 800; font-display: swap; }

:root {
  --bg:       #04060f;
  --ink:      #f0f2ff;
  --muted:    #8890b0;
  --pink:     #ff2d78;
  --violet:   #8b2fff;
  --blue:     #4db8ff;
  --cyan:     #00e5ff;
  --glow:     rgba(255,45,120,.35);
  --glow-v:   rgba(139,47,255,.35);
  --glow-b:   rgba(77,184,255,.25);
  --r-card:   20px;
  --r-input:  12px;
  --glass:        rgba(255,255,255,.04);
  --glass-border: rgba(255,255,255,.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font: 400 17px/1.65 'Outfit', 'Manrope', system-ui, sans-serif;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin-inline: auto; padding-inline: 24px; }
.section { padding-block: 100px; position: relative; }
h1,h2,h3 { line-height: 1.12; letter-spacing: -.03em; font-weight: 800; font-family: 'Outfit', 'Manrope', sans-serif; }
h2 { font-size: clamp(28px, 4.5vw, 50px); }
h3 { font-size: 20px; margin-bottom: 10px; }
p { color: var(--muted); max-width: 65ch; }

/* ── GLOBAL BG CANVAS ── */
#bg-canvas {
  position: fixed; inset: 0; width: 100%; height: 100%;
  z-index: -1; pointer-events: none;
  opacity: .9;
}

/* ── GRADIENT TEXT ── */
.accent {
  background: linear-gradient(135deg, var(--pink), var(--violet));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BUTTONS ── */
.btn-primary, .btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  border-radius: 999px; padding: 14px 30px;
  font-weight: 700; font-size: 16px; font-family: 'Outfit', 'Manrope', sans-serif;
  text-decoration: none; cursor: pointer; border: 0;
  transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s;
  position: relative; overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--violet));
  color: #fff;
  box-shadow: 0 0 28px var(--glow), 0 0 56px rgba(139,47,255,.18);
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.18), transparent);
  opacity: 0; transition: opacity .3s;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 0 44px var(--glow), 0 0 88px rgba(139,47,255,.28); }
.btn-primary:active { transform: scale(.97); }
.btn-ghost {
  background: var(--glass); color: var(--ink);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: 0 0 20px var(--glow-b); }
.btn-ghost:active { transform: scale(.97); }

.btn-ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.3);
  transform: scale(0);
  animation: ripple-anim .55s linear;
  pointer-events: none;
}
@keyframes ripple-anim { to { transform: scale(4); opacity: 0; } }

/* ── CARDS ── */
.card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-card);
  padding: 30px;
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s, border-color .3s;
  transform-style: preserve-3d;
  backdrop-filter: blur(6px);
}
.card:hover {
  border-color: rgba(255,45,120,.35);
  box-shadow: 0 16px 50px rgba(0,0,0,.5), 0 0 32px rgba(255,45,120,.12), inset 0 1px 0 rgba(255,255,255,.08);
}

/* ── SCROLL REVEAL ── */
.rv { opacity: 0; transform: translateY(28px); transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1); }
.rv.on { opacity: 1; transform: none; }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 50;
  height: 72px; display: flex; align-items: center;
  background: rgba(4,6,15,.75); backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--glass-border);
}
.nav::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink), var(--violet), transparent);
  opacity: .35;
}
.nav .container { display: flex; align-items: center; gap: 20px; width: 100%; }

/* Brand logo — inline SVG heart + wordmark */
.nav a.brand {
  display: flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: 21px; font-family: 'Outfit', 'Manrope', sans-serif;
  letter-spacing: -.04em; text-decoration: none; color: var(--ink);
  flex-shrink: 0;
}
.nav a.brand .logo-heart-svg {
  height: 52px; width: 52px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(255,45,120,.5));
  transition: filter .3s, transform .3s;
  overflow: visible;
}
.nav a.brand:hover .logo-heart-svg {
  filter: drop-shadow(0 0 16px rgba(255,45,120,.8));
  transform: scale(1.08);
}
/* Phone-as-i: smartphone silhouette that reads as the letter "i" */
.brand-i-phone {
  height: 22px; width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(77,184,255,.6));
  animation: phone-pulse 2.6s ease-in-out infinite;
  position: relative; top: -1px;
}
@keyframes phone-pulse {
  0%,100% { filter: drop-shadow(0 0 3px rgba(77,184,255,.4)); }
  50%      { filter: drop-shadow(0 0 10px rgba(77,184,255,.9)); }
}
.brand-lova { color: var(--pink); }
.brand-call { color: var(--blue); }

.nav ul { display: flex; gap: 24px; list-style: none; margin-left: auto; padding: 0; }
.nav ul a {
  color: var(--muted); text-decoration: none; font-size: 15px; font-weight: 600;
  transition: color .2s; position: relative;
}
.nav ul a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 1px;
  background: var(--pink); transform: scaleX(0); transition: transform .3s;
}
.nav ul a:hover { color: var(--ink); }
.nav ul a:hover::after { transform: scaleX(1); }
.nav .btn-primary { padding: 10px 20px; font-size: 15px; white-space: nowrap; flex-shrink: 0; }
.nav-burger { display: none; background: none; border: 0; color: var(--ink); font-size: 26px; cursor: pointer; }

@media (max-width: 900px) {
  .nav ul { display: none; }
  .nav ul.open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(4,6,15,.97); backdrop-filter: blur(20px);
    padding: 24px; border-bottom: 1px solid var(--glass-border);
    margin: 0; z-index: 100;
  }
  .nav-burger { display: block; margin-left: auto; }
  .nav .btn-primary { display: none; }
  .nav a.brand .logo-heart-svg { height: 40px; width: 40px; }
}

/* ── HERO ── */
.hero {
  position: relative; min-height: 100dvh;
  display: flex; align-items: center; overflow: hidden;
}
.hero canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero .container { position: relative; z-index: 1; }
.hero-headline {
  font-size: clamp(38px, 5.8vw, 72px); font-weight: 900; max-width: 16ch;
  font-family: 'Outfit', 'Manrope', sans-serif;
  background: linear-gradient(140deg, #fff 0%, rgba(255,255,255,.75) 55%, var(--pink) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-headline.pulse {
  animation: hero-glow 5s ease-in-out infinite;
}
@keyframes hero-glow {
  0%,100% { filter: drop-shadow(0 0 0px rgba(255,45,120,0)); }
  50% { filter: drop-shadow(0 0 28px rgba(255,45,120,.5)); }
}
.hero-sub { margin-block: 22px 34px; font-size: 19px; color: rgba(240,242,255,.7); max-width: 50ch; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── SECTION DIVIDER ── */
.section-divider {
  border: none; height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet), var(--pink), var(--blue), transparent);
  opacity: .18;
}

/* ── HOW GRID ── */
.how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 44px; }
.step-num {
  font-size: 64px; font-weight: 900; font-family: 'Outfit', 'Manrope', sans-serif;
  background: linear-gradient(135deg, var(--pink), transparent);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 14px; display: block;
}

/* ── BENTO ── */
.bento { display: grid; grid-template-columns: 1.3fr .7fr; gap: 20px; margin-top: 44px; }
.bento .card:nth-child(1) { background: linear-gradient(135deg, rgba(255,45,120,.09), rgba(139,47,255,.05)); }
.bento .card:nth-child(4) { background: linear-gradient(135deg, rgba(77,184,255,.09), rgba(139,47,255,.05)); }
.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
@media (max-width: 900px) { .how-grid, .bento, .split-2 { grid-template-columns: 1fr; } }

/* ── INTEGRATIONS — Real brand colors via pill glow ── */
.marquee-v2 {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  margin-top: 48px;
}
.marquee-row-v2 {
  display: flex; align-items: center; gap: 20px;
  width: max-content; padding-block: 10px;
  animation: scrollx 30s linear infinite;
}
.marquee-row-v2.reverse { animation-direction: reverse; animation-duration: 26s; }
@keyframes scrollx { to { transform: translateX(-50%); } }

.int-pill {
  display: flex; align-items: center; gap: 12px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 999px; padding: 10px 20px;
  backdrop-filter: blur(8px);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  white-space: nowrap; cursor: default;
  flex-shrink: 0;
}
.int-pill:hover { transform: translateY(-4px) scale(1.04); }
.int-pill img, .int-pill svg { height: 26px; width: 26px; object-fit: contain; flex-shrink: 0; }
.int-pill span { font-size: 14px; font-weight: 700; color: var(--ink); }

.int-pill[data-brand="google-calendar"]:hover { border-color: #4285f4; box-shadow: 0 8px 28px rgba(0,0,0,.4), 0 0 18px rgba(66,133,244,.4); }
.int-pill[data-brand="gmail"]:hover           { border-color: #EA4335; box-shadow: 0 8px 28px rgba(0,0,0,.4), 0 0 18px rgba(234,67,53,.45); }
.int-pill[data-brand="outlook"]:hover         { border-color: #0078D4; box-shadow: 0 8px 28px rgba(0,0,0,.4), 0 0 18px rgba(0,120,212,.45); }
.int-pill[data-brand="google-sheets"]:hover   { border-color: #0f9d58; box-shadow: 0 8px 28px rgba(0,0,0,.4), 0 0 18px rgba(15,157,88,.4); }
.int-pill[data-brand="whatsapp"]:hover        { border-color: #25d366; box-shadow: 0 8px 28px rgba(0,0,0,.4), 0 0 18px rgba(37,211,102,.45); }
.int-pill[data-brand="slack"]:hover           { border-color: #E01E5A; box-shadow: 0 8px 28px rgba(0,0,0,.4), 0 0 20px rgba(224,30,90,.4), 0 0 20px rgba(54,197,240,.2); }
.int-pill[data-brand="teams"]:hover           { border-color: #6264A7; box-shadow: 0 8px 28px rgba(0,0,0,.4), 0 0 18px rgba(98,100,167,.5); }
.int-pill[data-brand="hubspot"]:hover         { border-color: #ff7a00; box-shadow: 0 8px 28px rgba(0,0,0,.4), 0 0 18px rgba(255,122,0,.45); }
.int-pill[data-brand="zapier"]:hover          { border-color: #ff4a1a; box-shadow: 0 8px 28px rgba(0,0,0,.4), 0 0 18px rgba(255,74,26,.45); }
.int-pill[data-brand="notion"]:hover          { border-color: #fff;    box-shadow: 0 8px 28px rgba(0,0,0,.4), 0 0 18px rgba(255,255,255,.2); }
.int-pill[data-brand="calendly"]:hover        { border-color: #006bff; box-shadow: 0 8px 28px rgba(0,0,0,.4), 0 0 18px rgba(0,107,255,.45); }
.int-pill[data-brand="airtable"]:hover        { border-color: #fc8019; box-shadow: 0 8px 28px rgba(0,0,0,.4), 0 0 18px rgba(252,128,25,.4); }
.int-pill[data-brand="viber"]:hover           { border-color: #7b5ea7; box-shadow: 0 8px 28px rgba(0,0,0,.4), 0 0 18px rgba(123,94,167,.5); }
.int-pill[data-brand="n8n"]:hover             { border-color: #ea4900; box-shadow: 0 8px 28px rgba(0,0,0,.4), 0 0 18px rgba(234,73,0,.45); }
.int-pill[data-brand="trello"]:hover          { border-color: #0052cc; box-shadow: 0 8px 28px rgba(0,0,0,.4), 0 0 18px rgba(0,82,204,.45); }
.int-pill[data-brand="make"]:hover            { border-color: #6d00cc; box-shadow: 0 8px 28px rgba(0,0,0,.4), 0 0 18px rgba(109,0,204,.45); }
.int-pill[data-brand="caldotcom"]:hover       { border-color: #aaa;    box-shadow: 0 8px 28px rgba(0,0,0,.4), 0 0 18px rgba(255,255,255,.15); }
.int-pill[data-brand="stripe"]:hover          { border-color: #635bff; box-shadow: 0 8px 28px rgba(0,0,0,.4), 0 0 18px rgba(99,91,255,.5); }
.int-pill[data-brand="intercom"]:hover        { border-color: #1f8ded; box-shadow: 0 8px 28px rgba(0,0,0,.4), 0 0 18px rgba(31,141,237,.45); }

/* Real brand color on logos — remove any CSS filter that would grey them out */
.int-pill img { filter: none !important; opacity: 1 !important; }

/* ── ROI ── */
.roi { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; margin-top: 44px; }
.roi label { display: block; font-size: 15px; color: var(--ink); font-weight: 600; margin-top: 18px; }
.roi-slider { width: 100%; margin: 8px 0 4px; accent-color: var(--pink); cursor: pointer; }
@media (max-width: 900px) { .roi { grid-template-columns: 1fr; } }

/* ── PRICING ── */
.pricing-toggle {
  display: flex; justify-content: center; margin-block: 28px 10px;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 999px; padding: 4px; max-width: 280px; margin-inline: auto;
}
.pt-btn {
  flex: 1; padding: 9px 18px; border: 0; background: none; color: var(--muted);
  font: 700 15px 'Outfit','Manrope',sans-serif; cursor: pointer; border-radius: 999px;
  transition: background .3s, color .3s;
}
.pt-btn.sel { background: linear-gradient(135deg, var(--pink), var(--violet)); color: #fff; box-shadow: 0 0 16px var(--glow); }
.pt-badge { font-size: 11px; background: rgba(255,255,255,.22); border-radius: 999px; padding: 2px 7px; margin-left: 5px; }
.plans { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 36px; }
.plan { display: flex; flex-direction: column; }
.plan .price {
  font-size: 46px; font-weight: 900; font-family: 'Outfit', 'Manrope', sans-serif; margin-block: 14px;
  background: linear-gradient(135deg, var(--ink), var(--muted));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.plan .price small { font-size: 14px; font-weight: 400; color: var(--muted); -webkit-text-fill-color: var(--muted); }
.plan ul { list-style: none; padding: 0; margin: 0 0 20px; flex: 1; }
.plan ul li { padding: 7px 0 7px 26px; position: relative; color: var(--muted); font-size: 15px; }
.plan ul li::before {
  content: '✓'; position: absolute; left: 0;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  font-weight: 800;
}
.plan.popular {
  border-color: rgba(255,45,120,.45);
  box-shadow: 0 0 48px rgba(255,45,120,.12), inset 0 1px 0 rgba(255,255,255,.07);
  background: linear-gradient(180deg, rgba(255,45,120,.07), var(--glass));
}
.pop-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--pink), var(--violet));
  color: #fff; font-size: 12px; font-weight: 700;
  border-radius: 999px; padding: 4px 14px; white-space: nowrap;
  box-shadow: 0 0 18px var(--glow);
}
@media (max-width: 1100px) { .plans { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .plans { grid-template-columns: 1fr; } }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--glass-border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; color: var(--ink);
  font: 700 17px 'Outfit','Manrope',sans-serif; padding: 20px 42px 20px 0;
  cursor: pointer; position: relative; transition: color .2s;
}
.faq-q::after {
  content: '+'; position: absolute; right: 4px;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  font-size: 26px; font-weight: 300;
  transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .4s cubic-bezier(.16,1,.3,1); }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p { padding-bottom: 20px; }
.faq-a a { color: var(--blue); }

/* ── FOOTER ── */
.footer { border-top: 1px solid var(--glass-border); padding-block: 60px; position: relative; }
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet), var(--pink), transparent);
  opacity: .28;
}
.footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; }
.footer h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 16px; font-weight: 700; }
.footer a { display: block; color: var(--muted); text-decoration: none; padding-block: 4px; font-size: 15px; transition: color .2s; }
.footer a:hover { color: var(--ink); }
@media (max-width: 768px) { .footer .cols { grid-template-columns: 1fr 1fr; } }

/* ── HEART FAB + WIZARD ── */
#heart-btn {
  position: fixed; right: 24px; bottom: 24px; z-index: 60;
  width: 64px; height: 64px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(4,6,15,.9); backdrop-filter: blur(12px);
  box-shadow: 0 0 28px var(--glow), 0 0 0 1px var(--glass-border);
  display: grid; place-items: center;
  animation: heartpulse 3.2s ease-in-out infinite;
  transition: transform .2s;
}
#heart-btn:hover { transform: scale(1.08); }
@keyframes heartpulse {
  0%,100% { box-shadow: 0 0 18px var(--glow); }
  50%      { box-shadow: 0 0 46px rgba(255,45,120,.7), 0 0 70px rgba(255,45,120,.28); }
}
#wizard-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.58); z-index: 70; backdrop-filter: blur(4px); }
#wizard {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(490px,100vw); z-index: 71;
  background: rgba(7,11,28,.97); backdrop-filter: blur(20px);
  border-left: 1px solid var(--glass-border);
  padding: 68px 34px 34px; overflow-y: auto;
  transform: translateX(100%); transition: transform .38s cubic-bezier(.16,1,.3,1);
}
#wizard.open { transform: none; box-shadow: -36px 0 72px rgba(0,0,0,.55); }
#wizard-close {
  position: absolute; top: 18px; right: 18px;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 50%; width: 34px; height: 34px;
  color: var(--muted); font-size: 17px; cursor: pointer;
  display: grid; place-items: center; transition: color .2s, border-color .2s;
}
#wizard-close:hover { color: var(--ink); border-color: var(--pink); }
#wizard-progress { height: 3px; background: var(--glass); border-radius: 999px; margin-bottom: 30px; }
#wizard-progress span {
  display: block; height: 100%; width: 0; border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--violet), var(--blue));
  transition: width .38s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 0 10px var(--glow);
}
.wz-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 22px; }
.wz-opt {
  padding: 16px 12px; border: 1px solid var(--glass-border);
  border-radius: var(--r-card); background: var(--glass); color: var(--ink);
  font: 700 15px 'Outfit','Manrope',sans-serif; cursor: pointer; text-align: center;
  transition: border-color .22s, box-shadow .22s, transform .22s, background .22s;
  backdrop-filter: blur(6px);
}
.wz-opt:hover, .wz-opt.sel {
  border-color: var(--pink); box-shadow: 0 0 20px rgba(255,45,120,.22);
  transform: translateY(-2px); background: rgba(255,45,120,.07);
}
.wz-label { display: block; font-size: 14px; color: var(--muted); margin-top: 18px; font-weight: 600; }
.wz-input {
  width: 100%; padding: 14px; margin-top: 7px; border-radius: var(--r-input);
  border: 1px solid var(--glass-border); background: var(--glass);
  color: var(--ink); font: 400 16px 'Outfit','Manrope',sans-serif;
  transition: border-color .22s, box-shadow .22s;
}
.wz-input:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 18px rgba(255,45,120,.18); }
.wz-err { color: #ff6b9d; font-size: 14px; margin-top: 8px; display: none; }

/* ── CLICK EFFECTS ── */
.particle {
  position: fixed; border-radius: 50%; pointer-events: none; z-index: 9998;
  animation: particle-fly .75s ease-out forwards;
}
@keyframes particle-fly {
  0%   { opacity: 1; transform: scale(1) translate(0,0); }
  100% { opacity: 0; transform: scale(0) translate(var(--tx), var(--ty)); }
}
.click-ripple {
  position: fixed; border-radius: 50%; pointer-events: none; z-index: 9997;
  width: 56px; height: 56px; border: 2px solid var(--pink);
  animation: click-ripple-anim .55s ease-out forwards;
  transform: translate(-50%,-50%) scale(0);
}
@keyframes click-ripple-anim {
  0%   { transform: translate(-50%,-50%) scale(0); opacity: 1; }
  100% { transform: translate(-50%,-50%) scale(3); opacity: 0; }
}

/* ── LEGAL ── */
.legal h1 { font-size: clamp(30px,4vw,50px); margin-bottom: 26px; }
.legal h2 { font-size: 24px; margin: 40px 0 12px; }
.legal p, .legal li { color: var(--muted); }
.legal ul { padding-left: 24px; }

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .marquee-row-v2 { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  html { scroll-behavior: auto; }
  #heart-btn { animation: none; }
  .brand-sep { animation: none; }
}

/* ══ v2.1 overrides ══ */

/* Heart FAB: μόνο η καρδιά, χωρίς κύκλο, μεγαλύτερη, συνεχίζει να πάλλεται */
#heart-btn {
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
  width: 84px !important;
  height: 84px !important;
  padding: 0 !important;
  display: grid; place-items: center;
  animation: heartbeat-scale 3.2s ease-in-out infinite !important;
}
#heart-btn img { width: 100% !important; height: auto !important; filter: drop-shadow(0 0 16px rgba(255,45,120,.55)); }
#heart-btn:hover { transform: scale(1.1); }
@keyframes heartbeat-scale {
  0%, 100% { transform: scale(1); }
  12% { transform: scale(1.12); }
  24% { transform: scale(1); }
  36% { transform: scale(1.08); }
  48% { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) { #heart-btn { animation: none !important; } }

/* Wizard carousel */
.wz-step { opacity: 0; transform: translateX(36px); transition: opacity .35s cubic-bezier(.16,1,.3,1), transform .35s cubic-bezier(.16,1,.3,1); }
.wz-step.from-left { transform: translateX(-36px); }
.wz-step.in { opacity: 1; transform: none; }
.wz-count { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.wz-q { font-size: 22px; margin-bottom: 6px; }
.wz-back { background: none; border: 0; color: var(--muted); font: 600 15px 'Outfit','Manrope',sans-serif; cursor: pointer; padding: 12px 0; margin-top: 18px; }
.wz-back:hover { color: var(--ink); }
.wz-nav-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 22px; flex-direction: row-reverse; }
.wz-textarea { resize: vertical; min-height: 110px; font-family: inherit; }
.wz-sending { display: flex; gap: 8px; margin-top: 24px; }
.wz-sending span { width: 10px; height: 10px; border-radius: 50%; background: var(--pink); animation: wzdot 1s ease-in-out infinite; }
.wz-sending span:nth-child(2) { animation-delay: .15s; background: var(--violet); }
.wz-sending span:nth-child(3) { animation-delay: .3s; background: var(--blue); }
@keyframes wzdot { 0%,100% { transform: translateY(0); opacity: .5; } 50% { transform: translateY(-8px); opacity: 1; } }
.wz-heart-beat { animation: heartbeat-scale 2.4s ease-in-out infinite; }

/* Solutions grid */
.sol-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.sol-card h3 { display: flex; align-items: center; gap: 10px; }
.sol-card .sol-tag { font-size: 13px; color: var(--blue); margin-bottom: 10px; display: block; }
@media (max-width: 1000px) { .sol-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .sol-grid { grid-template-columns: 1fr; } }

/* Legal pages */
.legal h1 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 8px; }
.legal .legal-updated { font-size: 14px; color: var(--muted); margin-bottom: 36px; }
.legal h2 { font-size: 22px; margin: 38px 0 12px; }
.legal h3 { font-size: 17px; margin: 24px 0 8px; }
.legal p, .legal li { color: var(--muted); font-size: 16px; }
.legal ul { padding-left: 22px; }
.legal .legal-toc { border: 1px solid rgba(242,243,247,.1); border-radius: var(--r-card); padding: 20px 24px; margin: 24px 0 8px; }
.legal .legal-toc a { display: block; color: var(--blue); text-decoration: none; padding: 4px 0; font-size: 15px; }
.legal .legal-toc a:hover { text-decoration: underline; }
