/* ═══════════════════════════════════════════════════
   ClearTasks — stylesheet
   Edit colours and spacing from the tokens below.
   ═══════════════════════════════════════════════════ */

:root {
  --navy:        #0b1f3a;
  --navy-soft:   #16305c;
  --ink:         #12213f;
  --blue:        #3d7fff;
  --blue-dark:   #2a5fd1;
  --blue-pale:   #7fa6ff;
  --orange:      #ef8354;
  --orange-dark: #d9663a;

  --text:        #3a4a6b;
  --text-soft:   #5a6a8f;
  --text-mute:   #8090ac;

  --bg:          #faf8f4;
  --bg-alt:      #f2eee6;
  --card:        #ffffff;
  --line:        rgba(18, 33, 63, 0.08);

  --font:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-head:   'Plus Jakarta Sans', var(--font);

  --wrap:        1280px;
  --pad-x:       48px;
  --radius:      18px;
}

/* ── base ───────────────────────────────────────── */

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
::selection { background: var(--blue); color: #fff; }

a { color: var(--blue); }
a:hover { color: var(--blue-dark); }

h1, h2, h3 { font-family: var(--font-head); color: var(--navy); }

.lead { font-size: 17px; line-height: 1.65; color: var(--text-soft); }

/* ── buttons ────────────────────────────────────── */

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  white-space: nowrap;
  transition: transform .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn--blue  { background: var(--blue); color: #fff; box-shadow: 0 12px 24px -8px rgba(61,127,255,.5); }
.btn--blue:hover  { background: var(--blue-dark); color: #fff; }

.btn--dark  { background: var(--navy); color: #fff; padding: 12px 24px; font-size: 14.5px; }
.btn--dark:hover  { background: var(--navy-soft); color: #fff; }

.btn--ghost { background: transparent; color: var(--navy); border: 1.5px solid rgba(18,33,63,.16); font-weight: 600; }
.btn--ghost:hover { color: var(--navy); border-color: rgba(18,33,63,.32); }

/* ── shared section furniture ───────────────────── */

.section {
  padding: 96px var(--pad-x);
  max-width: var(--wrap);
  margin: 0 auto;
}

.section__head {
  max-width: 620px;
  margin: 0 auto 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.section__head h2 { font-size: 36px; font-weight: 800; letter-spacing: -.01em; }
.section__head p  { color: var(--text-soft); font-size: 16px; }

.eyebrow {
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.eyebrow--light { color: var(--blue-pale); }

/* ── nav ────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px var(--pad-x);
  background: rgba(250, 248, 244, .9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 21px;
  color: var(--navy);
  text-decoration: none;
}
.brand:hover { color: var(--navy); }

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand__logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}
.brand--sm { font-size: 16px; }
.brand--sm .brand__mark { width: 26px; height: 26px; border-radius: 8px; font-size: 13px; }

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
}
.nav__links a:hover { color: var(--blue); }

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 22px;
  line-height: 1;
  color: var(--navy);
  cursor: pointer;
  padding: 4px 8px;
}

/* ── hero ───────────────────────────────────────── */

.hero {
  display: flex;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
  padding: 76px var(--pad-x) 88px;
  max-width: var(--wrap);
  margin: 0 auto;
}

.hero__copy {
  flex: 1 1 440px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero__copy h1 {
  font-size: 52px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.02em;
}
.hero__copy .lead { font-size: 18px; max-width: 480px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 131, 84, .12);
  color: var(--orange-dark);
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  width: fit-content;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 6px; }

.stats { display: flex; gap: 28px; margin-top: 14px; flex-wrap: wrap; }
.stats strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 24px;
  color: var(--navy);
}
.stats span { font-size: 13px; color: #6b7896; }

.hero__media { flex: 1 1 420px; min-width: 300px; position: relative; }

.hero__photo {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3.1;
  background: #e7ecf7;
  box-shadow: 0 30px 60px -20px rgba(11, 31, 58, .25);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }

.hero__badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--card);
  border-radius: 16px;
  padding: 12px 18px 12px 12px;
  box-shadow: 0 16px 32px -12px rgba(11, 31, 58, .22);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 250px;
  font-size: 13px;
  line-height: 1.35;
  color: #334066;
}
.hero__badge img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  flex-shrink: 0;
}
.hero__badge strong { color: var(--navy); }

/* ── trust strip ────────────────────────────────── */

.trust {
  padding: 26px var(--pad-x);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.trust__label {
  font-size: 13px;
  color: var(--text-mute);
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.trust__places { display: flex; gap: 36px; flex-wrap: wrap; opacity: .55; }
.trust__places li {
  font-family: var(--font-head);
  font-weight: 700;
  color: #334066;
  font-size: 15px;
}

/* ── service cards ──────────────────────────────── */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: var(--card);
  border: 1px solid rgba(18, 33, 63, .07);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px -18px rgba(11, 31, 58, .28);
}

.card__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--icon, var(--blue));
  box-shadow: 0 6px 14px -4px var(--icon, var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
}
.card__icon svg { width: 21px; height: 21px; }

.card h3 { font-size: 18px; font-weight: 700; }
.card p  { font-size: 14.5px; line-height: 1.55; color: var(--text-soft); }

/* ── how it works ───────────────────────────────── */

.how { background: var(--navy); padding: 96px var(--pad-x); }
.how__inner { max-width: var(--wrap); margin: 0 auto; }
.how .section__head { margin-bottom: 64px; }
.how .section__head h2 { color: #fff; }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.steps li { display: flex; flex-direction: column; gap: 12px; }
.steps__n {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  color: var(--navy);
  background: var(--blue-pale);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps h3 { font-size: 17.5px; font-weight: 700; color: #fff; }
.steps p  { font-size: 14.5px; line-height: 1.55; color: #a9b6d6; }

/* ── meet your VA ───────────────────────────────── */

.meet {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 96px var(--pad-x);
  display: flex;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
}

.meet__media { flex: 0 1 360px; min-width: 260px; }
.meet__media img {
  width: 100%;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 26px 48px -24px rgba(11, 31, 58, .35);
}

.meet__copy {
  flex: 1 1 420px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.meet__copy h2 { font-size: 36px; font-weight: 800; letter-spacing: -.01em; }
.meet__copy .lead { max-width: 520px; }

.perks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-top: 6px;
  width: 100%;
}
.perks li { display: flex; gap: 11px; align-items: flex-start; }
.perks span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e6efff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.perks div { font-size: 14.5px; line-height: 1.5; color: var(--text); }
.perks strong { display: block; color: var(--navy); }

/* ── testimonials ───────────────────────────────── */

.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.quote {
  background: #fff8f2;
  border: 1px solid rgba(217, 102, 58, .14);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.quote__stars { color: var(--orange); font-size: 16px; letter-spacing: 2px; }
.quote blockquote { font-size: 15px; line-height: 1.6; color: var(--text); font-style: italic; }
.quote figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  font-size: 12.5px;
  color: var(--text-mute);
}
.quote figcaption strong { display: block; font-size: 14px; color: var(--navy); }
.quote__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  background: repeating-linear-gradient(135deg, #f7d9c4, #f7d9c4 5px, #f2c4a4 5px, #f2c4a4 10px);
}

/* ── faq ────────────────────────────────────────── */

.faq { padding: 96px var(--pad-x); background: var(--bg-alt); }
.faq__inner { max-width: 760px; margin: 0 auto; }
.faq .section__head { margin-bottom: 48px; }

.accordion { display: flex; flex-direction: column; gap: 12px; }

.acc {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.acc__q {
  width: 100%;
  background: none;
  border: 0;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--navy);
}
.acc__icon { font-size: 20px; color: var(--blue); flex-shrink: 0; }

.acc__a { display: none; }
.acc.is-open .acc__a { display: block; }
.acc__a p {
  padding: 0 24px 22px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-soft);
}

/* ── cta banner ─────────────────────────────────── */

.cta {
  margin: 0 var(--pad-x) 48px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  padding: 0 var(--pad-x);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.cta__copy {
  flex: 0 1 340px;
  min-width: 260px;
  padding: 72px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.cta__copy h2 { font-size: 34px; font-weight: 800; color: #fff; max-width: 520px; letter-spacing: -.01em; }
.cta__copy p  { color: #a9b6d6; font-size: 16px; max-width: 440px; }

.cta__media { flex: 0 1 260px; min-width: 180px; display: flex; justify-content: center; }
.cta__media img { width: 100%; max-width: 280px; }

/* ── contact form (sits inside the cta banner) ──── */

.form {
  flex: 1 1 420px;
  min-width: 280px;
  align-self: center;
  margin: 44px 0;
  background: var(--card);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 24px 50px -24px rgba(0, 0, 0, .45);
}

.form__row { display: flex; gap: 14px; flex-wrap: wrap; }
.form__row .field { flex: 1 1 180px; }

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

.field__label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
}

.field__input {
  font-family: var(--font);
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  width: 100%;
  transition: border-color .15s, box-shadow .15s;
}
.field__input::placeholder { color: var(--text-mute); }
.field__input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(61, 127, 255, .15);
}
.field__input--area { resize: vertical; min-height: 92px; line-height: 1.55; }

/* Invalid state is only painted after a submit attempt. */
.form.is-checked .field__input:invalid {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(239, 131, 84, .15);
}

/* Honeypot. Off-screen rather than display:none so bots still see it. */
.form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__submit { align-self: flex-start; border: 0; cursor: pointer; font-family: var(--font); }
.form__submit[disabled] { opacity: .6; cursor: not-allowed; transform: none; }

.form__status { font-size: 14.5px; line-height: 1.55; margin: -4px 0 0; }
.form__status:empty { display: none; }
.form__status.is-ok   { color: #1f7a4d; }
.form__status.is-fail { color: var(--orange-dark); }

/* ── footer ─────────────────────────────────────── */

.footer {
  padding: 40px var(--pad-x);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: var(--wrap);
  margin: 0 auto;
}
.footer__copy { font-size: 13.5px; color: var(--text-mute); }
.footer__links { display: flex; gap: 20px; }
.footer__links a { color: var(--text-soft); text-decoration: none; font-size: 13.5px; }

/* ── whatsapp float ─────────────────────────────── */

.wa {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 12px 14px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .38);
  transition: transform .18s ease, box-shadow .18s ease;
}
.wa:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(37, 211, 102, .48); }
.wa svg { width: 24px; height: 24px; flex: none; }

@media (max-width: 560px) {
  .wa {
    right: 16px;
    bottom: 16px;
    padding: 14px;
    gap: 0;
  }
  .wa__label { display: none; }
}

/* ── responsive ─────────────────────────────────── */

@media (max-width: 980px) {
  :root { --pad-x: 28px; }

  .nav__toggle { display: block; order: 3; }
  .nav__cta { display: none; }

  .nav__links {
    display: none;
    order: 4;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 10px 0; width: 100%; }

  .hero { padding-top: 48px; padding-bottom: 72px; gap: 40px; }
  .hero__copy h1 { font-size: 38px; }
  .hero__copy .lead { font-size: 16.5px; }
  .hero__badge { left: 0; bottom: -18px; }

  .section, .how, .faq, .meet { padding-top: 68px; padding-bottom: 68px; }
  .section__head h2, .meet__copy h2 { font-size: 28px; }
  .cta__copy h2 { font-size: 27px; }
  /* Not enough room for three columns — drop the portrait, keep copy + form. */
  .cta { gap: 32px; }
  .cta__copy { flex-basis: 100%; padding: 52px 0 0; }
  .cta__media { display: none; }
  .form { flex-basis: 100%; margin: 0 0 52px; }
  .meet { gap: 36px; }
  .meet__media { flex-basis: 100%; max-width: 320px; margin: 0 auto; }
}

@media (max-width: 560px) {
  :root { --pad-x: 20px; }

  .hero__copy h1 { font-size: 31px; }
  .hero__actions .btn { width: 100%; text-align: center; }
  .stats { gap: 20px; }

  .cta { margin-left: 20px; margin-right: 20px; padding-left: 20px; padding-right: 20px; }
  .cta__copy { padding: 44px 0 0; }

  .form { padding: 20px; margin-bottom: 44px; }
  .form__submit { align-self: stretch; text-align: center; }

  .footer { justify-content: center; text-align: center; }
}
