/* ============================================================
   ALPHAPORTER.COM — MAIN STYLESHEET
   Brand: Navy (#1a2340), Gold accent (#c9a84c), White
   ============================================================ */

:root {
  --navy:       #1a2340;
  --navy-light: #243058;
  --navy-dark:  #111827;
  --gold:       #c9a84c;
  --gold-light: #e2c472;
  --white:      #ffffff;
  --off-white:  #f5f4f0;
  --gray:       #8b95a8;
  --gray-light: #e8eaf0;
  --text:       #1a2340;
  --radius:     6px;
  --radius-lg:  12px;
  --transition: 0.25s ease;
  --shadow:     0 4px 24px rgba(26,35,64,0.10);
  --shadow-lg:  0 12px 48px rgba(26,35,64,0.18);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 32px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn-full { width: 100%; text-align: center; }

/* ── SECTION LABELS ───────────────────────────────────── */
.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 620px;
  margin-bottom: 48px;
  line-height: 1.7;
}

/* ── NAV ──────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26,35,64,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.25); }

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: flex; align-items: center; }
.logo-img {
  height: 42px;
  width: auto;
  /* Logo is dark navy on light — invert for dark nav */
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--navy-dark);
  padding: 9px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.85rem;
}
.nav-links .nav-cta:hover {
  background: var(--gold-light);
  color: var(--navy-dark);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy-dark);
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a {
  color: rgba(255,255,255,0.8);
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu.open { display: flex; }

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
}
.blob-1 {
  width: 600px; height: 600px;
  background: var(--gold);
  top: -200px; right: -150px;
}
.blob-2 {
  width: 400px; height: 400px;
  background: #3a5cad;
  bottom: -100px; left: -100px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 24px 40px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding: 8px 16px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
}
.dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.95;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}
.stat-div {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
}

/* TICKER */
.hero-ticker {
  position: relative;
  z-index: 2;
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 14px 0;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}
.ticker-track {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker-track span {
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.ticker-track .sep { color: var(--gold); opacity: 0.6; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── WHY SECTION ──────────────────────────────────────── */
.why {
  background: var(--off-white);
  padding: 100px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--gray-light);
  transition: box-shadow var(--transition), transform var(--transition);
}
.why-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.why-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--gray-light);
  line-height: 1;
  margin-bottom: 16px;
}
.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.why-card p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ── CATEGORIES ───────────────────────────────────────── */
.categories {
  padding: 100px 0;
  background: var(--white);
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 16px;
}
.cat-card {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}
.cat-card:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.cat-card:hover .cat-name { color: var(--white); }
.cat-card:hover .cat-count { color: var(--gold); }
.cat-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.cat-name {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
  transition: color var(--transition);
}
.cat-count {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  color: var(--gray);
  transition: color var(--transition);
}

/* ── TOOL LIBRARY ─────────────────────────────────────── */
.tools {
  padding: 100px 0;
  background: var(--off-white);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.filter-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--gray-light);
  background: var(--white);
  color: var(--gray);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}

.tool-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-light);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.tool-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.tool-card.hidden { display: none; }

