/*
Theme Name: AIQEN Co
Theme URI: https://aiqen.co
Author: AIQEN Co
Author URI: https://aiqen.co
Description: Premium AI Revenue & Operations Systems agency theme. Dark, modern, conversion-focused. Built for service businesses.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
License URI: https://aiqen.co/license
Text Domain: aiqen
Tags: dark, business, agency, custom-colors, custom-logo, custom-menu, featured-images, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready
*/

/* ============================================================
   CSS CUSTOM PROPERTIES — DESIGN TOKENS
   ============================================================ */
:root {
  --color-primary:    #0F172A;
  --color-secondary:  #2563EB;
  --color-accent:     #06B6D4;
  --color-white:      #FFFFFF;
  --color-light:      #F8FAFC;
  --color-dark-gray:  #475569;
  --color-muted:      #64748B;
  --color-border:     rgba(255,255,255,0.07);
  --color-card:       #111827;
  --color-surface:    #080E1A;

  --font-heading: 'Sora', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  20px;

  --shadow-glow: 0 0 40px rgba(37,99,235,0.15);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-btn:  0 8px 25px rgba(37,99,235,0.35);

  --transition: all 0.2s ease;
  --transition-slow: all 0.4s ease;

  --max-width: 1200px;
  --section-pad: 100px 24px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--color-primary);
  color: var(--color-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-secondary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-accent); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-white);
}

