/* ============================================================
   fivox — Advertising Consultancy
   Shared design system
   Concept: "Hit the mark." Bullseye/target motif from the logo.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ---------- Theme tokens ---------- */
:root {
  --red: #ff0000;
  --red-deep: #cc0000;
  --red-soft: #ffe3e3;

  --bg: #fbfbfb;
  --bg-2: #ffffff;
  --surface: #ffffff;
  --surface-2: #f4f4f5;
  --ink: #0b0b0c;
  --ink-soft: #3a3a3e;
  --muted: #71717a;
  --line: #e6e6e9;
  --ring-shadow: rgba(11, 11, 12, 0.10);

  --shadow-sm: 0 2px 8px rgba(11,11,12,.06);
  --shadow-md: 0 14px 40px rgba(11,11,12,.10);
  --shadow-red: 0 18px 44px rgba(255,0,0,.28);

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 32px;
  --r-pill: 999px;

  --maxw: 1180px;
  --nav-h: 76px;

  --font-display: 'Fredoka', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

  --ease: cubic-bezier(.2,.8,.2,1);
}

html[data-theme="dark"] {
  --bg: #0b0b0c;
  --bg-2: #111113;
  --surface: #161618;
  --surface-2: #1d1d20;
  --ink: #f6f6f7;
  --ink-soft: #c9c9ce;
  --muted: #8b8b93;
  --line: #2a2a2e;
  --red-soft: #2a1416;
  --ring-shadow: rgba(0,0,0,0.5);

  --shadow-sm: 0 2px 10px rgba(0,0,0,.4);
  --shadow-md: 0 18px 48px rgba(0,0,0,.55);
  --shadow-red: 0 18px 48px rgba(255,0,0,.32);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background .45s var(--ease), color .45s var(--ease);
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }

/* ---------- Atmospheric background ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(620px 620px at 88% -6%, rgba(255,0,0,.10), transparent 60%),
    radial-gradient(700px 500px at -8% 108%, rgba(255,0,0,.07), transparent 60%);
  pointer-events: none;
}
/* faint target rings texture top-right */
body::after {
  content: "";
  position: fixed;
  top: -180px; right: -180px;
  width: 520px; height: 520px;
  z-index: -2;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, transparent 0 38px, var(--line) 38px 39px);
  opacity: .5;
  pointer-events: none;
}

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

section { position: relative; }

/* ============================================================
   Brand wordmark (theme-adaptive, font-based + target "o")
   ============================================================ */
.brand { display: inline-flex; align-items: center; gap: 0; line-height: 1; }
.brand-mark {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
}
.brand-o {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 0.135em solid currentColor;
  position: relative;
  box-sizing: border-box;
  /* sized to lowercase x-height so the "o" matches the other letters */
  width: .6em;
  height: .6em;
  margin: 0 .008em;
  transform: translateY(.135em); /* seat on the baseline like a lowercase o */
}
.brand-dot {
  width: 42%;
  height: 42%;
  border-radius: 50%;
  background: var(--red);
}
/* nav-sized brand */
.brand--nav .brand-mark { font-size: 1.7rem; }

/* tagline lockup (footer / large) */
.brand-lockup { display: inline-flex; flex-direction: column; align-items: flex-start; gap: .35em; }
.brand-tag {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: .42em;
  font-size: .58rem;
  color: var(--muted);
  text-transform: uppercase;
  padding-left: .2em;
}
.brand--big .brand-mark { font-size: 2.6rem; }

