/* ============================================================
   EVISION INFOSERVE — Site stylesheet (2026 revamp)
   Premium "Design & Rank" studio look. Built on tokens.css.
   ============================================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--fg-on-light);
  background: var(--bg-light);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--color-blue-500); color: #fff; }

/* ── Layout primitives ─────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 820px; }
.section { padding: 104px 0; }
.section-sm { padding: 64px 0; }
.section-dark { background: var(--bg-dark); color: var(--fg-on-dark); position: relative; }
.section-subtle { background: var(--bg-subtle); }
.section-navy { background: var(--bg-dark-secondary); color: var(--fg-on-dark); }
.grid { display: grid; gap: 24px; }
@media (max-width: 880px){ .section { padding: 64px 0; } .container { padding: 0 22px; } }

/* ── Eyebrow / labels ──────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono);
  font-size: var(--text-xs); font-weight: 600;
  letter-spacing: var(--tracking-wide); text-transform: uppercase;
  color: var(--color-blue-500);
}
.eyebrow::before {
  content: ""; width: 20px; height: 2px; border-radius: 2px;
  background: var(--color-blue-500); display: inline-block;
}
.eyebrow.on-dark { color: var(--color-blue-300); }
.eyebrow.on-dark::before { background: var(--color-blue-300); }
.eyebrow.gold { color: var(--color-gold-600); }
.eyebrow.gold::before { background: var(--color-gold-500); }
.eyebrow.on-dark.gold { color: var(--color-gold-400); }
.eyebrow.on-dark.gold::before { background: var(--color-gold-400); }

/* ── Headings ──────────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-headline); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; color: inherit; }
.display {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(42px, 6.2vw, 80px); line-height: 1.0;
  letter-spacing: -0.035em; color: var(--fg-on-light);
}
.h-xl { font-size: clamp(34px, 4.6vw, 56px); line-height: 1.03; letter-spacing: -0.03em; }
.h-lg { font-size: clamp(28px, 3.5vw, 42px); line-height: 1.06; letter-spacing: -0.025em; }
.h-md { font-size: clamp(22px, 2.4vw, 29px); line-height: 1.12; letter-spacing: -0.02em; }
.lead { font-size: clamp(17px, 1.55vw, 20px); line-height: 1.62; color: var(--fg-muted-light); max-width: 62ch; }
.section-dark .lead, .section-navy .lead { color: var(--fg-muted-dark); }
.text-mute { color: var(--fg-muted-light); }
.text-blue { color: var(--color-blue-500); }
.text-violet { color: var(--color-blue-500); }
.text-gold { color: var(--color-gold-600); }
.hl-gold { color: var(--color-navy-800); background: linear-gradient(transparent 60%, var(--color-gold-400) 60%); padding: 0 2px; }
.hl-blue { color: var(--color-blue-500); }
.hl-violet { color: var(--color-blue-500); }
.hl-under { position: relative; white-space: nowrap; color: var(--color-blue-500); }
.hl-under::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--color-blue-500), var(--color-gold-500)); }
.section-dark .hl-blue, .section-navy .hl-blue { color: var(--color-blue-300); }
.grad-text { background: linear-gradient(100deg, var(--color-blue-400), var(--color-gold-400));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  letter-spacing: 0.01em; cursor: pointer; border: none; white-space: nowrap;
  padding: 14px 26px; border-radius: var(--radius-pill);
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease, color .15s;
}
.btn:active { transform: translateY(1px); }
.btn .ic { width: 18px; height: 18px; }
.btn-primary { background: var(--btn-primary-bg); color: #fff; box-shadow: var(--shadow-glow-violet); }
.btn-primary:hover { background: var(--btn-primary-bg-hover); box-shadow: 0 16px 44px rgba(109,94,251,.42); transform: translateY(-2px); }
.btn-secondary { background: var(--btn-secondary-bg); color: var(--color-navy-800); box-shadow: 0 8px 22px rgba(245,182,43,.28); }
.btn-secondary:hover { background: var(--btn-secondary-bg-hover); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(245,182,43,.36); }
.btn-navy { background: var(--color-navy-800); color: #fff; }
.btn-navy:hover { background: var(--color-navy-700); transform: translateY(-2px); }
.btn-blue { background: var(--color-blue-500); color: #fff; }
.btn-blue:hover { background: var(--color-blue-400); transform: translateY(-2px); }
.btn-ghost-light { background: #fff; color: var(--color-navy-800); box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); }
.btn-ghost-light:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-lg { padding: 17px 32px; font-size: 16px; }
.btn-pill { border-radius: var(--radius-pill); }
.btn-block { display: flex; width: 100%; }

/* ── Badges / tags / chips ─────────────────────────────────── */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--radius-pill);
}
.tag-blue { background: rgba(26,95,200,.10); color: var(--color-blue-500); }
.tag-gold { background: rgba(245,196,0,.18); color: var(--color-gold-600); }
.tag-green { background: var(--color-green-100); color: #15803D; }
.tag-orange { background: rgba(255,106,0,.12); color: var(--color-orange-600); }
.tag-navy { background: var(--color-navy-800); color: #fff; }
.tag-outline { background: transparent; border: 1px solid var(--border-light); color: var(--fg-muted-light); }
.chip-mono {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  background: rgba(26,95,200,.08); color: var(--color-blue-500);
  border: 1px solid rgba(26,95,200,.2); border-radius: var(--radius-sm);
  padding: 4px 9px; letter-spacing: -0.01em;
}
.section-dark .chip-mono, .section-navy .chip-mono {
  background: rgba(111,163,245,.12); color: var(--color-blue-300); border-color: rgba(111,163,245,.25);
}

/* ── Cards ─────────────────────────────────────────────────── */
.card {
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--border-light); box-shadow: var(--shadow-card);
}
.card-pad { padding: 28px; }
.lift { transition: transform .2s ease, box-shadow .2s ease, border-color .2s; }
.lift:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--color-blue-300); }

