/* Shared layout for all subpages */
:root {
  --brand-1: #FF1F8F;
  --brand-2: #FF7A1A;
  --brand-deep: #D81E64;
  --brand-soft: #FFE7EE;
  --brand-grad: linear-gradient(135deg, #FF1F8F 0%, #FF4A4A 50%, #FF7A1A 100%);
  --brand-grad-soft: linear-gradient(135deg, rgba(255,31,143,0.10) 0%, rgba(255,122,26,0.10) 100%);
  --warm: #FBF7F4;
  --warm-2: #F4EFE9;
  --white: #FFFFFF;
  --ink: #1A1A24;
  --text-2: #6B6B73;
  --text-3: #9A9AA1;
  --border: #ECE6E2;
  --border-strong: #DDD6D0;
  --link-blue: #0A66C2;
  --good: #1A8A4A;
  --trustpilot: #00B67A;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; scroll-behavior: smooth; }
body {
  font-family: "Poppins", system-ui, sans-serif;
  color: var(--ink); background: var(--warm);
  -webkit-font-smoothing: antialiased; font-weight: 400; line-height: 1.55;
}
h1,h2,h3,h4 { font-family: "Poppins", sans-serif; font-weight: 700; letter-spacing: -0.02em; line-height: 1.08; margin: 0; text-wrap: balance; }
h1,h2 { font-weight: 800; }
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .wrap { padding: 0 20px; } }

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

.btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 24px; border-radius: 10px; font-weight: 600; font-size: 15px; line-height: 1; transition: transform .15s, box-shadow .2s, background .2s, color .2s, border-color .2s; white-space: nowrap; }
.btn:hover { transform: translateY(-1px); }
.btn-brand { background: var(--brand-grad); color: #fff; box-shadow: 0 8px 22px -8px rgba(255,74,74,0.55); }
.btn-brand:hover { box-shadow: 0 14px 30px -8px rgba(255,74,74,0.65); }
.btn-outline { background: var(--white); color: var(--ink); border: 1px solid var(--border-strong); }
.btn-outline:hover { border-color: var(--ink); }
.btn-linkedin { background: var(--link-blue); color: #fff; }
.btn-linkedin:hover { background: #084d92; }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: #f4f4f4; }
.btn-sm { padding: 12px 18px; font-size: 14px; border-radius: 8px; }
.arrow { transition: transform .2s; display: inline-block; }
.btn:hover .arrow { transform: translateX(3px); }

/* Logo */
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo img { height: 36px; width: auto; display: block; }

/* Trustpilot top bar */
.top-bar { background: var(--ink); color: #fff; font-size: 13px; }
.top-bar-inner { display: flex; align-items: center; justify-content: center; gap: 14px; height: 40px; flex-wrap: wrap; text-align: center; }
.tp-stars { display: inline-flex; gap: 2px; background: var(--trustpilot); padding: 4px 6px; border-radius: 3px; }
.tp-stars svg { width: 14px; height: 14px; }
.top-bar a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.top-sep { color: rgba(255,255,255,0.3); }
@media (max-width: 560px) { .top-bar { display: none; } }

/* Nav */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(251,247,244,0.88); backdrop-filter: saturate(150%) blur(12px); -webkit-backdrop-filter: saturate(150%) blur(12px); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link { font-size: 15px; font-weight: 500; color: var(--ink); padding: 8px 0; display: inline-flex; align-items: center; gap: 6px; }
.nav-link:hover { color: var(--brand-1); }
.nav-link.active { color: var(--brand-1); font-weight: 600; }
.nav-link .caret {
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  opacity: .6;
}
@media (max-width: 980px) { .nav-links, .nav-cta { display: none; } }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px); left: -20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px;
  min-width: 280px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity .15s, transform .15s, visibility .15s;
  z-index: 60;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-item { display: flex; gap: 12px; padding: 12px; border-radius: 10px; align-items: flex-start; }
.dropdown-item:hover { background: var(--warm); }
.dropdown-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--brand-grad-soft);
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 36px; color: var(--brand-1);
}
.dropdown-icon svg { width: 18px; height: 18px; }
.dropdown-text strong { display: block; font-weight: 600; font-size: 14px; }
.dropdown-text small { color: var(--text-2); font-size: 12px; }

/* Page hero */
.page-hero { padding: 88px 0 56px; position: relative; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 360px at 80% 0%, rgba(255,122,26,0.10), transparent 60%),
    radial-gradient(600px 360px at 10% 100%, rgba(255,31,143,0.10), transparent 60%);
  pointer-events: none;
}
.page-hero .wrap { position: relative; text-align: center; }
.page-hero .eyebrow-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid var(--border-strong); background: var(--white);
  font-size: 12px; font-weight: 600; color: var(--ink);
  margin-bottom: 22px;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.page-hero .eyebrow-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-grad); box-shadow: 0 0 0 4px rgba(255,31,143,0.10); }
.page-hero h1 { font-size: clamp(40px, 5.4vw, 64px); margin-bottom: 18px; max-width: 760px; margin-left: auto; margin-right: auto; }
.page-hero .lead { color: var(--text-2); font-size: 19px; max-width: 640px; margin: 0 auto; }

/* Section base */
section.block { padding: 80px 0; }
.block.warm { background: var(--warm); }
.block.white { background: var(--white); }
.section-head { text-align: center; margin-bottom: 48px; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); }
.section-head p { color: var(--text-2); margin-top: 14px; font-size: 17px; }
.eyebrow { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-2); margin-bottom: 12px; }

/* Footer (warm) */
footer.lp-foot {
  background: var(--warm-2); color: var(--ink);
  padding: 56px 0;
  font-size: 14px;
  border-top: 1px solid var(--border);
}
.lp-foot-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.lp-foot a { color: var(--ink); }
.lp-foot a:hover { color: var(--brand-1); }
.lp-foot .links { display: flex; gap: 24px; flex-wrap: wrap; }