/* ============================================================
   Navbar
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .45s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 18px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-weight: 600; font-size: .96rem; color: var(--ink-soft);
  padding: 9px 16px; border-radius: var(--r-pill);
  position: relative; transition: color .25s var(--ease), background .25s var(--ease);
}
.nav-links a:hover { color: var(--ink); background: var(--surface-2); }
.nav-links a.active { color: var(--red); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 50%; bottom: 2px; transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%; background: var(--red);
}

.nav-right { display: flex; align-items: center; gap: 10px; }

/* theme toggle */
.theme-toggle {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--surface-2); color: var(--ink);
  border: 1px solid var(--line);
  transition: transform .4s var(--ease), background .3s, color .3s;
}
.theme-toggle:hover { transform: rotate(-18deg) scale(1.06); color: var(--red); }
.theme-toggle svg { width: 20px; height: 20px; }
.theme-toggle .icon-moon { display: none; }
html[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
html[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

/* hamburger */
.nav-burger { display: none; width: 46px; height: 46px; border-radius: 50%; background: var(--surface-2); border: 1px solid var(--line); place-items: center; }
.nav-burger span { display:block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; transition: .3s var(--ease); }
.nav-burger span::before, .nav-burger span::after { content:""; position:absolute; left:0; width:20px; height:2px; background:var(--ink); border-radius:2px; transition:.3s var(--ease); }
.nav-burger span::before { top:-6px; } .nav-burger span::after { top:6px; }
body.menu-open .nav-burger span { background: transparent; }
body.menu-open .nav-burger span::before { top:0; transform: rotate(45deg); }
body.menu-open .nav-burger span::after { top:0; transform: rotate(-45deg); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: 15px 30px; border-radius: var(--r-pill);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 24px 54px rgba(255,0,0,.4); }
.btn-primary:active { transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border: 2px solid var(--line); }
.btn-ghost:hover { border-color: var(--red); color: var(--red); transform: translateY(-3px); }
.btn-dark { background: var(--ink); color: var(--bg); }
.btn-dark:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 18px 38px; font-size: 1.08rem; }

/* ============================================================
   Section helpers
   ============================================================ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--red); margin-bottom: 16px;
}
.eyebrow::before { content:""; width: 22px; height: 2px; background: var(--red); border-radius: 2px; }

h1, h2, h3, .display { font-family: var(--font-display); font-weight: 600; line-height: 1.04; letter-spacing: -.02em; color: var(--ink); }
.h-sec { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 14px; }
.sec-head { max-width: 640px; margin-bottom: 52px; }
.sec-head p { color: var(--muted); font-size: 1.08rem; }
.text-red { color: var(--red); }

.section-pad { padding: clamp(64px, 9vw, 120px) 0; }

/* ============================================================
   Hero (home)
   ============================================================ */
.hero { padding-top: clamp(40px, 7vw, 80px); padding-bottom: clamp(48px, 7vw, 90px); overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center;
}
.hero h1 { font-size: clamp(2.6rem, 6.2vw, 5rem); }
.hero h1 .swap-word { color: var(--red); }
.hero-lead { font-size: 1.2rem; color: var(--ink-soft); max-width: 520px; margin: 22px 0 32px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--line);
  padding: 9px 15px; border-radius: var(--r-pill);
  font-size: .85rem; font-weight: 600; color: var(--ink-soft); box-shadow: var(--shadow-sm);
}
.badge .g-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--red); }

/* Animated bullseye visual */
.bullseye-wrap { display: grid; place-items: center; position: relative; }
.bullseye {
  --size: min(420px, 78vw);
  width: var(--size); height: var(--size);
  border-radius: 50%; position: relative; display: grid; place-items: center;
}
.bullseye .ring {
  position: absolute; border-radius: 50%; border: 2px solid var(--line);
  inset: 0; opacity: 0; animation: ringPulse 4s var(--ease) infinite;
}
.bullseye .ring:nth-child(1) { inset: 0; animation-delay: 0s; }
.bullseye .ring:nth-child(2) { inset: 14%; animation-delay: .5s; border-color: color-mix(in srgb, var(--red) 30%, var(--line)); }
.bullseye .ring:nth-child(3) { inset: 28%; animation-delay: 1s; }
.bullseye .ring:nth-child(4) { inset: 42%; animation-delay: 1.5s; border-color: color-mix(in srgb, var(--red) 45%, var(--line)); }
@keyframes ringPulse {
  0% { opacity: 0; transform: scale(.96); }
  18% { opacity: 1; }
  60% { opacity: .35; }
  100% { opacity: 0; transform: scale(1.05); }
}
.bullseye .core {
  position: relative; z-index: 2;
  width: 30%; height: 30%; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ff4d4d, var(--red) 60%, var(--red-deep));
  box-shadow: var(--shadow-red), inset 0 -6px 16px rgba(0,0,0,.25);
  display: grid; place-items: center;
  animation: corePulse 2.6s var(--ease) infinite;
}
.bullseye .core .core-stat { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: clamp(1.3rem, 4vw, 2.1rem); }
@keyframes corePulse { 0%,100%{ transform: scale(1);} 50%{ transform: scale(1.06);} }
/* floating chips around bullseye */
.chip-float {
  position: absolute; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-pill); padding: 8px 14px; font-weight: 700; font-size: .82rem;
  box-shadow: var(--shadow-md); display: inline-flex; align-items: center; gap: 7px;
  animation: floaty 5s ease-in-out infinite;
}
.chip-float .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.chip-1 { top: 6%; left: -4%; animation-delay: 0s; }
.chip-2 { top: 38%; right: -8%; animation-delay: 1s; }
.chip-3 { bottom: 6%; left: 2%; animation-delay: 2s; }
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-12px);} }

/* ============================================================
   Marquee
   ============================================================ */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); padding: 20px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: scrollX 26s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; color: var(--muted); }
