/* ==============================================
   SOFTRO WORDPRESS THEME - MAIN STYLESHEET
   Dark-mode-first agency theme
   ============================================== */

/* --- Custom Properties --- */
:root {
  --accent: #c5f135;
  --accent-dark: #a8d022;
  --bg: #080808;
  --bg-2: #0f0f0f;
  --bg-3: #161616;
  --bg-4: #1e1e1e;
  --text: #f5f5f5;
  --text-muted: rgba(245, 245, 245, 0.55);
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.16);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --container: 1280px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body.light-mode {
  --bg: #ffffff;
  --bg-2: #f5f5f5;
  --bg-3: #ebebeb;
  --bg-4: #e0e0e0;
  --text: #111111;
  --text-muted: rgba(17, 17, 17, 0.55);
  --border: rgba(0, 0, 0, 0.1);
  --border-hover: rgba(0, 0, 0, 0.2);
}

/* --- 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-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }

img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Container --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ==============================================
   BUTTONS
   ============================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--accent);
  color: #0a0a0a;
  border: 2px solid var(--accent);
}
.btn-primary:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197, 241, 53, 0.35);
}

.btn-hero {
  background-color: transparent;
  color: var(--text);
  border: 2px solid var(--accent);
  padding: 1rem 2rem;
  font-size: 1rem;
}
.btn-hero:hover {
  background-color: var(--accent);
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197, 241, 53, 0.35);
}

.btn-outline {
  background-color: transparent;
  color: var(--text);
  border: 2px solid var(--border-hover);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ==============================================
   DARK MODE TOGGLE
   ============================================== */
.theme-toggle {
  position: fixed;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.theme-toggle:hover {
  background: var(--accent);
  color: #0a0a0a;
  border-color: var(--accent);
}

/* ==============================================
   HEADER / NAVBAR
   ============================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
  padding: 1.25rem 0;
}
.site-header.is-scrolled {
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
  padding: 0.875rem 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.site-logo-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  text-decoration: none;
}
.site-logo-text:hover { color: var(--text); }
.logo-icon { color: var(--accent); display: flex; align-items: center; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.custom-logo-wrap img { height: 40px; width: auto; }

/* Main Nav */
.main-navigation { flex: 1; display: flex; justify-content: center; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-menu li { position: relative; }
.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-full);
  transition: all var(--transition);
}
.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current_page_item > a {
  color: var(--text);
  background: var(--border);
}
.nav-menu > li:first-child > a {
  border: 1px solid var(--border-hover);
}

/* Dropdown */
.nav-menu .sub-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 200px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  list-style: none;
  z-index: 100;
}
.nav-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-menu .sub-menu a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-menu .sub-menu a:hover {
  color: var(--accent);
  background: rgba(197, 241, 53, 0.08);
}

/* Nav CTA + Hamburger */
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-cta { display: none; }
@media (min-width: 1024px) { .nav-cta { display: inline-flex; } }