p { color: var(--color-muted); line-height: 1.7; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: var(--section-pad); }
.text-center { text-align: center; }
.text-gradient {
  background: linear-gradient(135deg, #FFFFFF 0%, #06B6D4 50%, #2563EB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: 12px;
}
.grid-bg {
  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: 60px 60px;
}
.surface-dark { background: var(--color-surface); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  border: none;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--color-secondary);
  color: white;
}
.btn-primary:hover {
  background: #1D4ED8;
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-btn);
}
.btn-ghost {
  background: transparent;
  color: #94A3B8;
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.25);
  color: white;
  background: rgba(255,255,255,0.05);
}
.btn-accent {
  background: var(--color-accent);
  color: white;
}
.btn-accent:hover { background: #0891B2; color: white; transform: translateY(-1px); }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 17px; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition-slow);
}
.card:hover {
  border-color: rgba(37,99,235,0.25);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.card-feature { padding: 40px; border-radius: var(--radius-xl); }

/* ============================================================
   GRID LAYOUTS
   ============================================================ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }

/* ============================================================
   TAGS / BADGES
   ============================================================ */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 1px solid;
}
.badge-blue  { background: rgba(37,99,235,0.1);   color: #2563EB; border-color: rgba(37,99,235,0.25); }
.badge-cyan  { background: rgba(6,182,212,0.1);   color: #06B6D4; border-color: rgba(6,182,212,0.25); }
.badge-green { background: rgba(16,185,129,0.1);  color: #10B981; border-color: rgba(16,185,129,0.25); }
.badge-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(37,99,235,0.12);
  color: var(--color-secondary);
  border: 1px solid rgba(37,99,235,0.25);
  margin-bottom: 16px;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-muted);
  margin-bottom: 7px;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  color: white;
  font-size: 14px;
  font-family: var(--font-body);
  transition: var(--transition);
  outline: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--color-secondary);
  background: rgba(37,99,235,0.06);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.form-input::placeholder,
.form-textarea::placeholder { color: #475569; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select option { background: #111827; color: white; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition-slow);
  padding: 0;
}
#site-header.scrolled {
  background: rgba(15,23,42,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, #2563EB, #06B6D4);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: white;
  letter-spacing: -0.02em;
}
.logo-text span { color: var(--color-accent); }

/* Desktop Nav */
.nav-primary { display: flex; align-items: center; }
.nav-primary ul { display: flex; align-items: center; gap: 8px; }
.nav-primary ul li a {
  color: #94A3B8;
  font-size: 14px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 7px;
  text-decoration: none;
  transition: var(--transition);
  display: block;
}
.nav-primary ul li a:hover,
.nav-primary ul li.current-menu-item a,
.nav-primary ul li.current-page-ancestor a {
  color: white;
  background: rgba(255,255,255,0.05);
}

/* Dropdown */
.nav-primary ul li { position: relative; }
.nav-primary ul li ul {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #111827;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  z-index: 999;
}
.nav-primary ul li:hover > ul { display: flex; }
.nav-primary ul li ul li a { font-size: 13px; border-radius: 6px; }

.header-cta { display: flex; align-items: center; gap: 12px; }

/* Mobile Nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: #94A3B8;
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

#mobile-nav {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: rgba(9,14,26,0.98);
  backdrop-filter: blur(20px);
  padding: 24px;
  overflow-y: auto;
  z-index: 999;
}
#mobile-nav.open { display: block; }
#mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
#mobile-nav ul li a {
  display: block;
  padding: 14px 16px;
  color: #94A3B8;
  font-size: 16px;
  font-weight: 500;
  border-radius: 10px;
  transition: var(--transition);
}
#mobile-nav ul li a:hover,
#mobile-nav ul li.current-menu-item a {
  color: white;
  background: rgba(255,255,255,0.06);
}
.mobile-nav-cta { margin-top: 20px; }
.mobile-nav-cta .btn { width: 100%; justify-content: center; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 130px 24px 80px;
}
.hero-glow {
  position: absolute;
  top: 20%; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { max-width: var(--max-width); margin: 0 auto; width: 100%; }
.hero-inner { max-width: 860px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.25);
  border-radius: 100px;
  padding: 7px 16px;
  margin-bottom: 32px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulseDot 2s infinite;
}
.hero-badge span { font-size: 12px; font-weight: 600; color: #94A3B8; letter-spacing: 0.05em; }
.hero h1 {
  font-size: clamp(40px, 6vw, 78px);
  font-weight: 800;
  line-height: 1.04;
  color: white;
  margin-bottom: 24px;
  letter-spacing: -0.035em;
}
.hero-sub {
  font-size: clamp(17px, 2.2vw, 21px);
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-social-proof { display: flex; align-items: center; gap: 16px; }
.avatar-stack { display: flex; }
.avatar-stack .avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  margin-left: -8px;
  overflow: hidden;
  background: linear-gradient(135deg, #2563EB, #06B6D4);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: white; font-weight: 700;
}
.avatar-stack .avatar:first-child { margin-left: 0; }
.proof-text .stars { color: #F59E0B; font-size: 12px; letter-spacing: 1px; }
.proof-text p { font-size: 12px; color: var(--color-muted); margin-top: 2px; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 52px 24px;
}
.stats-bar .container { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
  line-height: 1;
}
.stat-label { font-size: 14px; color: #475569; }

/* ============================================================
   PROBLEMS SECTION
   ============================================================ */
.problems-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.problem-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition-slow);
}
.problem-card:hover { border-color: rgba(37,99,235,0.2); transform: translateY(-2px); }
.problem-icon { font-size: 24px; margin-bottom: 16px; color: var(--color-dark-gray); }
.problem-card h3 { font-size: 16px; color: white; margin-bottom: 10px; font-weight: 700; }
.problem-card p { font-size: 14px; line-height: 1.7; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }
.service-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 36px;
  transition: var(--transition-slow);
  cursor: pointer;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.service-card h3 { font-size: 22px; color: white; margin-bottom: 14px; font-weight: 700; letter-spacing: -0.02em; }