.marquee-item .m-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--red); }
@keyframes scrollX { to { transform: translateX(-50%); } }

/* ============================================================
   Stats band
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 28px 16px; border-radius: var(--r-md); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.stat .num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--red); line-height: 1; }
.stat .lbl { color: var(--muted); font-weight: 600; font-size: .92rem; margin-top: 8px; }

/* ============================================================
   Service cards
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.svc-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 34px; position: relative; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.svc-card::after {
  content:""; position:absolute; top:-40px; right:-40px; width:140px; height:140px; border-radius:50%;
  background: repeating-radial-gradient(circle, transparent 0 14px, color-mix(in srgb,var(--red) 22%, transparent) 14px 15px);
  opacity: .5; transition: opacity .4s, transform .5s var(--ease);
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: color-mix(in srgb, var(--red) 40%, var(--line)); }
.svc-card:hover::after { opacity: .9; transform: scale(1.12) rotate(8deg); }
.svc-ic { width: 56px; height: 56px; border-radius: 16px; background: var(--red-soft); display: grid; place-items: center; margin-bottom: 20px; }
.svc-ic svg { width: 28px; height: 28px; color: var(--red); }
.svc-card h3 { font-size: 1.45rem; margin-bottom: 10px; }
.svc-card p { color: var(--muted); margin-bottom: 16px; }
.svc-card .svc-list { display: flex; flex-direction: column; gap: 8px; }
.svc-card .svc-list li { display: flex; gap: 9px; align-items: flex-start; font-size: .94rem; color: var(--ink-soft); font-weight: 500; }
.svc-card .svc-list li::before { content:""; margin-top: 7px; flex: 0 0 auto; width: 7px; height: 7px; border-radius: 50%; background: var(--red); }
.svc-tag-free { position: absolute; top: 22px; right: 22px; background: var(--ink); color: var(--bg); font-size: .72rem; font-weight: 800; letter-spacing: .08em; padding: 5px 12px; border-radius: var(--r-pill); text-transform: uppercase; }

/* pill list (mirrors the brand creative) */
.pill-list { display: flex; flex-direction: column; gap: 16px; max-width: 640px; margin-inline: auto; }
.pill {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: clamp(1.1rem,2.6vw,1.5rem);
  padding: 20px; border-radius: var(--r-pill); background: var(--red); color: #fff;
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease);
}
.pill:hover { transform: scale(1.02); }
.pill.outline { background: transparent; color: var(--red); border: 2px solid var(--red); }

/* ============================================================
   Why us / credentials
   ============================================================ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feat-list { display: flex; flex-direction: column; gap: 22px; }
.feat { display: flex; gap: 18px; align-items: flex-start; }
.feat-ic { flex: 0 0 auto; width: 52px; height: 52px; border-radius: 50%; border: 2px solid var(--line); display: grid; place-items: center; position: relative; }
.feat-ic::after { content:""; width: 12px; height: 12px; border-radius: 50%; background: var(--red); }
.feat h4 { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; margin-bottom: 4px; }
.feat p { color: var(--muted); font-size: .98rem; }

/* ============================================================
   Testimonials / View work
   ============================================================ */