.hamburger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text);
  transition: all var(--transition);
}
.hamburger-btn:hover { background: var(--accent); color: #0a0a0a; border-color: var(--accent); }
@media (min-width: 1024px) { .hamburger-btn { display: none; } }

/* Mobile Menu */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
}
.mobile-menu-overlay[hidden] { display: none; }
.mobile-menu-inner {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(380px, 90vw);
  background: var(--bg-2);
  border-left: 1px solid var(--border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  overflow-y: auto;
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-close {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.mobile-close:hover { background: var(--accent); color: #0a0a0a; }
.mobile-nav-menu { list-style: none; display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav-menu a {
  display: block;
  padding: 0.875rem 1rem;
  font-size: 1.125rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.mobile-nav-menu a:hover { color: var(--accent); background: rgba(197, 241, 53, 0.08); }
.mobile-cta { width: 100%; justify-content: center; margin-top: auto; }
@media (min-width: 1024px) { .main-navigation { display: flex; } }
@media (max-width: 1023px) { .main-navigation { display: none; } }

/* ==============================================
   SECTION SHARED STYLES
   ============================================== */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  font-family: var(--font-body);
}
.section-heading {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.section-subheading {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header--flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  text-align: left;
  gap: 2rem;
  flex-wrap: wrap;
}
.section-header--flex h2 { margin-bottom: 0; }

/* Scroll reveal */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}
.reveal-left { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }
.reveal-up.in-view, .reveal-left.in-view, .reveal-right.in-view {
  opacity: 1;
  transform: none;
}

/* ==============================================
   HERO SECTION
   ============================================== */
.hero-section {
  min-height: 100vh;
  background-color: var(--bg);
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(197,241,53,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-heading {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 2.5rem;
  color: var(--text);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.clutch-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.clutch-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 1px;
}
.clutch-review-on {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.clutch-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
}
.clutch-count { font-size: 0.75rem; color: var(--text-muted); }

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 520px;
}

/* 3D Voxel Cube Grid */
.cube-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 4px;
  transform: perspective(800px) rotateX(20deg) rotateY(-25deg) rotateZ(5deg);
  transform-style: preserve-3d;
  animation: floatCubes 8s ease-in-out infinite;
}
@keyframes floatCubes {
  0%, 100% { transform: perspective(800px) rotateX(20deg) rotateY(-25deg) rotateZ(5deg) translateY(0); }
  50% { transform: perspective(800px) rotateX(20deg) rotateY(-25deg) rotateZ(5deg) translateY(-12px); }
}

.cube {
  width: 38px;
  height: 38px;
  background: var(--cube-bg, #1a3a1a);
  border-radius: 4px;
  position: relative;
  transform-style: preserve-3d;
  animation: cubeAppear 0.6s ease-out both;
  animation-delay: calc((var(--row) + var(--col)) * 0.04s);
  transition: background var(--transition);
}

.cube:nth-child(4n)   { --cube-bg: #2d5a2d; }
.cube:nth-child(4n+1) { --cube-bg: #1a3a1a; }
.cube:nth-child(4n+2) { --cube-bg: #3a6b3a; }
.cube:nth-child(4n+3) { --cube-bg: #0f200f; }
.cube:nth-child(8)    { --cube-bg: var(--accent); box-shadow: 0 0 20px rgba(197,241,53,0.6); }
.cube:nth-child(19)   { --cube-bg: var(--accent); box-shadow: 0 0 20px rgba(197,241,53,0.6); }
.cube:nth-child(35)   { --cube-bg: var(--accent); box-shadow: 0 0 16px rgba(197,241,53,0.5); }
.cube:nth-child(50)   { --cube-bg: var(--accent); box-shadow: 0 0 16px rgba(197,241,53,0.5); }
.cube:nth-child(odd)  { opacity: 0.85; }

.cube::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
  border-radius: inherit;
}

@keyframes cubeAppear {
  from { opacity: 0; transform: scale(0.5) translateZ(-20px); }
  to { opacity: 1; transform: scale(1) translateZ(0); }
}

/* Stat Cards */
.stat-card {
  position: absolute;
  background: rgba(20, 40, 20, 0.9);
  border: 1px solid rgba(197, 241, 53, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.75rem;
  backdrop-filter: blur(12px);
  z-index: 10;
}
.stat-card--top { top: 0; left: 0; }
.stat-card--bottom { bottom: 0; right: 0; }
.stat-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ==============================================
   ABOUT SECTION
   ============================================== */
.about-section {
  padding: 6rem 0;
  background: var(--bg-2);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

.about-media { display: flex; flex-direction: column; gap: 1.5rem; }
.about-award-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  color: var(--accent);
}
.about-award-card div { display: flex; flex-direction: column; }
.about-award-card strong { color: var(--text); font-size: 1.0625rem; }
.about-award-card span { color: var(--text-muted); font-size: 0.875rem; }

.about-image-placeholder {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.about-content .section-tag { margin-bottom: 0.75rem; }
.about-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1.5rem;
  line-height: 1.3;
  font-weight: 700;
}
.about-text { color: var(--text-muted); font-size: 1.0625rem; margin: 1.5rem 0 2rem; line-height: 1.7; }
.about-users { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.avatar-group { display: flex; }
.avatar-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  border: 2px solid var(--bg-2);
  margin-right: -10px;
}
.about-users span { font-size: 0.9375rem; color: var(--text-muted); margin-left: 16px; }
.about-users strong { color: var(--text); }

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
@media (max-width: 600px) { .about-stats { grid-template-columns: repeat(2, 1fr); } }
.about-stat { display: flex; flex-direction: column; }
.about-stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.about-stat-suffix { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--accent); }
.about-stat-label { font-size: 0.8125rem; color: var(--text-muted); margin-top: 0.375rem; }

/* ==============================================
   SERVICES SECTION
   ============================================== */
.services-section { padding: 6rem 0; background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 700px) { .services-grid { grid-template-columns: 1fr; } }

.service-card { background: var(--bg); transition: background var(--transition); }
.service-card:hover { background: var(--bg-2); }
.service-card-inner { padding: 2.5rem; }
.service-num {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1rem;
  font-family: var(--font-body);
}
.service-name {
  font-size: 1.375rem;
  margin-bottom: 0.875rem;
  font-weight: 700;
}
.service-name a { color: var(--text); }
.service-name a:hover { color: var(--accent); }
.service-desc { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.65; margin-bottom: 1.5rem; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap var(--transition);
}
.service-link:hover { color: var(--accent); gap: 0.625rem; }

/* ==============================================
   PORTFOLIO SECTION
   ============================================== */
.portfolio-section { padding: 6rem 0; background: var(--bg-2); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .portfolio-grid { grid-template-columns: 1fr; } }

.portfolio-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.portfolio-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.portfolio-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-4);
}
.portfolio-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-card:hover .portfolio-card-image img { transform: scale(1.05); }
.portfolio-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.8125rem;
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-view-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent);
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}
.portfolio-view-btn:hover { transform: scale(1.1); color: #0a0a0a; }

.portfolio-card-body { padding: 1.5rem; }
.portfolio-name { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.875rem; }
.portfolio-name a { color: var(--text); }
.portfolio-name a:hover { color: var(--accent); }
.portfolio-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.portfolio-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-full);
  color: var(--text-muted);
  transition: all var(--transition);
}
.portfolio-tag:hover { border-color: var(--accent); color: var(--accent); }

.collaborate-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2.5rem 3rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.collaborate-banner p { font-family: var(--font-display); font-size: 1.375rem; font-weight: 700; }

/* ==============================================
   PROCESS SECTION
   ============================================== */
.process-section { padding: 6rem 0; background: var(--bg); }
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr; } }
.process-header { position: sticky; top: 8rem; }

.process-step {
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.process-step:first-child { border-top: 1px solid var(--border); }
.process-step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.75rem 0;
  cursor: pointer;
}
.process-step-meta { display: flex; flex-direction: column; gap: 0.25rem; }
.process-step-num { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; color: var(--accent); text-transform: uppercase; }
.process-step-title { font-size: 1.25rem; font-weight: 700; color: var(--text); transition: color var(--transition); }
.process-step.is-active .process-step-title { color: var(--accent); }
.process-step-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: all var(--transition);
}
.process-step.is-active .process-step-toggle {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0a0a;
  transform: rotate(180deg);
}
.process-step-body { padding-bottom: 1.75rem; }
.process-step-body p { color: var(--text-muted); margin-bottom: 1rem; }
.process-step-items { display: flex; flex-direction: column; gap: 0.5rem; }
.process-step-items li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--text);
}
.process-step-items li svg { color: var(--accent); flex-shrink: 0; }