/* Service card */
.svc-card { display: flex; flex-direction: column; gap: 14px; padding: 28px; height: 100%; }
.svc-ic {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center;
  background: linear-gradient(145deg, rgba(109,94,251,.14), rgba(109,94,251,.05));
  color: var(--color-blue-500); border: 1px solid rgba(109,94,251,.18); flex: none;
}
.svc-ic .ic { width: 26px; height: 26px; }
.svc-ic.seo { background: linear-gradient(145deg, rgba(245,182,43,.18), rgba(245,182,43,.05));
  color: var(--color-gold-600); border-color: rgba(245,182,43,.24); }
.svc-card h3 { font-size: 21px; color: var(--color-navy-800); letter-spacing: -0.02em; }
.svc-card p { font-size: 14.5px; color: var(--fg-muted-light); line-height: 1.55; }
.svc-meta { margin-top: auto; display: flex; flex-wrap: wrap; gap: 6px; }
.svc-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 14px; color: var(--color-blue-500); margin-top: 4px; }
.svc-link .ic { width: 16px; height: 16px; transition: transform .15s; }
.svc-card:hover .svc-link .ic { transform: translateX(3px); }

/* Feature / stat */
.stat-num { font-family: var(--font-headline); font-weight: 700; font-size: clamp(38px, 5vw, 58px); line-height: 1; letter-spacing: -0.02em; }
.stat-num.gold { color: var(--color-gold-500); }
.stat-num.blue { color: var(--color-blue-500); }
.stat-label { font-size: 14px; color: var(--fg-muted-light); margin-top: 6px; }
.section-dark .stat-label, .section-navy .stat-label { color: var(--fg-muted-dark); }

/* ── Quick Answer (AEO) box ────────────────────────────────── */
.quick-answer {
  position: relative; background: #fff; border: 1.5px solid var(--border-light);
  border-left: 4px solid var(--color-gold-500);
  border-radius: var(--radius-lg); padding: 24px 28px; box-shadow: var(--shadow-card);
}
.quick-answer .qa-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.quick-answer .qa-tag {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  background: var(--color-gold-500); color: var(--color-navy-800);
  padding: 3px 9px; border-radius: var(--radius-sm); letter-spacing: 0;
}
.quick-answer .qa-q { font-family: var(--font-headline); font-weight: 600; font-size: 16px; color: var(--color-navy-700); }
.quick-answer p { font-size: 16.5px; line-height: 1.55; color: var(--color-gray-800); }