.tmline { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-bottom: 40px; }
.tm-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--shadow-sm); position: relative; }
.tm-card .quote-mark { font-family: var(--font-display); font-size: 3.4rem; color: var(--red); line-height: .6; opacity: .35; }
.tm-card p { color: var(--ink-soft); font-size: 1.04rem; margin: 8px 0 18px; }
.tm-who { display: flex; align-items: center; gap: 12px; }
.tm-ava { width: 44px; height: 44px; border-radius: 50%; background: var(--red); color:#fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; }
.tm-who .nm { font-weight: 700; }
.tm-who .rl { color: var(--muted); font-size: .86rem; }
.work-cta {
  text-align: center; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 44px 28px; box-shadow: var(--shadow-sm);
  background-image: radial-gradient(420px 200px at 50% -30%, rgba(255,0,0,.10), transparent 70%);
}
.work-cta h3 { font-size: clamp(1.5rem,3vw,2.1rem); margin-bottom: 10px; }
.work-cta p { color: var(--muted); margin-bottom: 22px; }

/* ============================================================
   Contact form
   ============================================================ */
.contact-shell { display: grid; grid-template-columns: .95fr 1.05fr; gap: 48px; align-items: stretch; }
.contact-aside { display: flex; flex-direction: column; justify-content: center; }
.contact-aside h2 { font-size: clamp(2rem,4vw,3rem); margin-bottom: 14px; }
.contact-aside p { color: var(--muted); font-size: 1.08rem; margin-bottom: 26px; max-width: 420px; }
.contact-points { display: flex; flex-direction: column; gap: 14px; }
.contact-point { display: flex; gap: 12px; align-items: center; font-weight: 600; color: var(--ink-soft); }
.contact-point .cp-ic { width: 42px; height: 42px; border-radius: 50%; background: var(--red-soft); display: grid; place-items: center; flex: 0 0 auto; }
.contact-point .cp-ic svg { width: 19px; height: 19px; color: var(--red); }

.form-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 7px; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  background: var(--bg); border: 1.5px solid var(--line); border-radius: var(--r-sm);
  padding: 13px 15px; transition: border-color .2s, box-shadow .2s, background .3s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 4px rgba(255,0,0,.12);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.form-card .btn { width: 100%; margin-top: 6px; }
.form-note { text-align: center; color: var(--muted); font-size: .82rem; margin-top: 14px; }
.form-err { color: var(--red); font-size: .82rem; margin-top: 5px; display: none; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: var(--red); }
.field.invalid .form-err { display: block; }

/* ============================================================
   Blog
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.blog-thumb { height: 168px; position: relative; display: grid; place-items: center; overflow: hidden; }
.blog-thumb .rings { position: absolute; inset: 0; background: repeating-radial-gradient(circle at 50% 50%, transparent 0 22px, rgba(255,255,255,.18) 22px 23px); }
.blog-thumb .bt-dot { width: 46px; height: 46px; border-radius: 50%; background:#fff; display:grid; place-items:center; z-index:1; box-shadow: var(--shadow-md); }
.blog-thumb .bt-dot span { width: 20px; height: 20px; border-radius: 50%; background: var(--red); }
.blog-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-cat { font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.blog-body h3 { font-size: 1.22rem; margin-bottom: 10px; }
.blog-body p { color: var(--muted); font-size: .95rem; flex: 1; }
.blog-meta { display: flex; align-items: center; gap: 8px; margin-top: 16px; color: var(--muted); font-size: .84rem; font-weight: 600; }
.blog-readmore { color: var(--red); font-weight: 700; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 64px 0 28px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; }
.footer-col h5 { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; margin-bottom: 16px; }
.footer-col a { display: block; color: var(--muted); padding: 6px 0; font-weight: 500; transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: var(--red); padding-left: 4px; }
.footer-about p { color: var(--muted); margin: 16px 0 18px; max-width: 320px; }
.socials { display: flex; gap: 10px; flex-wrap: wrap; }
.soc {
  width: 44px; height: 44px; border-radius: 13px; border: none;
  display: flex; place-items: center; color: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s, filter .25s;
}
.soc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); filter: saturate(1.1); }
/* keep icon glyphs white inside the footer (overrides .footer-col a colour) */
.footer-col a.soc { color: #fff; }
.soc svg { width: 45px; height: 35px; color: #fff; }
.soc[aria-label="Facebook"]  { background: #1877F2; }
.soc[aria-label="Instagram"] { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.soc[aria-label="WhatsApp"]  { background: #25D366; }
.soc[aria-label="LinkedIn"]  { background: #0A66C2; }
.soc[aria-label="Email"]     { background: var(--red); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: .88rem; }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--red); }

/* ============================================================
   Page hero (inner pages)
   ============================================================ */
.page-hero { padding: clamp(48px,7vw,84px) 0 clamp(24px,4vw,40px); text-align: center; }
.page-hero h1 { font-size: clamp(2.4rem,5.5vw,4rem); margin-bottom: 14px; }
.page-hero p { color: var(--muted); font-size: 1.12rem; max-width: 600px; margin-inline: auto; }
.breadcrumb { color: var(--muted); font-size: .9rem; font-weight: 600; margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--red); }

/* ============================================================
   Thank you
   ============================================================ */
.ty-wrap { min-height: calc(100vh - var(--nav-h)); display: grid; place-items: center; text-align: center; padding: 40px 24px; }
.ty-card { max-width: 560px; }
.ty-check { width: 110px; height: 110px; margin: 0 auto 28px; border-radius: 50%; background: var(--red-soft); display: grid; place-items: center; position: relative; }
.ty-check svg { width: 54px; height: 54px; color: var(--red); }
.ty-check .pulse { position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--red); animation: tyPulse 1.8s ease-out infinite; }
@keyframes tyPulse { 0%{ transform: scale(1); opacity:.7;} 100%{ transform: scale(1.5); opacity:0;} }
.ty-card h1 { font-size: clamp(2.2rem,5vw,3.4rem); margin-bottom: 14px; }
.ty-card p { color: var(--muted); font-size: 1.1rem; margin-bottom: 26px; }
.ty-count { font-weight: 700; color: var(--ink-soft); margin-top: 22px; font-size: .95rem; }
.ty-count b { color: var(--red); }
.ty-bar { height: 4px; background: var(--surface-2); border-radius: 4px; overflow: hidden; max-width: 320px; margin: 14px auto 0; }
.ty-bar i { display: block; height: 100%; width: 100%; background: var(--red); transform-origin: left; animation: tyShrink 10s linear forwards; }
@keyframes tyShrink { from { transform: scaleX(1);} to { transform: scaleX(0);} }

/* ============================================================
   Legal / privacy
   ============================================================ */
.legal { max-width: 820px; margin-inline: auto; }
.legal h2 { font-size: 1.5rem; margin: 36px 0 12px; }
.legal h3 { font-size: 1.15rem; margin: 22px 0 8px; font-family: var(--font-display); font-weight: 600; }
.legal p, .legal li { color: var(--ink-soft); margin-bottom: 12px; }
.legal ul { padding-left: 22px; list-style: disc; }
.legal ul li { margin-bottom: 8px; }
.legal a { color: var(--red); font-weight: 600; }
.legal .updated { color: var(--muted); font-size: .9rem; }

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* ============================================================
   Mobile menu + responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .bullseye-wrap { order: -1; }
  .why-grid, .contact-shell { grid-template-columns: 1fr; gap: 34px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-about { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .nav-burger { display: grid; }
  .nav-links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 16px 24px 24px; transform: translateY(-130%); transition: transform .4s var(--ease);
    box-shadow: var(--shadow-md);
  }
  body.menu-open .nav-links { transform: translateY(0); }
  .nav-links a { padding: 14px 16px; font-size: 1.05rem; }
  .svc-grid, .tmline, .stats, .form-row { grid-template-columns: 1fr; }
  .stats { gap: 14px; }
  .blog-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) and (min-width:500px){
  .stats { grid-template-columns: 1fr 1fr; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* nav CTA sizing + mobile hide */
.nav-cta { padding: 11px 22px; font-size: .92rem; }
@media (max-width: 760px) { .nav-cta { display: none; } }
@media (max-width: 400px) { .brand--nav .brand-mark { font-size: 1.45rem; } }

/* ============================================================
   Services — interactive tabs explorer + per-segment CTAs
   ============================================================ */
.svc-explorer { margin-top: 8px; }
.svc-tabs {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 34px;
}
.svc-tab {
  appearance: none; cursor: pointer; font-family: var(--font-body); font-weight: 700;
  font-size: .98rem; color: var(--ink); background: var(--surface);
  border: 1.5px solid var(--line); border-radius: var(--r-pill);
  padding: 12px 22px; display: inline-flex; align-items: center; gap: 10px;
  transition: transform .25s var(--ease), border-color .25s, background .25s, color .25s, box-shadow .25s;
}
.svc-tab .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--muted); transition: background .25s, box-shadow .25s; }
.svc-tab:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--red) 45%, var(--line)); }
.svc-tab.active { background: var(--red); color: #fff; border-color: var(--red); box-shadow: var(--shadow-red); }
.svc-tab.active .dot { background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.25); }