/* ==============================================
   PARTNERS SECTION
   ============================================== */
.partners-section {
  padding: 4rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.partners-heading {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.marquee-wrapper { overflow: hidden; position: relative; }
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 1;
}
.marquee-wrapper::before { left: 0; background: linear-gradient(to right, var(--bg-2), transparent); }
.marquee-wrapper::after { right: 0; background: linear-gradient(to left, var(--bg-2), transparent); }
.marquee-track {
  display: flex;
  animation: marquee 20s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.33%); }
}
.marquee-item {
  flex-shrink: 0;
  padding: 0 3rem;
  display: flex;
  align-items: center;
}
.partner-logo-text {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color var(--transition);
}
.marquee-item:hover .partner-logo-text { color: var(--accent); }

/* ==============================================
   TESTIMONIALS SECTION
   ============================================== */
.testimonials-section { padding: 6rem 0; background: var(--bg); }
.testimonials-slider { position: relative; min-height: 280px; margin: 0 -1rem; }
.testimonial-card {
  display: none;
  padding: 3rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 860px;
  margin: 0 auto;
  animation: fadeIn 0.5s ease;
}
.testimonial-card.is-active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.testimonial-stars { color: #f59e0b; font-size: 1.25rem; letter-spacing: 2px; margin-bottom: 1.5rem; }
.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin-bottom: 2rem;
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-weight: 700; }
.testimonial-author span { font-size: 0.875rem; color: var(--text-muted); }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.slider-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-2);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.slider-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(197,241,53,0.08); }
.slider-dots { display: flex; gap: 0.5rem; }
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-hover);
  transition: all var(--transition);
}
.slider-dot.is-active { background: var(--accent); width: 24px; border-radius: 4px; }

/* ==============================================
   TEAM SECTION
   ============================================== */
