/* Targetolog landing — premium, calm, confident. Dark base, single warm accent.
   No framework. Mobile-first. Brand/pixel/contacts flow from window.SITE. */

:root {
  --bg: #0b0d10;
  --bg-2: #12161b;
  --card: #161b21;
  --line: #232a32;
  --ink: #eef2f6;
  --muted: #98a3af;
  --accent: #f4c752;      /* warm gold */
  --accent-ink: #1a1408;
  --ok: #4ec98a;
  --radius: 16px;
  --maxw: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Onest", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { line-height: 1.15; margin: 0 0 .5em; font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 5.2vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.2rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; }
a { color: inherit; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.muted { color: var(--muted); }
.eyebrow {
  display: inline-block; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 14px;
}
section { padding: 72px 0; border-top: 1px solid var(--line); }
section:first-of-type { border-top: none; }
.section-head { max-width: 720px; margin-bottom: 40px; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px; border-radius: 999px; font-weight: 600; font-size: 1rem;
  text-decoration: none; border: 1px solid var(--line); background: transparent; color: var(--ink);
  cursor: pointer; transition: transform .12s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); border-color: var(--muted); }
.btn-pri { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.btn-pri:hover { background: #ffd970; border-color: #ffd970; }
.btn-sm { padding: 10px 18px; font-size: .92rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* nav */
.nav {
  position: sticky; top: 0; z-index: 20; backdrop-filter: blur(10px);
  background: rgba(11,13,16,.78); border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { font-weight: 700; font-size: 1.15rem; letter-spacing: -.02em; text-decoration: none; }
.brand span { color: var(--accent); }

/* hero */
.hero { background: radial-gradient(1200px 500px at 70% -10%, rgba(244,199,82,.10), transparent 60%), var(--bg); }
.hero-inner { max-width: 780px; }
.hero p.sub { font-size: 1.18rem; color: var(--muted); max-width: 640px; }
.microcopy { font-size: .92rem; color: var(--muted); margin-top: 16px; }
.trust { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); }
.trust span { font-size: .95rem; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; }
.trust span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); display: inline-block; }

/* grids */
.grid { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); margin: 0; }
.card .num {
  display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px;
  border-radius: 50%; background: rgba(244,199,82,.14); color: var(--accent); font-weight: 700; margin-bottom: 14px;
}

.lead-line { font-size: 1.15rem; color: var(--accent); font-weight: 600; margin: 28px 0 8px; }

/* solution / why list */
.rows { display: grid; gap: 14px; margin-top: 8px; }
.row { display: flex; gap: 14px; align-items: flex-start; background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px; }
.row .tick { color: var(--accent); font-weight: 700; flex: 0 0 auto; margin-top: 2px; }
.row b { display: block; margin-bottom: 3px; }
.row span { color: var(--muted); }

/* cases stub */
.stub {
  background: linear-gradient(180deg, var(--bg-2), var(--card)); border: 1px dashed var(--line);
  border-radius: var(--radius); padding: 40px 30px; text-align: center;
}
.stub p { max-width: 560px; margin: 0 auto 20px; color: var(--muted); font-size: 1.08rem; }

/* tiers */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
@media (max-width: 860px) { .tiers { grid-template-columns: 1fr; } }
.tier { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; }
.tier.mid { border-color: var(--accent); box-shadow: 0 0 0 1px rgba(244,199,82,.25); }
.tier .badge { align-self: flex-start; font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-ink); background: var(--accent); padding: 4px 10px; border-radius: 999px; margin-bottom: 12px; font-weight: 700; }
.tier .name { font-size: 1.25rem; font-weight: 700; }
.tier .price { font-size: 2rem; font-weight: 700; margin: 6px 0 2px; }
.tier .price small { font-size: .95rem; color: var(--muted); font-weight: 500; }
.tier .who { color: var(--muted); font-size: .95rem; margin-bottom: 16px; }
.tier ul { list-style: none; padding: 0; margin: 0 0 20px; }
.tier li { padding: 8px 0 8px 24px; position: relative; color: var(--ink); border-top: 1px solid var(--line); font-size: .96rem; }
.tier li::before { content: "+"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.tier-note { text-align: center; color: var(--muted); margin-top: 20px; font-size: .95rem; }

/* guarantee */
.guarantee { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; }
.guarantee .big { font-size: 1.25rem; color: var(--ink); }
.disclaimer { font-size: .9rem; color: var(--muted); margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }

/* faq */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: none; color: var(--ink); font-size: 1.08rem; font-weight: 600; padding: 20px 40px 20px 0; cursor: pointer; position: relative; font-family: inherit; }
.faq-q::after { content: "+"; position: absolute; right: 4px; top: 18px; font-size: 1.4rem; color: var(--accent); transition: transform .2s ease; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p { color: var(--muted); padding-bottom: 20px; margin: 0; }

/* final cta */
.final { text-align: center; background: radial-gradient(900px 400px at 50% 120%, rgba(244,199,82,.12), transparent 60%); }
.final .cta-row { justify-content: center; }

/* lead form */
.enquire-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 860px) { .enquire-grid { grid-template-columns: 1fr; } }
.lead-form { display: grid; gap: 12px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.lead-form label { font-size: .9rem; color: var(--muted); margin-bottom: -6px; }
.lead-form input {
  width: 100%; padding: 14px 16px; border-radius: 12px; border: 1px solid var(--line);
  background: var(--bg); color: var(--ink); font-size: 1rem; font-family: inherit;
}
.lead-form input:focus { outline: none; border-color: var(--accent); }
.lead-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.note { min-height: 20px; font-size: .92rem; color: var(--ok); }
.or { color: var(--muted); margin-top: 14px; }

/* footer */
.foot { border-top: 1px solid var(--line); padding: 40px 0; color: var(--muted); font-size: .95rem; }
.foot .wrap { display: flex; flex-wrap: wrap; gap: 12px 30px; justify-content: space-between; align-items: center; }
.foot a { color: var(--ink); text-decoration: none; }
.foot a:hover { color: var(--accent); }