.svc-panels { position: relative; }
.svc-panel { display: none; }
.svc-panel.active { display: block; animation: panelIn .5s var(--ease) both; }
@keyframes panelIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.svc-panel-inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 0;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.svc-panel-main { padding: clamp(26px, 4vw, 46px); }
.svc-panel .svc-ic { margin-bottom: 18px; }
.svc-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; font-size: .72rem; color: var(--red); margin-bottom: 12px; }
.svc-panel h3 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); line-height: 1.05; margin-bottom: 12px; }
.svc-panel .lead { color: var(--muted); font-size: 1.04rem; margin-bottom: 22px; max-width: 46ch; }
.svc-deliverables { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px; margin-bottom: 26px; }
.svc-deliverables li { display: flex; gap: 9px; align-items: flex-start; font-size: .95rem; color: var(--ink-soft); font-weight: 500; }
.svc-deliverables li::before { content:""; margin-top: 7px; flex: 0 0 auto; width: 7px; height: 7px; border-radius: 50%; background: var(--red); }
.svc-cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.svc-cta-note { font-size: .85rem; color: var(--muted); }

/* the visual side of each panel */
.svc-panel-aside {
  position: relative; background: var(--ink); color: #fff; padding: clamp(26px, 4vw, 42px);
  display: flex; flex-direction: column; justify-content: space-between; gap: 24px; overflow: hidden;
}
html[data-theme="dark"] .svc-panel-aside { background: #000; border-left: 1px solid var(--line); }
.svc-panel-aside .rings {
  position: absolute; inset: -30% -10% auto auto; width: 380px; height: 380px;
  background: repeating-radial-gradient(circle at 70% 30%, transparent 0 26px, rgba(255,255,255,.07) 26px 27px);
  pointer-events: none;
}
.svc-aside-stat { position: relative; z-index: 1; }
.svc-aside-stat .num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.6rem, 7vw, 4rem); line-height: 1; color: #fff; }
.svc-aside-stat .num span { color: var(--red); }
.svc-aside-stat .lbl { color: rgba(255,255,255,.7); font-weight: 600; margin-top: 8px; max-width: 22ch; }
.svc-aside-foot { position: relative; z-index: 1; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.85); font-weight: 600; font-size: .92rem; }
.svc-aside-foot .tick { width: 26px; height: 26px; border-radius: 50%; background: var(--red); display: grid; place-items: center; flex: 0 0 auto; }
.svc-aside-foot .tick svg { width: 15px; height: 15px; color: #fff; }

/* capabilities strip */
.cap-strip { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 900px; margin: 26px auto 0; }
.cap-chip {
  font-weight: 600; font-size: .9rem; color: var(--ink-soft);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 9px 16px; transition: transform .2s var(--ease), border-color .2s, color .2s;
}
.cap-chip:hover { transform: translateY(-3px); border-color: var(--red); color: var(--red); }

@media (max-width: 820px) {
  .svc-panel-inner { grid-template-columns: 1fr; }
  .svc-panel-aside { flex-direction: row; align-items: center; justify-content: space-between; }
  .svc-deliverables { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .svc-panel-aside { flex-direction: column; align-items: flex-start; }
  .svc-tab { padding: 10px 16px; font-size: .9rem; }
}

/* ============================================================
   Blog index — dynamic cards + empty state
   ============================================================ */
.blog-empty {
  text-align: center; max-width: 560px; margin: 10px auto 0;
  background: var(--surface); border: 1px dashed var(--line); border-radius: var(--r-lg);
  padding: clamp(34px, 6vw, 64px) 28px;
}
.blog-empty .be-mark { width: 64px; height: 64px; border-radius: 50%; border: 3px solid var(--ink); display: grid; place-items: center; margin: 0 auto 20px; position: relative; }
.blog-empty .be-mark::after { content:""; width: 22px; height: 22px; border-radius: 50%; background: var(--red); }
.blog-empty h3 { font-size: 1.5rem; margin-bottom: 10px; }
.blog-empty p { color: var(--muted); margin-bottom: 22px; }
.blog-card .blog-thumb { cursor: pointer; }
.blog-card a.blog-cardlink { color: inherit; text-decoration: none; display: block; }
.blog-date { font-size: .82rem; color: var(--muted); }

/* writer login link (discreet, footer) */
.writer-login { display: inline-flex; align-items: center; gap: 7px; }
.writer-login svg { width: 14px; height: 14px; }

/* ============================================================
   Blog post (article) — used by generated blog-*.html pages
   ============================================================ */
.post { padding: clamp(28px, 5vw, 56px) 0 clamp(40px, 7vw, 90px); }
.post-narrow { max-width: 760px; }
.post-cat { display: inline-block; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: .72rem; color: #fff; background: var(--red); padding: 6px 12px; border-radius: var(--r-pill); margin-bottom: 16px; }
.post h1 { font-size: clamp(2rem, 5vw, 3.1rem); line-height: 1.06; margin-bottom: 16px; }
.post-meta { color: var(--muted); font-weight: 500; font-size: .95rem; margin-bottom: 26px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.post-meta .sep { opacity: .5; }
.post-cover { width: 100%; border-radius: var(--r-lg); border: 1px solid var(--line); margin-bottom: 30px; display: block; }
.post-content { font-size: 1.08rem; line-height: 1.8; color: var(--ink-soft); }
.post-content > *:first-child { margin-top: 0; }
.post-content h2 { font-family: var(--font-display); color: var(--ink); font-size: 1.7rem; line-height: 1.2; margin: 1.7em 0 .5em; }
.post-content h3 { font-family: var(--font-display); color: var(--ink); font-size: 1.3rem; line-height: 1.25; margin: 1.4em 0 .4em; }
.post-content p { margin: 0 0 1.15em; }
.post-content a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.post-content ul, .post-content ol { margin: 0 0 1.2em; padding-left: 1.3em; }
.post-content li { margin: .35em 0; }
.post-content img { max-width: 100%; height: auto; border-radius: var(--r-md); border: 1px solid var(--line); margin: 1.2em 0; display: block; }
.post-content blockquote { margin: 1.4em 0; padding: 4px 0 4px 22px; border-left: 4px solid var(--red); color: var(--ink); font-weight: 500; font-style: italic; }
.post-content strong { color: var(--ink); }
.post-cta { margin-top: 40px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 4vw, 38px); text-align: center; box-shadow: var(--shadow-sm); }
.post-cta h3 { font-size: 1.5rem; margin-bottom: 8px; }
.post-cta p { color: var(--muted); margin-bottom: 20px; }

/* ============================================================
   Phone field with country code + misc form polish
   ============================================================ */
.phone-field { display: flex; gap: 8px; }
.phone-field .ccode {
  flex: 0 0 auto; width: 128px; padding-inline: 9px; cursor: pointer;
  background: var(--surface-2); border: 1.5px solid var(--line); border-radius: 12px;
  font-weight: 600; color: var(--ink);
}
.phone-field .phone-num { flex: 1; min-width: 0; }
label .opt { font-weight: 500; color: var(--muted); font-size: .82em; }

/* ============================================================
   Respect reduced-motion preferences
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* contact: what-happens-next */
.next-steps { margin-top: 28px; padding: 20px 22px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); }
.next-steps h4 { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
.next-steps ol { margin: 0; padding-left: 0; list-style: none; counter-reset: ns; display: flex; flex-direction: column; gap: 10px; }
.next-steps ol li { counter-increment: ns; display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); font-weight: 500; }
.next-steps ol li::before { content: counter(ns); flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%; background: var(--red); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: .82rem; display: grid; place-items: center; }

/* ============================================================
   Home hero — centered logo, radar rings, floating pills
   ============================================================ */
.nav--home .brand { opacity: 0; transform: translateY(-8px); pointer-events: none; transition: opacity .4s var(--ease), transform .4s var(--ease); }
.nav--home.brand-shown .brand { opacity: 1; transform: none; pointer-events: auto; }

.hero-home { position: relative; min-height: calc(100svh - var(--nav-h)); display: grid; place-items: center; overflow: hidden; padding: 50px 20px 70px; }
.hero-home-inner { position: relative; width: 100%; max-width: var(--maxw); min-height: 58vh; display: grid; place-items: center; }

.radar {
  position: absolute; left: 50%; top: 50%; width: min(155vw, 1500px); aspect-ratio: 1; transform: translate(-50%,-50%);
  pointer-events: none; z-index: 0; opacity: .55;
  background: repeating-radial-gradient(circle, color-mix(in srgb, var(--red) 17%, transparent) 0 1.5px, transparent 1.5px 94px);
  -webkit-mask: radial-gradient(circle, #000 8%, transparent 60%); mask: radial-gradient(circle, #000 8%, transparent 60%);
  animation: radarPulse 7s ease-in-out infinite;
}
@keyframes radarPulse { 0%,100% { transform: translate(-50%,-50%) scale(1); } 50% { transform: translate(-50%,-50%) scale(1.05); } }

.hero-lockup { position: relative; z-index: 2; text-align: center; display: grid; justify-items: center; gap: 12px; animation: heroIn .8s var(--ease) both; }
@keyframes heroIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.brand--hero .brand-mark { font-size: clamp(3.6rem, 13vw, 9rem); line-height: .9; }
.hero-tagline { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.05rem, 3vw, 1.7rem); color: var(--ink-soft); max-width: 24ch; margin: 0; }
.hero-scroll { margin-top: 12px; display: inline-flex; flex-direction: column; align-items: center; gap: 4px; color: var(--muted); font-weight: 700; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; text-decoration: none; }
.hero-scroll:hover { color: var(--red); }
.hero-scroll svg { width: 22px; height: 22px; animation: heroBounce 1.8s ease-in-out infinite; }
@keyframes heroBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

.hpill {
  position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: var(--r-pill); background: var(--red-soft); color: var(--ink);
  font-weight: 700; font-size: clamp(.8rem, 1.5vw, 1rem); white-space: nowrap; text-decoration: none;
  box-shadow: 0 6px 18px rgba(255,0,0,.10); transition: transform .3s var(--ease), box-shadow .3s;
  animation: floaty 6s ease-in-out infinite;
}
html[data-theme="dark"] .hpill { background: #241015; color: var(--ink); }
.hpill .hpill-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.hpill:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 0 0 4px color-mix(in srgb, var(--red) 18%, transparent), 0 16px 40px rgba(255,0,0,.34); }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.hpill--exp    { top: 12%; left: 3%;   animation-delay: 0s; }
.hpill--roas   { top: 19%; right: 4%;  animation-delay: .8s; }
.hpill--proj   { top: 49%; left: 1%;   animation-delay: 1.6s; }
.hpill--meta   { bottom: 16%; left: 11%; animation-delay: 1.1s; }
.hpill--google { bottom: 14%; right: 7%; animation-delay: .4s; }

@media (max-width: 860px) {
  .hero-home { min-height: auto; padding: 40px 18px 56px; }
  .hero-home-inner { min-height: auto; display: flex; flex-direction: column; gap: 26px; }
  .radar { width: 190vw; }
  .hero-pills { position: static; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
  .hpill { position: static; animation: none; }
}

/* ============================================================
   "Book a Free Quote" card + form (reference UI)
   ============================================================ */
.quote-card {
  background: linear-gradient(180deg, var(--red-soft), var(--bg-2));
  border: 1px solid color-mix(in srgb, var(--red) 18%, var(--line));
  border-radius: var(--r-lg); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-md);
}
html[data-theme="dark"] .quote-card { background: linear-gradient(180deg, #2a1014, var(--surface)); }
.quote-title { font-size: clamp(1.7rem, 4vw, 2.4rem); text-align: center; margin-bottom: 4px; }
.quote-sub { text-align: center; color: var(--muted); font-size: .92rem; margin-bottom: 24px; max-width: 34ch; margin-inline: auto; }
.quote-form .field { margin-bottom: 15px; }
.quote-form label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: 7px; padding-left: 8px; color: var(--ink); }
.quote-form .req { color: var(--red); }
.quote-form .opt { font-weight: 500; color: var(--muted); font-size: .82em; }
.quote-form input, .quote-form textarea, .quote-form select {
  width: 100%; font: inherit; color: var(--ink); background: var(--bg-2);
  border: 1.5px solid var(--line); border-radius: var(--r-pill); padding: 14px 20px;
  transition: border-color .2s, box-shadow .2s;
}
.quote-form textarea { border-radius: var(--r-md); min-height: 110px; resize: vertical; }
.quote-form input::placeholder, .quote-form textarea::placeholder { color: var(--muted); }
.quote-form input:focus, .quote-form textarea:focus, .quote-form select:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 4px color-mix(in srgb, var(--red) 14%, transparent);
}
.quote-form .phone-field { display: flex; gap: 8px; }
.quote-form .phone-field .ccode { width: 124px; flex: 0 0 auto; border-radius: var(--r-pill); padding-inline: 14px; cursor: pointer; font-weight: 600; }
.quote-form .phone-field .phone-num { flex: 1; min-width: 0; }
.quote-form .quote-submit { width: 100%; justify-content: center; margin-top: 8px; }
.quote-form .form-note { text-align: center; margin-top: 12px; }
.quote-form .field.invalid input, .quote-form .field.invalid textarea { border-color: var(--red); box-shadow: 0 0 0 4px color-mix(in srgb, var(--red) 12%, transparent); }

/* ============================================================
   Blog — magazine layout, placeholders, User Login button
   ============================================================ */
.blog-mag { display: grid; grid-template-columns: 1.5fr 1fr; gap: 22px; align-items: start; }
.blog-col { display: flex; flex-direction: column; gap: 22px; }
.blog-ph {
  border: 2px dashed var(--line); border-radius: var(--r-lg); display: grid; place-items: center;
  color: var(--muted); font-weight: 700; letter-spacing: .02em; background: var(--surface);
}
.blog-ph--lg { min-height: 300px; font-size: 1.05rem; }
.blog-ph--sm { min-height: 184px; font-size: .95rem; }
.blog-ph span { opacity: .7; }

/* large featured card */
.blog-card--lg .blog-thumb { aspect-ratio: 16/8; }
.blog-card--lg .blog-body h3 { font-size: 1.5rem; }
.blog-card--sm { display: flex; flex-direction: column; }
.blog-card--sm .blog-thumb { aspect-ratio: 16/9; }
.blog-card--sm .blog-body h3 { font-size: 1.15rem; }
.blog-card--sm .blog-body p { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.blog-actions { margin-top: 30px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.blog-soon { color: var(--muted); font-weight: 500; }
.btn-userlogin {
  display: inline-flex; align-items: center; gap: 9px; padding: 11px 22px; border-radius: var(--r-pill);
  background: var(--red-soft); color: var(--red); font-weight: 800; font-size: .95rem; text-decoration: none;
  border: 1px solid color-mix(in srgb, var(--red) 25%, transparent); transition: transform .2s var(--ease), background .2s, color .2s, box-shadow .2s;
}
.btn-userlogin svg { width: 17px; height: 17px; }
.btn-userlogin:hover { background: var(--red); color: #fff; transform: translateY(-3px); box-shadow: var(--shadow-red); }

@media (max-width: 760px) {
  .blog-mag { grid-template-columns: 1fr; }
  .blog-ph--lg { min-height: 200px; }
  .blog-actions { justify-content: center; text-align: center; }
}