.team-section { padding: 6rem 0; background: var(--bg-2); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px)  { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.team-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.team-card-photo {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--bg-4);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.team-avatar {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
}
.team-card-social {
  position: absolute;
  inset-x: 0;
  bottom: 0;
  padding: 3rem 1rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.team-card:hover .team-card-social { transform: translateY(0); }
.team-card-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.team-card-social a:hover { background: var(--accent); color: #0a0a0a; }
.team-card-info { padding: 1.25rem; text-align: center; }
.team-card-info h3 { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.25rem; }
.team-card-info span { font-size: 0.8125rem; color: var(--accent); font-weight: 500; }

/* ==============================================
   PRICING SECTION
   ============================================== */
.pricing-section { padding: 6rem 0; background: var(--bg); }
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.pricing-toggle-label { font-size: 0.9375rem; font-weight: 500; }
.toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
  border-radius: 14px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  transition: background var(--transition);
}
.toggle-switch[aria-checked="true"] { background: var(--accent); border-color: var(--accent); }
.toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: transform var(--transition);
}
.toggle-switch[aria-checked="true"] .toggle-knob { transform: translateX(24px); background: #0a0a0a; }
.save-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  background: rgba(197,241,53,0.15);
  color: var(--accent);
  border-radius: var(--radius-full);
  border: 1px solid rgba(197,241,53,0.3);
  margin-left: 0.375rem;
  vertical-align: middle;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

.pricing-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.pricing-card:hover { border-color: var(--border-hover); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.pricing-card--featured {
  background: var(--bg-3);
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(197,241,53,0.1);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0a0a0a;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  letter-spacing: 0.05em;
}
.pricing-plan-name {
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.pricing-plan-desc { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 2rem; }
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.pricing-currency { font-size: 1.5rem; font-weight: 700; color: var(--text-muted); }
.pricing-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.pricing-period { font-size: 0.875rem; color: var(--text-muted); margin-left: 0.125rem; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.875rem; margin-bottom: 2rem; flex: 1; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.pricing-features li svg { color: var(--accent); flex-shrink: 0; }
.pricing-cta { width: 100%; justify-content: center; }

/* ==============================================
   BLOG SECTION
   ============================================== */
.blog-section { padding: 6rem 0; background: var(--bg-2); }
.posts-grid, .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .posts-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .posts-grid, .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.blog-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-4);
}
.blog-card-image img, .blog-card-image a { width: 100%; height: 100%; }
.blog-card-image img { object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.8125rem;
}
.blog-card-body { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.875rem; flex-wrap: wrap; }
.blog-category {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: rgba(197,241,53,0.1);
  border: 1px solid rgba(197,241,53,0.25);
  padding: 0.2rem 0.625rem;
  border-radius: var(--radius-full);
}
.blog-category a { color: var(--accent); }
.blog-date { font-size: 0.8125rem; color: var(--text-muted); }
.blog-title { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.75rem; line-height: 1.4; }
.blog-title a { color: var(--text); }
.blog-title a:hover { color: var(--accent); }
.blog-excerpt { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.5rem; flex: 1; }
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap var(--transition);
}
.blog-read-more:hover { color: var(--accent); gap: 0.625rem; }

/* ==============================================
   FAQ SECTION
   ============================================== */
.faq-section { padding: 6rem 0; background: var(--bg); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-header { position: sticky; top: 8rem; }
.faq-header p { color: var(--text-muted); margin: 1rem 0 1.5rem; font-size: 1.0625rem; line-height: 1.6; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-item.is-open .faq-question { color: var(--accent); }
.faq-icon {
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.is-open .faq-icon { transform: rotate(180deg); }
.faq-answer { overflow: hidden; }
.faq-answer p {
  padding-bottom: 1.5rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ==============================================
   CONTACT CTA SECTION
   ============================================== */
.contact-cta-section { padding: 8rem 0; background: var(--bg-2); }
.contact-cta-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.contact-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(197,241,53,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.contact-cta-inner .section-tag { position: relative; z-index: 1; }
.contact-cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0.75rem 0 1rem;
  position: relative;
  z-index: 1;
}
.contact-cta-inner p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}
.contact-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ==============================================
   INNER PAGE STYLES
   ============================================== */
.page-hero {
  background: var(--bg);
  padding: 10rem 0 4rem;
  border-bottom: 1px solid var(--border);
}
.page-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.page-content-wrap { padding: 5rem 0; }
.page-content-wrap .entry-content {
  max-width: 800px;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-muted);
}
.entry-content h1, .entry-content h2, .entry-content h3 { color: var(--text); margin: 2rem 0 1rem; }
.entry-content p { margin-bottom: 1.25rem; }
.entry-content a { color: var(--accent); text-decoration: underline; }
.entry-content ul, .entry-content ol { margin: 1rem 0 1rem 1.5rem; }
.entry-content li { margin-bottom: 0.5rem; }

.single-post { padding: 4rem 0 6rem; }
.single-container { max-width: 860px; }
.single-post-header { padding-top: 6rem; margin-bottom: 3rem; }
.single-post-title { font-size: clamp(1.75rem, 4vw, 3rem); margin: 1rem 0; }
.single-post-author { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9375rem; }
.single-post-author img { border-radius: 50%; }
.single-post-featured-image { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 3rem; }
.single-post-content { font-size: 1.0625rem; line-height: 1.8; color: var(--text-muted); }
.single-post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.post-share { display: flex; gap: 1rem; align-items: center; font-size: 0.9375rem; }
.post-share a { color: var(--accent); font-weight: 600; }

.error-404-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.error-404-inner { max-width: 500px; padding: 4rem 0; }
.error-404-code {
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}
.error-404-inner h1 { font-size: 2rem; margin-bottom: 1rem; }
.error-404-inner p { color: var(--text-muted); margin-bottom: 2rem; }

/* Pagination */
.pagination { margin-top: 4rem; }
.nav-links { display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.page-numbers {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition);
}
.page-numbers:hover, .page-numbers.current {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0a0a;
}

/* Footer */
.site-footer { background: #050505; padding: 5rem 0 2rem; border-top: 1px solid var(--border); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (max-width: 1100px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.25rem; }
.footer-tagline { color: var(--text-muted); font-size: 1rem; line-height: 1.6; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.social-link:hover { background: var(--accent); color: #0a0a0a; border-color: var(--accent); }

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.875rem; }
.footer-links a { color: var(--text-muted); font-size: 0.9375rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); }

.footer-newsletter-text { color: var(--text-muted); font-size: 0.9375rem; margin-bottom: 1.25rem; line-height: 1.6; }
.footer-contact-info { display: flex; flex-direction: column; gap: 0.875rem; margin-top: 1.5rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  transition: color var(--transition);
}
.footer-contact-item svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.footer-copyright { color: var(--text-muted); font-size: 0.875rem; }
.footer-bottom-menu { list-style: none; display: flex; gap: 1.5rem; }
.footer-bottom-menu a { color: var(--text-muted); font-size: 0.875rem; transition: color var(--transition); }
.footer-bottom-menu a:hover { color: var(--accent); }

/* Newsletter form shortcode placeholder */
.newsletter-form { display: flex; gap: 0.5rem; }
.newsletter-form input[type="email"] {
  flex: 1;
  height: 48px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 0 1.25rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input[type="email"]:focus { border-color: var(--accent); }
.newsletter-form input[type="email"]::placeholder { color: var(--text-muted); }
.newsletter-form button {
  height: 48px;
  padding: 0 1.5rem;
  background: var(--accent);
  color: #0a0a0a;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--accent-dark); }

/* ==============================================
   RESPONSIVE TWEAKS
   ============================================== */
@media (max-width: 768px) {
  .hero-section { padding: 7rem 0 3rem; }
  .hero-heading { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .section-header--flex { flex-direction: column; align-items: flex-start; }
  .collaborate-banner { flex-direction: column; text-align: center; padding: 2rem; }
  .contact-cta-actions { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-menu { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .service-card-inner { padding: 1.75rem; }
  .team-card-photo { aspect-ratio: 1/1; }
  .pricing-card { padding: 2rem; }
  .testimonial-card { padding: 2rem 1.5rem; }
}

/* ==============================================
   WORDPRESS DEFAULT ELEMENT STYLES
   ============================================== */
.wp-block-image img { border-radius: var(--radius); }
.aligncenter { display: block; margin: 2rem auto; text-align: center; }
.alignleft { float: left; margin: 0 2rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 2rem; }
.wp-caption-text { font-size: 0.8125rem; color: var(--text-muted); margin-top: 0.5rem; }

/* Screen reader only */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.screen-reader-text:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 99999;
  width: auto;
  height: auto;
  padding: 0.75rem 1.25rem;
  clip: auto;
  background: var(--accent);
  color: #0a0a0a;
  font-weight: 700;
  border-radius: var(--radius);
}