/* ── FAQ accordion ─────────────────────────────────────────── */
.faq { border-top: 1px solid var(--border-light); }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 16px; padding: 22px 4px;
  font-family: var(--font-headline); font-weight: 600; font-size: clamp(17px,1.8vw,20px);
  color: var(--color-navy-800); line-height: 1.3;
}
.faq-q .faq-ic { margin-left: auto; flex: none; width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center; background: var(--bg-subtle); color: var(--color-blue-500);
  transition: transform .25s, background .2s; }
.faq-item.open .faq-q .faq-ic { transform: rotate(45deg); background: var(--color-blue-500); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 4px 24px; color: var(--fg-muted-light); font-size: 15.5px; line-height: 1.65; max-width: 70ch; }
.faq-num { font-family: var(--font-mono); font-size: 13px; color: var(--color-blue-400); flex: none; }

/* ── Pricing ───────────────────────────────────────────────── */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; }
@media (max-width: 920px){ .price-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.price-card { background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-xl);
  padding: 32px 28px; display: flex; flex-direction: column; gap: 18px; position: relative; }
.price-card.featured { border: 2px solid var(--color-navy-800); box-shadow: var(--shadow-lg); }
.price-card.featured::before {
  content: "Most Popular"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--color-orange-500); color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; padding: 5px 14px; border-radius: var(--radius-pill);
}
.price-name { font-family: var(--font-headline); font-weight: 600; font-size: 22px; color: var(--color-navy-800); }
.price-amt { font-family: var(--font-headline); font-weight: 700; font-size: 46px; color: var(--color-navy-800); line-height: 1; letter-spacing: -0.02em; }
.price-amt small { font-family: var(--font-body); font-size: 15px; font-weight: 500; color: var(--fg-muted-light); letter-spacing: 0; }
.price-feats { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 4px 0 8px; }
.price-feats li { display: flex; gap: 10px; font-size: 14.5px; color: var(--color-gray-800); line-height: 1.45; }
.price-feats .ic { width: 19px; height: 19px; color: var(--color-green-500); flex: none; margin-top: 1px; }
.price-feats li.off { color: var(--color-gray-400); }
.price-feats li.off .ic { color: var(--color-gray-200); }