.tool-header {
  display: flex;
  align-items: center;
  gap: 14px;
}
.tool-logo {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  flex-shrink: 0;
}
.tool-logo.creative { background: #c84a4a; }
.tool-logo.copy     { background: #4a7fc8; }
.tool-logo.media    { background: #7c4ac8; }
.tool-logo.seo      { background: #2d9e6b; }
.tool-logo.email    { background: #e07a30; }
.tool-logo.social   { background: #d44d8a; }
.tool-logo.video    { background: #1a7abf; }
.tool-logo.analytics{ background: #3a6db5; }

.tool-meta { flex: 1; min-width: 0; }
.tool-meta h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tool-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 500;
}
.creative-tag { background: #fde8e8; color: #c84a4a; }
.copy-tag     { background: #e8f0fd; color: #4a7fc8; }
.media-tag    { background: #ede8fd; color: #7c4ac8; }
.seo-tag      { background: #e8f7ef; color: #2d9e6b; }
.email-tag    { background: #fdf0e8; color: #e07a30; }
.social-tag   { background: #fde8f3; color: #d44d8a; }
.video-tag    { background: #e8f3fd; color: #1a7abf; }
.analytics-tag{ background: #e8eefa; color: #3a6db5; }

.tool-rating { font-size: 0.78rem; color: var(--gold); flex-shrink: 0; }

.tool-card > p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
  flex: 1;
}
.tool-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--gray-light);
}
.tool-price {
  font-family: 'DM Mono', monospace;
  font-size: 0.8rem;
  color: var(--navy);
  font-weight: 500;
}
.tool-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.tool-link:hover { color: var(--navy); }

.tools-cta {
  text-align: center;
  padding: 48px 32px;
  background: var(--navy);
  border-radius: var(--radius-lg);
}
.tools-cta p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

/* ── HOW IT WORKS ─────────────────────────────────────── */
.how {
  padding: 100px 0;
  background: var(--white);
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--gray-light);
  line-height: 1;
}
.step-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.step-body p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.7;
}
.step-arrow {
  font-size: 1.8rem;
  color: var(--gold);
  padding-top: 20px;
  flex-shrink: 0;
  align-self: center;
}

.how-callout {
  background: var(--navy);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 28px 36px;
}
.how-callout span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.45rem;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.3;
}

/* ── CONTACT ──────────────────────────────────────────── */
.contact {
  padding: 100px 0;
  background: var(--off-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-left h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
.contact-left p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 28px;
}
.contact-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-bullets li {
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--off-white);
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 11px 14px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,35,64,0.08);
}
.form-group input::placeholder { color: var(--gray); }

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--gray);
  text-align: center;
  line-height: 1.5;
}

.form-success {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 32px;
  text-align: center;
  border: 1px solid var(--gray-light);
}
.success-icon {
  width: 64px; height: 64px;
  background: var(--gold);
  color: var(--white);
  font-size: 1.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.form-success p { color: var(--gray); font-size: 0.95rem; line-height: 1.7; }

/* ── FOOTER ───────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  padding: 64px 0 32px;
}
.footer-top {
  display: flex;
  gap: 64px;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-brand {
  max-width: 300px;
}
.footer-brand .logo-img {
  filter: brightness(0) invert(1);
  height: 36px;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.footer-links {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ── ANIMATIONS ───────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); align-self: center; padding-top: 0; }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-headline { font-size: clamp(3rem, 12vw, 5rem); }
  .hero-stats { gap: 16px; }
  .stat-div { display: none; }
  .stat { padding: 0 16px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-links { gap: 32px; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 480px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .tool-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .filter-bar { gap: 8px; }
  .filter-btn { font-size: 0.75rem; padding: 7px 14px; }
}

/* ── INLINE SVG LOGO ──────────────────────────────────── */
.logo-link { display: flex; align-items: center; text-decoration: none; }
.logo-svg {
  height: 44px;
  width: auto;
  color: #ffffff;
  display: block;
}
.logo-svg--footer {
  color: rgba(255,255,255,0.9);
  height: 40px;
  margin-bottom: 16px;
}

/* ── CATEGORY ICON CIRCLES ────────────────────────────── */
.cat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: transform 0.2s ease;
}
.cat-card:hover .cat-icon { transform: scale(1.08); }

.cat-icon--creative  { background: #fde8e8; color: #c84a4a; }
.cat-icon--copy      { background: #e8f0fd; color: #3a6db5; }
.cat-icon--media     { background: #ede8fd; color: #7c4ac8; }
.cat-icon--seo       { background: #e8f7ef; color: #2d9e6b; }
.cat-icon--email     { background: #fdf0e8; color: #d46e1a; }
.cat-icon--social    { background: #fde8f3; color: #c4366e; }
.cat-icon--video     { background: #e8f3fd; color: #1a6faf; }
.cat-icon--analytics { background: #eaf0fb; color: #2a56a0; }
.cat-icon--cro       { background: #fdf7e0; color: #b08a00; }
.cat-icon--pr        { background: #e8fbf7; color: #1a8f70; }
.cat-icon--research  { background: #f0eafb; color: #7240b5; }
.cat-icon--automation{ background: #e8f5e8; color: #2d8a3e; }

/* hover: invert to navy */
.cat-card:hover .cat-icon--creative,
.cat-card:hover .cat-icon--copy,
.cat-card:hover .cat-icon--media,
.cat-card:hover .cat-icon--seo,
.cat-card:hover .cat-icon--email,
.cat-card:hover .cat-icon--social,
.cat-card:hover .cat-icon--video,
.cat-card:hover .cat-icon--analytics,
.cat-card:hover .cat-icon--cro,
.cat-card:hover .cat-icon--pr,
.cat-card:hover .cat-icon--research,
.cat-card:hover .cat-icon--automation {
  background: rgba(255,255,255,0.12);
  color: #c9a84c;
}
