/* ============================================================
   1 On 1 Internet Marketing — homepage + bespoke sections
   ============================================================ */

/* ---------- Hero: typographic, editorial ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(64px, 9vw, 130px) 0 clamp(56px, 7vw, 96px); }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, black 30%, transparent 75%);
}
.hero .container { position: relative; z-index: 1; }
.hero-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; }
.hero h1 { font-size: clamp(44px, 7.4vw, 92px); max-width: 13ch; }
.hero h1 .row { display: block; overflow: hidden; }
html:not(.qa-static) .hero h1 .row span { display: inline-block; transform: translateY(110%); transition: transform .9s cubic-bezier(.7,0,.2,1); }
html:not(.qa-static) .hero.in h1 .row span { transform: translateY(0); }
html:not(.qa-static) .hero h1 .row:nth-child(2) span { transition-delay: .12s; }
html:not(.qa-static) .hero h1 .row:nth-child(3) span { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .hero h1 .row span { transform: none !important; transition: none !important; } }
.hero .lede { margin-top: 26px; max-width: 52ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 30px; font-family: var(--font-mono); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof svg { width: 15px; height: 15px; color: var(--teal); }
.hero-seal { margin-top: 14px; }
@media (max-width: 860px) { .hero-top { flex-direction: column; } .hero-seal { margin-top: 0; } }

/* Since-2001 oversized watermark */
.hero-mark {
  position: absolute; right: -1%; bottom: -4%; z-index: 0; pointer-events: none;
  font-family: var(--font-head); font-weight: 800; letter-spacing: -.05em;
  font-size: clamp(110px, 19vw, 260px); line-height: .8;
  color: transparent; -webkit-text-stroke: 2px var(--line);
}

/* ---------- Stat band under hero ---------- */
.home-stats { margin-top: clamp(40px, 6vw, 72px); }

/* ---------- Network marquee ---------- */
.net-band { background: var(--ink); color: var(--paper); padding: 16px 0; overflow: hidden; border-top: var(--rule); border-bottom: var(--rule); }
.marquee { display: flex; gap: 56px; width: max-content; }
html:not(.qa-static) .marquee { animation: marquee 36s linear infinite; }
.marquee span { display: inline-flex; align-items: center; gap: 56px; font-family: var(--font-mono); font-size: 14px; letter-spacing: .2em; text-transform: uppercase; white-space: nowrap; }
.marquee i { font-style: normal; color: var(--verm); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee { animation: none !important; flex-wrap: wrap; width: auto; } }

