/* ============================================
   GetCustomers — Black & White, conversion-focused
   ============================================ */

:root {
  --bg: #fafaf7;            /* warm off-white */
  --bg-2: #ffffff;
  --bg-dark: #0b0b0b;
  --ink: #0b0b0b;
  --ink-2: #2a2a2a;
  --ink-dim: #5a5a5a;
  --ink-mute: #8a8a8a;
  --line: #e6e3dc;
  --line-strong: #1a1a1a;
  --accent: #0b0b0b;        /* black is the accent */
  --ok: #1a8a4a;
  --danger: #b3261e;

  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  --maxw: 1180px;
  --pad: clamp(20px, 4vw, 56px);
  --radius: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
em { font-style: italic; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px var(--pad);
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.nav__logo {
  display: inline-flex;
  color: var(--ink);
  line-height: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 30px);
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500;
}

.nav__links a { transition: color 0.2s; }
.nav__links a:hover { color: var(--ink); }

.nav__cta {
  background: var(--ink);
  color: var(--bg) !important;
  padding: 9px 16px;
  border-radius: 100px;
  font-weight: 600;
  transition: transform 0.2s, background 0.2s;
}
.nav__cta:hover {
  background: var(--ink-2) !important;
  transform: translateY(-1px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: clamp(60px, 12vw, 130px) var(--pad) clamp(50px, 8vw, 90px);
  position: relative;
}

.hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-dim);
  padding: 8px 14px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 100px;
  margin-bottom: 36px;
  animation: fadeUp 0.7s ease-out;
}

.dot {
  width: 7px; height: 7px;
  background: var(--ok);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(26, 138, 74, 0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero__title {
  font-family: var(--serif);
  font-size: clamp(38px, 7vw, 84px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  animation: fadeUp 0.9s ease-out 0.1s both;
  max-width: 14ch;
}

.hero__title .under {
  position: relative;
  display: inline-block;
}
.hero__title .under::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 3px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  animation: drawLine 1.2s ease-out 0.8s forwards;
}
@keyframes drawLine { to { transform: scaleX(1); } }

.hero__sub {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--ink-dim);
  max-width: 600px;
  margin-bottom: 36px;
  font-weight: 400;
  line-height: 1.55;
  animation: fadeUp 0.9s ease-out 0.2s both;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeUp 0.9s ease-out 0.3s both;
}

.hero__trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 14px;
  color: var(--ink-dim);
  animation: fadeUp 0.9s ease-out 0.4s both;
}
.hero__trust li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__trust li::before {
  content: '✓';
  color: var(--ok);
  font-weight: 700;
}
.hero__trust strong { color: var(--ink); font-weight: 600; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn--primary {
  background: var(--ink);
  color: var(--bg-2);
}
.btn--primary:hover {
  background: var(--ink-2);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--bg-2);
}

.btn--lg {
  padding: 18px 34px;
  font-size: 16px;
  width: 100%;
}

/* ============================================
   STRIP (social proof bar)
   ============================================ */
.strip {
  background: var(--ink);
  color: var(--bg-2);
  padding: 28px var(--pad);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(20px, 5vw, 64px);
}

.strip__item {
  text-align: center;
}

.strip__num {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.strip__lbl {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

.strip__divider {
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 700px) {
  .strip__divider { display: none; }
}

/* ============================================
   SECTION HEAD
   ============================================ */
.section__head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.section__num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.1em;
  padding-top: 12px;
  flex-shrink: 0;
}

.section__title {
  font-family: var(--serif);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
  max-width: 22ch;
}
.section__title em {
  font-style: italic;
  font-variation-settings: 'SOFT' 80;
}

/* ============================================
   WHO WE HELP
   ============================================ */
.who {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(60px, 9vw, 110px) var(--pad);
}

.who__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.chip {
  font-family: var(--sans);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: all 0.2s;
  cursor: default;
}
.chip:hover {
  background: var(--ink);
  color: var(--bg-2);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.who__note {
  font-size: 17px;
  color: var(--ink-dim);
  font-family: var(--serif);
  font-style: italic;
  margin-top: 8px;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(60px, 9vw, 110px) var(--pad);
}

.how > .section__head,
.how > .how__steps,
.how > .how__cta {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}

.how__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}

.step {
  position: relative;
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--ink);
  color: var(--bg-2);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 18px;
}

.step h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
  line-height: 1.2;
}

.step p {
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.65;
}
.step p em {
  color: var(--ink);
  font-style: italic;
}

.how__cta {
  text-align: center;
}
.how__cta .btn { display: inline-flex; }