.service-outcomes { display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
.service-outcome {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: #94A3B8;
}
.outcome-check {
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 9px;
}

/* ============================================================
   WORKFLOW SECTION
   ============================================================ */
.workflow-container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.workflow-steps { display: flex; flex-direction: column; }
.workflow-step { position: relative; }
.workflow-node {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(17,24,39,0.9);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-slow);
}
.workflow-node.active {
  border-color: var(--color-accent);
  background: rgba(6,182,212,0.08);
  box-shadow: 0 0 20px rgba(6,182,212,0.1);
}
.workflow-node-num {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #64748B;
  flex-shrink: 0;
  transition: var(--transition-slow);
}
.workflow-node.active .workflow-node-num {
  background: rgba(6,182,212,0.2);
  color: var(--color-accent);
}
.workflow-node-content { flex: 1; }
.workflow-node-content h4 { font-size: 14px; color: #94A3B8; font-weight: 600; margin-bottom: 2px; }
.workflow-node.active .workflow-node-content h4 { color: white; }
.workflow-node-content p { font-size: 12px; color: #475569; }
.workflow-node-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
  display: none;
  animation: pulseDot 1.5s infinite;
}
.workflow-node.active .workflow-node-dot { display: block; }
.workflow-connector {
  width: 2px;
  height: 28px;
  background: linear-gradient(to bottom, rgba(37,99,235,0.4), rgba(6,182,212,0.4));
  margin: 0 auto;
  margin-left: 36px;
}
.workflow-detail {
  background: rgba(17,24,39,0.9);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: sticky;
  top: 90px;
}
.workflow-detail-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.workflow-detail-num {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(6,182,212,0.15);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px;
  color: var(--color-accent);
}
.workflow-detail-meta span { font-size: 11px; color: #64748B; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.workflow-detail-meta h3 { font-size: 22px; color: white; margin-top: 2px; }
.workflow-detail-body { color: var(--color-muted); font-size: 15px; line-height: 1.7; margin-bottom: 24px; }
.workflow-progress { display: flex; gap: 6px; margin-bottom: 20px; }
.workflow-pip {
  height: 3px; flex: 1; border-radius: 2px;
  background: rgba(255,255,255,0.08);
  cursor: pointer;
  transition: var(--transition);
}
.workflow-pip.active { background: var(--color-accent); }
.workflow-result {
  background: rgba(6,182,212,0.06);
  border: 1px solid rgba(6,182,212,0.15);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}
.workflow-result-label { font-size: 12px; color: var(--color-accent); font-weight: 600; margin-bottom: 6px; }
.workflow-result p { font-size: 14px; color: #94A3B8; line-height: 1.6; }
.workflow-result strong { color: white; }

/* ============================================================
   CASE STUDIES
   ============================================================ */
.case-studies-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }
.case-study-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 32px;
  cursor: pointer;
  transition: var(--transition-slow);
  text-decoration: none;
  display: block;
  color: inherit;
}
.case-study-card:hover { transform: translateY(-3px); border-color: rgba(37,99,235,0.2); box-shadow: var(--shadow-card); }
.case-study-header { margin-bottom: 20px; }
.case-study-header h3 { font-size: 17px; color: white; margin-bottom: 4px; font-weight: 700; }
.case-study-header .meta { font-size: 13px; color: #475569; }
.case-study-problem { color: var(--color-muted); font-size: 13px; line-height: 1.6; margin-bottom: 20px; }
.case-study-results {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}
.result-item { text-align: center; }
.result-metric {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 3px;
}
.result-desc { font-size: 11px; color: #475569; line-height: 1.4; }

/* ============================================================
   WHY AIQEN
   ============================================================ */
.why-grid { display: flex; flex-direction: column; gap: 14px; }
.why-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: rgba(17,24,39,0.6);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.why-item:hover { border-color: rgba(37,99,235,0.15); background: rgba(17,24,39,0.85); }
.why-num {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(37,99,235,0.1);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px;
  color: var(--color-secondary);
  flex-shrink: 0;
}
.why-item h4 { font-size: 15px; color: white; margin-bottom: 6px; font-weight: 700; }
.why-item p { font-size: 13px; line-height: 1.6; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-box {
  text-align: center;
  background: rgba(17,24,39,0.9);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 24px;
  padding: 72px 48px;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 400px; height: 250px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box h2 { font-size: clamp(28px, 4vw, 46px); color: white; margin-bottom: 16px; }
.cta-box p { font-size: 17px; line-height: 1.7; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-box .cta-note { font-size: 13px; color: #475569; margin-top: 14px; margin-bottom: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: #060C18;
  border-top: 1px solid var(--color-border);
}
.footer-main {
  padding: 72px 24px 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand p { font-size: 14px; color: #64748B; line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #64748B;
  font-size: 14px;
  transition: var(--transition);
  text-decoration: none;
}
.social-link:hover { background: rgba(37,99,235,0.15); border-color: rgba(37,99,235,0.3); color: var(--color-secondary); }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: white;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 14px; color: #64748B; text-decoration: none; transition: var(--transition); }
.footer-links a:hover { color: #94A3B8; }
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: #475569; }

/* ============================================================
   STICKY CTA BUTTON
   ============================================================ */
#sticky-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
  pointer-events: none;
}
#sticky-cta.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
#sticky-cta .btn {
  box-shadow: 0 8px 32px rgba(37,99,235,0.45);
  font-size: 14px;
  padding: 12px 22px;
  background: linear-gradient(135deg, #2563EB, #1D4ED8);
}

/* ============================================================
   PAGE-SPECIFIC: SERVICES PAGE
   ============================================================ */
.page-hero {
  padding: 160px 24px 80px;
  text-align: center;
  max-width: var(--max-width);
  margin: 0 auto;
}
.page-hero h1 { font-size: clamp(32px,5vw,64px); margin-bottom: 20px; }
.page-hero p { font-size: 18px; max-width: 560px; margin: 0 auto; }
.service-detail-section { padding: 80px 24px; border-top: 1px solid rgba(255,255,255,0.04); }
.service-detail-section:nth-child(odd) { background: var(--color-surface); }
.service-detail-inner { max-width: 1100px; margin: 0 auto; }
.service-detail-header { margin-bottom: 48px; }
.service-detail-header h2 { font-size: clamp(28px,4vw,48px); margin-bottom: 14px; }
.service-detail-header .headline { font-size: 18px; font-weight: 600; color: var(--color-secondary); font-family: var(--font-heading); margin-bottom: 16px; }
.service-detail-header p { font-size: 16px; max-width: 640px; line-height: 1.8; }
.two-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.panel-card {
  background: rgba(17,24,39,0.8);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.panel-card h3 { font-size: 15px; color: white; margin-bottom: 20px; font-weight: 700; }
.includes-list, .outcomes-list { display: flex; flex-direction: column; gap: 10px; }
.includes-item { display: flex; align-items: center; gap: 10px; }
.includes-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.includes-item span { color: #94A3B8; font-size: 14px; }
.outcome-item { display: flex; align-items: flex-start; gap: 10px; }
.outcome-item span { color: #94A3B8; font-size: 14px; line-height: 1.5; }
.process-steps { display: flex; gap: 0; overflow-x: auto; margin-bottom: 48px; }
.process-step {
  flex: 1; min-width: 140px;
  padding: 20px 16px;
  background: rgba(17,24,39,0.8);
  border: 1px solid var(--color-border);
}
.process-step:first-child { border-radius: 12px 0 0 12px; }
.process-step:last-child { border-radius: 0 12px 12px 0; }
.process-step + .process-step { border-left: none; }
.process-num { font-size: 12px; font-weight: 700; letter-spacing: 0.05em; margin-bottom: 10px; }
.process-step h4 { font-size: 14px; color: white; margin-bottom: 6px; font-weight: 700; }
.process-step p { font-size: 12px; line-height: 1.5; }
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
.faq-item {
  background: rgba(17,24,39,0.8);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  cursor: pointer;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(37,99,235,0.2); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-question h4 { font-size: 15px; color: white; font-weight: 600; font-family: var(--font-heading); }
.faq-icon { color: #64748B; font-size: 18px; flex-shrink: 0; transition: var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--color-secondary); }
.faq-answer { display: none; padding-top: 14px; }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { font-size: 14px; line-height: 1.7; }

/* ============================================================
   PAGE-SPECIFIC: ABOUT PAGE
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 100px; }
.stats-box {
  background: rgba(17,24,39,0.8);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.stat-box-item {
  text-align: center;
  padding: 24px;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.stat-box-item:nth-child(2n) { border-right: none; }
.stat-box-item:nth-child(3), .stat-box-item:nth-child(4) { border-bottom: none; }
.stat-box-item .num {
  font-family: var(--font-heading);
  font-size: 36px; font-weight: 800;
  color: white; letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.stat-box-item .lbl { font-size: 13px; color: #475569; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-bottom: 80px; }
.value-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.value-card .num {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(37,99,235,0.1);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; color: var(--color-secondary);
  margin-bottom: 16px;
}
.value-card h3 { font-size: 16px; color: white; margin-bottom: 10px; font-weight: 700; }
.value-card p { font-size: 14px; line-height: 1.7; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-bottom: 80px; }
.team-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.team-avatar {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 800; font-size: 16px;
  margin-bottom: 20px;
}
.team-card h3 { font-size: 17px; color: white; margin-bottom: 4px; font-weight: 700; }
.team-role { font-size: 13px; font-weight: 600; margin-bottom: 14px; }
.team-card p { font-size: 14px; line-height: 1.7; }

/* ============================================================
   PAGE-SPECIFIC: CASE STUDIES
   ============================================================ */
.cs-full-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 20px;
  transition: var(--transition-slow);
}
.cs-full-card:hover { border-color: rgba(37,99,235,0.2); }
.cs-card-header {
  padding: 32px 36px 24px;
  border-bottom: 1px solid var(--color-border);
}
.cs-card-body { padding: 32px 36px; }
.cs-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin-bottom: 32px; }
.cs-col-label { font-size: 12px; font-weight: 700; color: #475569; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.cs-col p { font-size: 14px; line-height: 1.8; color: #94A3B8; }
.cs-metrics { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 28px; }
.cs-metric-box {
  background: rgba(17,24,39,0.8);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
}
.cs-metric { font-family: var(--font-heading); font-size: clamp(20px,3vw,32px); font-weight: 800; color: white; letter-spacing: -0.02em; margin-bottom: 5px; }
.cs-metric-label { font-size: 12px; color: #64748B; line-height: 1.4; }
.cs-quote {
  border-radius: var(--radius-md);
  padding: 28px 32px;
}
.cs-quote p { font-size: 16px; line-height: 1.7; font-style: italic; margin-bottom: 12px; }
.cs-quote .attribution { font-size: 13px; font-weight: 600; font-style: normal; }

/* ============================================================
   PAGE-SPECIFIC: BLOG
   ============================================================ */
.blog-featured {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 44px;
  margin-bottom: 32px;
  cursor: pointer;
  transition: var(--transition-slow);
}
.blog-featured:hover { border-color: rgba(37,99,235,0.2); transform: translateY(-2px); }
.blog-featured h2 { font-size: clamp(22px,3vw,34px); color: white; margin-bottom: 14px; letter-spacing: -0.02em; }
.blog-featured p { font-size: 16px; line-height: 1.7; margin-bottom: 20px; max-width: 640px; }
.blog-meta { display: flex; align-items: center; gap: 12px; }
.blog-date, .blog-read-time { font-size: 13px; color: #475569; }
.blog-meta-sep { color: #2E3A4A; }
.blog-more-link { font-size: 13px; color: var(--color-secondary); font-weight: 600; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }
.blog-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  cursor: pointer;
  transition: var(--transition-slow);
  text-decoration: none; display: block; color: inherit;
}
.blog-card:hover { transform: translateY(-3px); border-color: rgba(37,99,235,0.15); }
.blog-card h3 { font-size: 17px; color: white; margin-bottom: 10px; line-height: 1.3; font-weight: 700; }
.blog-card p { font-size: 13px; line-height: 1.6; margin-bottom: 16px; }
.blog-card-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}
.newsletter-box {
  margin-top: 64px;
  padding: 52px;
  background: rgba(17,24,39,0.9);
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: var(--radius-xl);
  text-align: center;
}
.newsletter-box h2 { font-size: clamp(22px,3vw,34px); color: white; margin-bottom: 12px; }
.newsletter-box p { font-size: 15px; max-width: 400px; margin: 0 auto 28px; }
.newsletter-form { display: flex; gap: 12px; max-width: 420px; margin: 0 auto; }
.newsletter-form input { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md); padding: 12px 16px; color: white; font-size: 14px; outline: none; font-family: var(--font-body); }
.newsletter-form input:focus { border-color: var(--color-secondary); }

/* ============================================================
   PAGE-SPECIFIC: CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; align-items: start; }
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}
.contact-info-icon {
  width: 40px; height: 40px;
  background: rgba(37,99,235,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.contact-info-label { font-size: 12px; font-weight: 600; color: #475569; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 3px; }
.contact-info-value { font-size: 14px; font-weight: 500; color: #94A3B8; }
.contact-callout {
  background: rgba(37,99,235,0.07);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 32px;
}
.contact-callout h3 { font-size: 15px; color: white; margin-bottom: 10px; font-weight: 700; }
.contact-callout p { font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.contact-form-box {
  background: rgba(17,24,39,0.8);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 44px;
}
.contact-form-box h3 { font-size: 22px; color: white; margin-bottom: 28px; font-weight: 700; }
.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}
.form-success.visible { display: block; }
.success-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  color: #10B981;
}
.form-success h3 { font-size: 22px; color: white; margin-bottom: 10px; }
.form-success p { font-size: 15px; }

/* ============================================================
   PAGE-SPECIFIC: BOOK A CALL
   ============================================================ */
.book-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.timeline { display: flex; flex-direction: column; }
.timeline-item { display: flex; gap: 16px; padding-bottom: 28px; position: relative; }
.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 17px; top: 40px;
  width: 2px; bottom: 0;
  background: rgba(37,99,235,0.2);
}
.timeline-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 12px; font-weight: 700;
  color: var(--color-secondary);
  z-index: 1;
}
.timeline-content { padding-top: 4px; }
.timeline-content h4 { font-size: 15px; color: white; margin-bottom: 6px; font-weight: 700; }
.timeline-content p { font-size: 14px; line-height: 1.6; }
.calendly-box {
  background: rgba(17,24,39,0.9);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.calendly-header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--color-border);
  display: flex; align-items: center; gap: 12px;
}
.calendly-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, #2563EB, #06B6D4);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 16px;
}
.calendly-header-text h3 { font-size: 16px; color: white; margin: 0; font-weight: 700; }
.calendly-header-text p { font-size: 13px; color: #475569; margin: 0; }
.calendly-body {
  padding: 40px 32px;
  min-height: 480px;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  gap: 20px;
  text-align: center;
}
.calendly-placeholder-icon {
  width: 64px; height: 64px;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin: 0 auto;
}
.calendly-body h3 { font-size: 17px; color: white; margin-bottom: 0; }
.calendly-body p { font-size: 14px; max-width: 300px; }
.calendly-code {
  background: rgba(37,99,235,0.07);
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: left;
  width: 100%;
}
.calendly-code code { font-family: 'Courier New', monospace; font-size: 12px; color: #94A3B8; line-height: 1.6; white-space: pre; display: block; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content { max-width: 760px; margin: 0 auto; padding: 140px 24px 100px; }
.legal-content h1 { font-size: 40px; color: white; margin-bottom: 8px; }
.legal-date { font-size: 14px; color: #475569; margin-bottom: 48px; display: block; }
.legal-section { margin-bottom: 40px; }
.legal-section h2 { font-size: 22px; color: white; margin-bottom: 14px; font-weight: 700; }
.legal-section p { font-size: 15px; line-height: 1.8; }

/* ============================================================
   404 PAGE
   ============================================================ */
.page-404 {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 24px; text-align: center;
}
.page-404-inner { position: relative; }
.page-404-bg {
  font-family: var(--font-heading);
  font-size: clamp(100px, 20vw, 200px);
  font-weight: 800;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}
.page-404-inner h1 { font-size: clamp(28px,5vw,52px); margin-bottom: 16px; position: relative; }
.page-404-inner p { font-size: 17px; max-width: 400px; margin: 0 auto 36px; position: relative; }
.page-404-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ============================================================
   WORDPRESS CORE COMPATIBILITY
   ============================================================ */
.wp-block-image img { border-radius: var(--radius-md); }
.alignwide { max-width: 1200px; }
.alignfull { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--color-muted); text-align: center; margin-top: 8px; }
.sticky { /* WordPress sticky post class */ }
.bypostauthor { /* WordPress comment author class */ }

/* Core WP Block Editor styles */
.wp-block-quote {
  border-left: 3px solid var(--color-secondary);
  padding-left: 24px;
  margin: 24px 0;
}
.wp-block-quote p { font-style: italic; font-size: 18px; color: #94A3B8; }
.wp-block-code {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
  font-size: 14px;
  overflow-x: auto;
}
.wp-block-separator { border: none; border-top: 1px solid var(--color-border); margin: 40px 0; }

/* Single post content */
.entry-content {
  max-width: 720px;
  margin: 0 auto;
}
.entry-content h1, .entry-content h2, .entry-content h3 { margin-top: 36px; margin-bottom: 14px; }
.entry-content p { margin-bottom: 18px; font-size: 16px; line-height: 1.8; color: #94A3B8; }
.entry-content ul, .entry-content ol { padding-left: 24px; margin-bottom: 18px; }
.entry-content li { color: #94A3B8; font-size: 16px; line-height: 1.7; margin-bottom: 6px; }
.entry-content ul li { list-style: disc; }
.entry-content ol li { list-style: decimal; }
.entry-content a { color: var(--color-secondary); }
.entry-content a:hover { color: var(--color-accent); }
.entry-content img { border-radius: var(--radius-md); margin: 32px 0; }

/* Comments */
.comments-area { max-width: 720px; margin: 60px auto; padding: 0 24px; }
.comments-title { font-size: 22px; color: white; margin-bottom: 28px; }
.comment-list { display: flex; flex-direction: column; gap: 20px; list-style: none; padding: 0; }
.comment { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 24px; }
.comment-author { font-weight: 700; color: white; font-size: 15px; }
.comment-meta { font-size: 12px; color: #475569; margin-bottom: 12px; }
.comment-content p { font-size: 14px; line-height: 1.7; }
.comment-reply-title { font-size: 20px; color: white; margin-bottom: 20px; }

/* Search form */
.search-form { display: flex; gap: 8px; }
.search-field { flex: 1; }
.search-submit { white-space: nowrap; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.animate-fade-up { animation: fadeUp 0.6s ease forwards; }
.animate-fade-in { animation: fadeIn 0.5s ease forwards; }

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .workflow-container { grid-template-columns: 1fr; }
  .workflow-detail { position: static; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .book-grid { grid-template-columns: 1fr; }
  .cs-metrics { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --section-pad: 64px 20px; }

  /* Nav */
  .nav-primary { display: none; }
  .header-cta .btn { display: none; }
  .nav-toggle { display: flex; }

  /* Stats bar */
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  /* Grids */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .two-panel { grid-template-columns: 1fr; }
  .cs-two-col { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 36px; }

  /* Hero */
  .hero { padding: 110px 20px 60px; }
  .hero h1 { font-size: clamp(34px, 9vw, 52px); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* CTA box */
  .cta-box { padding: 48px 24px; }
  .cta-box h2 { font-size: clamp(24px, 6vw, 36px); }

  /* Blog */
  .blog-featured { padding: 28px; }
  .newsletter-form { flex-direction: column; }

  /* Case Studies */
  .cs-metrics { grid-template-columns: repeat(2, 1fr); }
  .cs-card-body, .cs-card-header { padding: 24px 20px; }

  /* Services process */
  .process-steps { flex-direction: column; }
  .process-step { border-radius: 0 !important; border-left: 1px solid var(--color-border) !important; border-top: none !important; }
  .process-step:first-child { border-radius: 12px 12px 0 0 !important; border-top: 1px solid var(--color-border) !important; }
  .process-step:last-child { border-radius: 0 0 12px 12px !important; }

  /* Contact form box */
  .contact-form-box { padding: 28px 20px; }

  /* Calendly */
  .calendly-body { padding: 28px 20px; }

  /* Sticky CTA */
  #sticky-cta { bottom: 16px; right: 16px; }
  #sticky-cta .btn { padding: 11px 16px; font-size: 13px; }

  /* Page hero */
  .page-hero { padding: 120px 20px 60px; }

  /* Footer */
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Book a call */
  .book-grid { gap: 40px; }
}

/* ============================================================
   SCREEN READER / ACCESSIBILITY
   ============================================================ */
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px);
  clip-path: inset(50%);
  height: 1px; margin: -1px;
  overflow: hidden; padding: 0;
  position: absolute; width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
  clip: auto !important; clip-path: none;
  color: #21759b; display: block;
  font-size: 14px; font-weight: 700;
  height: auto; left: 5px;
  line-height: normal; padding: 15px 23px 14px;
  text-decoration: none; top: 5px;
  width: auto; z-index: 100000;
}
:focus-visible { outline: 2px solid var(--color-secondary); outline-offset: 3px; }