/* ---------- Services editorial list ---------- */
.svc-rows { display: grid; border-top: var(--rule); }
.svc-row {
  display: grid; grid-template-columns: 90px 1.1fr 1.6fr auto; gap: 26px; align-items: center;
  padding: 30px 8px; border-bottom: var(--rule); color: var(--ink);
  transition: background .2s ease, padding-left .25s ease;
}
.svc-row:hover { background: var(--white); padding-left: 20px; color: var(--ink); }
.svc-row .n { font-family: var(--font-mono); font-weight: 600; font-size: 15px; color: var(--verm-deep); }
.svc-row h3 { font-size: clamp(20px, 2.6vw, 30px); }
.svc-row p { color: var(--ink-soft); font-size: 15.5px; max-width: 52ch; }
.svc-row .go {
  width: 54px; height: 54px; border: 2px solid var(--ink); border-radius: 50%;
  display: grid; place-items: center; transition: background .2s ease, color .2s ease, transform .25s ease;
}
.svc-row .go svg { width: 22px; height: 22px; }
.svc-row:hover .go { background: var(--verm); border-color: var(--verm); color: #fff; transform: rotate(-45deg); }
@media (max-width: 860px) {
  .svc-row { grid-template-columns: 1fr auto; }
  .svc-row .n, .svc-row p { display: none; }
}

/* ---------- Dashboard dark band ---------- */
.dash-shot { border: 2px solid rgba(247,244,237,.25); border-radius: var(--radius); overflow: hidden; box-shadow: 0 30px 70px -30px rgba(0,0,0,.6); }
.dash-chrome { display: flex; gap: 7px; padding: 12px 16px; background: rgba(247,244,237,.07); border-bottom: 1px solid rgba(247,244,237,.12); }
.dash-chrome i { width: 11px; height: 11px; border-radius: 50%; background: rgba(247,244,237,.22); }
.dash-chrome i:first-child { background: var(--verm); }
.dash-body { background: #0B2222; padding: 26px; display: grid; gap: 18px; }
.dash-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.dash-tile { background: rgba(247,244,237,.05); border: 1px solid rgba(247,244,237,.1); border-radius: var(--radius); padding: 16px; }
.dash-tile small { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: #8FB3A8; display: block; margin-bottom: 6px; }
.dash-tile b { font-family: var(--font-head); font-size: 26px; color: #FBF9F3; }
.dash-tile b em { font-style: normal; font-size: 13px; color: var(--gold); margin-left: 6px; }
.dash-bars { display: flex; align-items: flex-end; gap: 8px; height: 90px; padding: 6px 4px 0; }
.dash-bars i { flex: 1; background: linear-gradient(to top, var(--teal), #2E9E8F); border-radius: 3px 3px 0 0; min-height: 12%; }
.dash-bars i:nth-child(7) { background: linear-gradient(to top, var(--verm), #F0764F); }
@media (max-width: 640px) { .dash-row { grid-template-columns: 1fr; } }

/* ---------- Process: oversized numerals ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step { position: relative; padding: 86px 26px 28px; background: var(--white); border: 2px solid var(--ink); border-radius: var(--radius); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  position: absolute; top: 14px; left: 20px;
  font-family: var(--font-head); font-weight: 800; font-size: 64px; line-height: 1;
  color: transparent; -webkit-text-stroke: 2px var(--verm);
}
.step h3 { font-size: 20px; margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--ink-soft); }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Guarantee band ---------- */
.guarantee { display: flex; align-items: center; gap: clamp(28px, 5vw, 64px); }
.guarantee-txt h2 { max-width: 20ch; }
@media (max-width: 760px) { .guarantee { flex-direction: column; text-align: center; } .guarantee .kicker { justify-content: center; } }

/* ---------- Testimonials ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.quote { background: var(--white); border: 2px solid var(--ink); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.quote .qmark { font-family: var(--font-head); font-size: 60px; line-height: .6; color: var(--verm); }
.quote p { font-size: 15.5px; color: var(--ink-soft); flex: 1; }
.quote footer { font-family: var(--font-head); font-weight: 700; font-size: 14.5px; }
.quote footer small { display: block; font-family: var(--font-mono); font-weight: 400; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); margin-top: 3px; }
.quote .stars { color: var(--gold); display: flex; gap: 3px; }
.quote .stars svg { width: 16px; height: 16px; }
@media (max-width: 860px) { .quote-grid { grid-template-columns: 1fr; } }

/* ---------- Pricing card ---------- */
.price-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: stretch; max-width: 920px; margin: 0 auto; }
.price-card { background: var(--white); border: 2px solid var(--ink); border-radius: var(--radius); padding: 38px 34px; display: flex; flex-direction: column; }
.price-card--hot { border-color: var(--verm); border-width: 3px; position: relative; }
.price-tag { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: var(--verm-deep); color: #fff; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; padding: 7px 16px; border-radius: 99px; white-space: nowrap; }
.price-name { font-family: var(--font-mono); font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: var(--teal); }
.price-num { font-family: var(--font-head); font-weight: 800; font-size: 62px; letter-spacing: -.04em; margin: 10px 0 2px; }
.price-num del { font-size: 26px; color: var(--ink-soft); font-weight: 600; margin-right: 10px; }
.price-num small { font-size: 18px; font-weight: 600; color: var(--ink-soft); }
.price-sub { font-size: 14px; color: var(--ink-soft); margin-bottom: 22px; }
.price-card .checks { font-size: 15px; gap: 9px; margin-bottom: 26px; }
.price-card .btn { margin-top: auto; }
@media (max-width: 760px) { .price-wrap { grid-template-columns: 1fr; } }

/* ---------- Contact split ---------- */
.contact-panel { background: var(--white); border: 2px solid var(--ink); border-radius: var(--radius); padding: clamp(26px, 4vw, 44px); box-shadow: var(--shadow); }
.contact-info { display: grid; gap: 20px; }
.ci-row { display: flex; gap: 16px; align-items: flex-start; }
.ci-row .ic { width: 48px; height: 48px; flex: none; display: grid; place-items: center; background: var(--teal-mist); color: var(--teal); border-radius: var(--radius); }
.ci-row .ic svg { width: 22px; height: 22px; }
.ci-row b { font-family: var(--font-head); display: block; font-size: 16px; }
.ci-row a, .ci-row span { color: var(--ink-soft); font-size: 15.5px; }
.ci-row a:hover { color: var(--verm); }