/* ============================================
   TESTIMONIALS / TRUST
   ============================================ */
.testimonials {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(60px, 9vw, 110px) var(--pad);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.t-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.3s, border-color 0.3s;
}
.t-card:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
}

.t-card__icon {
  font-size: 20px;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.t-card h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}

.t-card p {
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================
   SERVICES (collapsible)
   ============================================ */
.services {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(60px, 9vw, 110px) var(--pad);
}

.services > .section__head,
.services > .services__intro,
.services > .services__list {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}

.services .section__head {
  border-bottom-color: rgba(255,255,255,0.15);
}
.services .section__num { color: rgba(255,255,255,0.5); }
.services .section__title { color: var(--bg); }

.services__intro {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 720px;
  margin-bottom: 36px;
  line-height: 1.65;
}

.services__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.srv {
  border-top: 1px solid rgba(255,255,255,0.12);
}
.srv:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.srv summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 90px 1fr 30px;
  align-items: center;
  gap: 24px;
  transition: padding-left 0.25s;
}
.srv summary::-webkit-details-marker { display: none; }
.srv summary:hover { padding-left: 8px; }

.srv__tag {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 5px 10px;
  border-radius: 100px;
  text-align: center;
}

.srv__name {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--bg);
}

.srv__arrow {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  text-align: right;
  transition: transform 0.3s;
  line-height: 1;
}

.srv[open] .srv__arrow { transform: rotate(45deg); color: var(--bg); }

.srv p {
  color: rgba(255,255,255,0.72);
  font-size: 15.5px;
  line-height: 1.7;
  padding: 0 0 24px 114px;
  max-width: 70ch;
}

@media (max-width: 600px) {
  .srv summary { grid-template-columns: 70px 1fr 24px; gap: 14px; }
  .srv p { padding-left: 0; }
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(60px, 9vw, 110px) var(--pad);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 820px;
}

.q {
  border-top: 1px solid var(--line);
}
.q:last-child {
  border-bottom: 1px solid var(--line);
}

.q summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-family: var(--serif);
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  transition: color 0.2s;
}
.q summary::-webkit-details-marker { display: none; }
.q summary:hover { color: var(--ink-2); }

.q__arrow {
  font-size: 24px;
  font-weight: 300;
  color: var(--ink-mute);
  transition: transform 0.3s, color 0.3s;
  line-height: 1;
  flex-shrink: 0;
}

.q[open] .q__arrow { transform: rotate(45deg); color: var(--ink); }

.q p {
  color: var(--ink-dim);
  font-size: 16px;
  line-height: 1.7;
  padding: 0 40px 22px 0;
  max-width: 68ch;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(70px, 10vw, 130px) var(--pad);
}

.contact__inner {
  max-width: 760px;
  margin: 0 auto;
}

.contact__title {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 16px;
  color: var(--bg);
  text-align: center;
}

.contact__sub {
  color: rgba(255,255,255,0.72);
  font-size: 17px;
  text-align: center;
  margin-bottom: 44px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.form {
  background: var(--bg-2);
  color: var(--ink);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 44px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  text-align: left;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field--check {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 11px;
  font-size: 13.5px;
  color: var(--ink-dim);
  margin-top: 4px;
  line-height: 1.5;
  width: 100%;
}
.field--check input {
  margin-top: 3px;
  accent-color: var(--ink);
  width: 16px; height: 16px;
  cursor: pointer;
  flex-shrink: 0;
}
.field--check span {
  flex: 1;
  min-width: 0;
}
.field--check a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}

.field__label {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.field__label em { color: var(--ink); font-style: normal; }

.field input,
.field textarea {
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 13px 15px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15.5px;
  width: 100%;
  resize: vertical;
  transition: border-color 0.2s, background 0.2s;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-mute); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--bg-2);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form__note {
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.55;
  text-align: center;
  margin-top: -2px;
}

.form__status {
  font-size: 14px;
  text-align: center;
  min-height: 20px;
}
.form__status.is-ok { color: var(--ok); font-weight: 500; }
.form__status.is-err { color: var(--danger); font-weight: 500; }

/* ============================================
   FOOTER
   ============================================ */
.foot {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 40px var(--pad) 30px;
}

.foot__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.foot__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 19px;
}

.foot__pitch {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-dim);
  font-size: 15px;
}

.foot__links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--ink-dim);
  font-weight: 500;
}
.foot__links a:hover { color: var(--ink); }

.foot__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  width: 100%;
  max-width: 600px;
  font-size: 12px;
  color: var(--ink-mute);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 640px) {
  .nav__links a:not(.nav__cta) { display: none; }
  .form__row { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
}