/* ── Dynamic pricing (price strip · offer banner · pricing grid) ── */
.offer-banner { background: linear-gradient(90deg,#b45309,#d97706); color:#fff; font-size:14px; text-align:center; }
.offer-banner .container { padding: 9px 20px; }
.offer-banner b { font-weight: 800; }
.offer-banner a { color:#fff; text-decoration: underline; font-weight: 700; margin-left: 6px; white-space: nowrap; }

.price-strip { background: var(--bg-dark, #0b1930); color:#fff; padding: 30px 0; }
.price-strip-inner { display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; }
.ps-label { font-size: 13px; font-weight:600; text-transform:uppercase; letter-spacing:.05em; color: var(--color-gold-500,#f5c400); }
.ps-amount { font-size: 17px; color:#cdd6e4; margin-top:6px; display:flex; align-items:baseline; gap:8px; flex-wrap:wrap; }
.ps-amount b { font-size: 34px; color:#fff; line-height:1; }
.ps-old { text-decoration: line-through; color:#8a96ab; font-size:18px; }
.ps-unit { font-size: 15px; color:#8a96ab; }
.ps-badge { display:inline-block; background: var(--color-green-500,#16a34a); color:#fff; font-size:12px; font-weight:800; padding:3px 9px; border-radius:999px; letter-spacing:.03em; }

/* category tabs */
.pg-tabs { display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin-bottom:30px; }
.pg-tab { display:inline-flex; align-items:center; gap:8px; padding:10px 20px; border:1.5px solid var(--border-light); border-radius:999px; background:#fff; font-family: var(--font-headline); font-weight:600; font-size:14.5px; color: var(--color-navy-800,#0b1930); cursor:pointer; transition: all .15s; }
.pg-tab:hover { border-color: var(--color-blue-500,#1a5fc8); color: var(--color-blue-500,#1a5fc8); }
.pg-tab.active { background: var(--color-blue-500,#1a5fc8); border-color: var(--color-blue-500,#1a5fc8); color:#fff; }
.pg-tabn { font-size:11.5px; font-weight:700; background: var(--bg-subtle,#eef2f9); color: var(--color-navy-700,#13233f); padding:1px 8px; border-radius:999px; }
.pg-tab.active .pg-tabn { background: rgba(255,255,255,.24); color:#fff; }
.pg-panel { display:none; animation: pgFade .25s ease; }
.pg-panel.active { display:block; }
@keyframes pgFade { from { opacity:0; transform: translateY(6px); } to { opacity:1; transform:none; } }
.pg-cards { display:grid; grid-template-columns: repeat(auto-fill, minmax(264px, 1fr)); gap:18px; }
.pg-card { position:relative; background:#fff; border:1px solid var(--border-light); border-radius: var(--radius-lg); padding:22px 22px 20px; display:flex; flex-direction:column; transition: box-shadow .15s, transform .15s, border-color .15s; }
.pg-card:hover { box-shadow: var(--shadow-md, 0 10px 30px rgba(13,30,60,.1)); transform: translateY(-3px); border-color: var(--color-blue-500,#1a5fc8); }
.pg-ribbon { position:absolute; top:16px; right:16px; background: var(--color-green-500,#16a34a); color:#fff; font-size:11px; font-weight:800; padding:3px 9px; border-radius:999px; letter-spacing:.02em; }
.pg-card-name { font-family: var(--font-headline); font-size:17px; color: var(--color-navy-800,#0b1930); margin:0 0 7px; padding-right:54px; line-height:1.25; }
.pg-card-desc { font-size:13px; color: var(--fg-muted-light,#5b6677); line-height:1.5; margin:0 0 18px; flex:1; }
.pg-card-price { margin-bottom:18px; }
.pg-from { display:block; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.05em; color: var(--color-gray-400,#94a0b3); margin-bottom:2px; }
.pg-amount { display:flex; align-items:baseline; gap:7px; flex-wrap:wrap; }
.pg-amount b { font-size:27px; color: var(--color-navy-800,#0b1930); line-height:1; }
.pg-old { text-decoration: line-through; color:#9aa4b2; font-size:15px; }
.pg-unit { font-size:13px; color: var(--fg-muted-light,#5b6677); font-weight:500; }
.pg-card-actions { display:flex; gap:10px; }
.pg-card-actions .btn { flex:1; justify-content:center; }

/* ── Forms ─────────────────────────────────────────────────── */
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 13px; font-weight: 600; color: var(--color-navy-700); }
.field label .req { color: var(--color-orange-500); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 15px; color: var(--fg-on-light);
  background: #fff; border: 1.5px solid var(--border-light); border-radius: var(--radius-md);
  padding: 13px 15px; transition: border-color .15s, box-shadow .15s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--color-blue-500); box-shadow: 0 0 0 3px rgba(26,95,200,.12);
}
.field textarea { resize: vertical; min-height: 110px; }
.field.error input, .field.error select, .field.error textarea { border-color: var(--color-red-500); }
.field .err-msg { font-size: 12px; color: var(--color-red-500); display: none; }
.field.error .err-msg { display: block; }

/* ── Breadcrumb ────────────────────────────────────────────── */
.crumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 13px; color: var(--fg-muted-light); }
.crumb a:hover { color: var(--color-blue-500); }
.crumb .sep { color: var(--color-gray-400); }
.section-dark .crumb, .section-navy .crumb { color: var(--fg-muted-dark); }

/* ── Schema / code peek ────────────────────────────────────── */
.code-peek {
  font-family: var(--font-mono); font-size: 12.5px; line-height: 1.7;
  background: var(--color-navy-900); color: #cdd7ee; border-radius: var(--radius-lg);
  padding: 20px 22px; overflow-x: auto; border: 1px solid var(--color-navy-600);
}
.code-peek .k { color: var(--color-gold-400); }
.code-peek .s { color: #7fd6a8; }
.code-peek .c { color: var(--color-gray-400); }
.code-peek .b { color: var(--color-blue-300); }

/* ── Check list ────────────────────────────────────────────── */
.checks { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.checks li { display: flex; gap: 12px; font-size: 15.5px; line-height: 1.5; }
.checks .ic { width: 22px; height: 22px; flex: none; color: var(--color-green-500); margin-top: 1px; }
.section-dark .checks li, .section-navy .checks li { color: var(--fg-muted-dark); }

/* ── Reveal-on-scroll ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ── Divider dot row ───────────────────────────────────────── */
.dotline { display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.dotline .d { width: 4px; height: 4px; border-radius: 50%; background: currentColor; opacity: .4; }

/* responsive helpers */
.cols-2 { grid-template-columns: repeat(2,1fr); }
.cols-3 { grid-template-columns: repeat(3,1fr); }
.cols-4 { grid-template-columns: repeat(4,1fr); }
@media (max-width: 960px){ .cols-3, .cols-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px){ .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }
.hide-mob { }
@media (max-width: 760px){ .hide-mob { display: none !important; } }

/* ============================================================
   2026 REVAMP — shared components (pillars, marquee, deep dark)
   ============================================================ */

/* Deep-ink section with subtle grid + violet glow */
.section-ink { background: var(--color-navy-900); color: #fff; position: relative; overflow: hidden; }
.section-ink::before { content:""; position:absolute; inset:0;
  background:
    radial-gradient(720px 420px at 12% -10%, rgba(109,94,251,.20), transparent 60%),
    radial-gradient(680px 420px at 92% 8%, rgba(245,182,43,.12), transparent 60%); }
.section-ink > .container { position: relative; z-index: 1; }
.dot-grid::after { content:""; position:absolute; inset:0; z-index:0; pointer-events:none;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px); background-size: 26px 26px;
  mask-image: radial-gradient(700px 500px at 50% 0%, #000, transparent 78%); }

/* Pillar chip (Design / SEO) */
.pillar-chip { display:inline-flex; align-items:center; gap:8px; font-family: var(--font-mono);
  font-size:11.5px; font-weight:600; text-transform:uppercase; letter-spacing:.08em;
  padding:6px 12px; border-radius: var(--radius-pill); }
.pillar-chip .dot { width:7px; height:7px; border-radius:50%; }
.pillar-chip.design { background: var(--pillar-design-soft); color:#4B3FD6; }
.pillar-chip.design .dot { background: var(--pillar-design); }
.pillar-chip.seo { background: var(--pillar-seo-soft); color: var(--color-gold-600); }
.pillar-chip.seo .dot { background: var(--pillar-seo); }
.section-ink .pillar-chip.design { background: rgba(109,94,251,.16); color:#C4BAFF; }
.section-ink .pillar-chip.seo { background: rgba(245,182,43,.16); color: var(--color-gold-400); }

/* Big two-pillar cards */
.pillars { display:grid; grid-template-columns: 1fr 1fr; gap:24px; }
@media (max-width: 860px){ .pillars { grid-template-columns: 1fr; } }
.pillar {
  position: relative; overflow: hidden; border-radius: var(--radius-xl); padding: 38px 34px;
  background: #fff; border: 1px solid var(--border-light); box-shadow: var(--shadow-card);
  display:flex; flex-direction:column; gap:18px; transition: transform .2s, box-shadow .2s, border-color .2s;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pillar::before { content:""; position:absolute; top:0; left:0; right:0; height:5px; }
.pillar.design::before { background: linear-gradient(90deg, var(--pillar-design), #9C8CFF); }
.pillar.design:hover { border-color: rgba(109,94,251,.4); }
.pillar.seo::before { background: linear-gradient(90deg, var(--pillar-seo), var(--color-gold-400)); }
.pillar.seo:hover { border-color: rgba(245,182,43,.5); }
.pillar-ic { width:58px; height:58px; border-radius:16px; display:grid; place-items:center; }
.pillar-ic .ic { width:28px; height:28px; }
.pillar.design .pillar-ic { background: var(--pillar-design-soft); color: var(--pillar-design); }
.pillar.seo .pillar-ic { background: var(--pillar-seo-soft); color: var(--color-gold-600); }
.pillar h3 { font-size: clamp(23px,2.6vw,30px); color: var(--color-navy-800); letter-spacing:-0.025em; }
.pillar p { font-size:15.5px; color: var(--fg-muted-light); line-height:1.6; }
.pillar-list { list-style:none; display:flex; flex-direction:column; gap:11px; margin:2px 0 4px; }
.pillar-list li { display:flex; gap:10px; font-size:14.5px; color: var(--color-gray-800); line-height:1.45; }
.pillar-list .ic { width:19px; height:19px; flex:none; margin-top:1px; }
.pillar.design .pillar-list .ic { color: var(--pillar-design); }
.pillar.seo .pillar-list .ic { color: var(--color-gold-600); }
.pillar-cta { margin-top:auto; display:inline-flex; align-items:center; gap:7px; font-weight:600; font-size:15px; }
.pillar.design .pillar-cta { color: var(--pillar-design); }
.pillar.seo .pillar-cta { color: var(--color-gold-600); }
.pillar-cta .ic { width:17px; height:17px; transition: transform .15s; }
.pillar:hover .pillar-cta .ic { transform: translateX(4px); }

/* Logo / trust marquee */
.marquee { overflow:hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display:flex; gap:56px; width:max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display:flex; align-items:center; gap:10px; font-family: var(--font-headline); font-weight:600;
  font-size:19px; color: var(--fg-muted-light); white-space:nowrap; opacity:.75; }
.marquee-item .ic { width:20px; height:20px; color: var(--color-blue-500); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Process / timeline steps (numbered, connected) */
.flow { display:grid; grid-template-columns: repeat(4,1fr); gap:0; counter-reset: f; }
@media (max-width: 860px){ .flow { grid-template-columns: 1fr 1fr; gap:32px 20px; } }
@media (max-width: 520px){ .flow { grid-template-columns: 1fr; } }
.flow-step { position:relative; padding: 30px 22px 0 0; }
.flow-step .fn { width:44px; height:44px; border-radius:50%; display:grid; place-items:center;
  font-family: var(--font-headline); font-weight:700; font-size:18px; background: var(--color-navy-800); color:#fff;
  position:relative; z-index:1; }
.flow-step:nth-child(even) .fn { background: var(--color-blue-500); }
.flow-step::before { content:""; position:absolute; top:22px; left:44px; right:0; height:2px;
  background: repeating-linear-gradient(90deg, var(--border-light) 0 6px, transparent 6px 12px); }
.flow-step:last-child::before { display:none; }
@media (max-width: 860px){ .flow-step::before { display:none; } }
.flow-step h3 { font-size:19px; color: var(--color-navy-800); margin:18px 0 8px; letter-spacing:-0.02em; }
.flow-step p { font-size:14px; color: var(--fg-muted-light); line-height:1.55; padding-right:14px; }

/* Feature tiles (bordered, icon-led) */
.feat-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:20px; }
@media (max-width: 900px){ .feat-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){ .feat-grid { grid-template-columns: 1fr; } }
.feat { padding:26px 24px; border-radius: var(--radius-lg); background:#fff; border:1px solid var(--border-light);
  transition: transform .2s, box-shadow .2s, border-color .2s; }
.feat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(109,94,251,.3); }
.feat-ic { width:46px; height:46px; border-radius:12px; display:grid; place-items:center; margin-bottom:16px;
  background: var(--pillar-design-soft); color: var(--pillar-design); }
.feat-ic .ic { width:23px; height:23px; }
.feat h3 { font-size:18px; color: var(--color-navy-800); margin-bottom:7px; letter-spacing:-0.02em; }
.feat p { font-size:14px; color: var(--fg-muted-light); line-height:1.55; }
.section-ink .feat { background: rgba(255,255,255,.035); border-color: rgba(255,255,255,.09); }
.section-ink .feat:hover { background: rgba(109,94,251,.1); border-color: rgba(109,94,251,.45); }
.section-ink .feat h3 { color:#fff; }
.section-ink .feat p { color: var(--fg-muted-dark); }

/* Pill row (small trust badges) */
.pillrow { display:flex; flex-wrap:wrap; gap:10px; }
.pillrow .p { display:inline-flex; align-items:center; gap:8px; font-size:13.5px; font-weight:600;
  color: var(--color-navy-700); background:#fff; border:1px solid var(--border-light);
  border-radius: var(--radius-pill); padding:8px 15px; }
.pillrow .p .ic { width:16px; height:16px; color: var(--color-blue-500); }
.section-ink .pillrow .p { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); color:#fff; }
.section-ink .pillrow .p .ic { color: var(--color-blue-300); }
