/*
Theme Name: LocalCatalyst
Theme URI: https://localcatalyst.ai
Author: LocalCatalyst
Author URI: https://localcatalyst.ai
Description: AI-powered SEO agency theme. GeneratePress child theme for LocalCatalyst.ai.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Template: generatepress
Text Domain: localcatalyst
*/


/* ==========================================================================
   GP RESET — Neutralize GeneratePress wrapper markup
   GP styles are dequeued in setup.php. These rules reset the empty wrapper
   divs GP still outputs (.site-content, .inside-article, etc.)
   ========================================================================== */

.site-content,
.site-content .content-area,
.inside-article,
.entry-content {
  background: transparent;
  padding: 0;
  margin: 0;
  max-width: none;
  width: 100%;
  border: none;
  box-shadow: none;
}

/* Nuclear GP page-header + entry-header suppression for all custom templates */
body.page-template .page-header,
body.page-template .entry-header,
.page-header,
.entry-header {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.site-header,
.site-footer:not(.lc-footer),
#site-navigation,
.main-navigation:not(.lc-nav),
.site-info:not(.lc-footer *),
.footer-widgets,
.generate-back-to-top {
  display: none !important;
}

.grid-container {
  max-width: none;
  padding: 0;
}

/* Full-bleed breakout — force hero and full-width sections to escape any
   remaining GP container constraints */
.lc-hero,
.lc-section-full,
.lc-cta-block {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: relative;
}


/* ==========================================================================
   0. DESIGN TOKENS
   ========================================================================== */

:root {
  --lc-navy: #0b1120;
  --lc-dark: #0f172a;
  --lc-bodytext: #475569;
  --lc-muted: #94a3b8;
  --lc-emerald: #10b981;
  --lc-emerald-hover: #34d399;
  --lc-hero-text: #f1f5f9;
  --lc-light-bg: #f8fafc;
  --lc-card-border: #e2e8f0;
  --lc-white: #ffffff;
  --lc-font-body: 'DM Sans', sans-serif;
  --lc-font-mono: 'Space Mono', monospace;
  --lc-max-width: 1280px;
  --lc-content-width: 896px;
  --lc-nav-height: 80px;
  --lc-primary: #0f172a;
  --lc-text-muted: #475569;
  --lc-hero-muted: #94a3b8;
}


/* ==========================================================================
   1. RESET / BASE
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--lc-font-body);
  color: var(--lc-bodytext);
  font-size: 1.125rem;
  line-height: 1.75;
  background: var(--lc-white);
}

h1,
h2,
h3,
h4 {
  color: var(--lc-dark);
  font-weight: 700;
  line-height: 1.1;
}

a {
  color: var(--lc-emerald);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}


/* ==========================================================================
   2. TYPOGRAPHY
   ========================================================================== */

.lc-mono-label {
  font-family: var(--lc-font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lc-emerald);
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.lc-price {
  font-family: var(--lc-font-mono);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--lc-dark);
}

.lc-price-lg {
  font-family: var(--lc-font-mono);
  font-size: 3rem;
  font-weight: 700;
  color: var(--lc-dark);
}


/* ==========================================================================
   3. LAYOUT
   ========================================================================== */

.lc-container {
  max-width: var(--lc-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.lc-content-container {
  max-width: var(--lc-content-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.lc-section {
  padding: 5rem 0;
}

.lc-section-alt,
.lc-bg-light {
  background-color: var(--lc-light-bg);
}


/* ==========================================================================
   4. NAVIGATION
   ========================================================================== */

.lc-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(11, 17, 32, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lc-nav-inner {
  max-width: var(--lc-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--lc-nav-height);
}

.lc-nav-logo-icon,
.lc-nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.lc-nav-links ul,
.lc-nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lc-nav-links li,
.lc-nav-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Hide cart icon that WordPress menu may include (we have one in lc-nav-actions) */
.lc-nav-menu li.lc-nav-cart,
.lc-nav-menu li a[href*="/cart/"] svg {
  display: none;
}

.lc-nav-links a,
.lc-nav-menu a {
  color: var(--lc-muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
  text-decoration: none;
}

.lc-nav-links a:hover,
.lc-nav-menu a:hover {
  color: white;
  text-decoration: none;
}

.lc-nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lc-nav-cta {
  background: var(--lc-emerald);
  color: var(--lc-navy);
  padding: 0.625rem 1.5rem;
  border-radius: 0.25rem;
  font-weight: 700;
  font-size: 0.875rem;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  font-family: var(--lc-font-body);
}

.lc-nav-cta:hover {
  background: var(--lc-emerald-hover);
  text-decoration: none;
}

.lc-nav-cart {
  position: relative;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lc-nav-cart svg {
  width: 1.25rem;
  height: 1.25rem;
}

.lc-cart-count {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  background: var(--lc-emerald);
  color: white;
  font-size: 0.625rem;
  font-weight: 700;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lc-hamburger {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: white;
}

.lc-hamburger span {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: white;
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

.lc-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--lc-navy);
  flex-direction: column;
  padding-top: calc(var(--lc-nav-height) + 2rem);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.lc-mobile-menu.is-active {
  display: flex;
}

.lc-mobile-menu a {
  font-size: 1.25rem;
  color: white;
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
}

.lc-mobile-menu a:hover {
  color: var(--lc-emerald);
  text-decoration: none;
}


/* ==========================================================================
   5. HERO SECTIONS
   ========================================================================== */

.lc-hero {
  background: var(--lc-navy);
  padding-top: 8rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

.lc-hero-compact {
  background: var(--lc-navy);
  padding-top: 8rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.lc-hero h1 {
  color: var(--lc-hero-text);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.lc-hero p,
.lc-hero-compact p {
  color: var(--lc-muted);
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 42rem;
  margin-bottom: 2.5rem;
}

.lc-hero-breadcrumb {
  font-family: var(--lc-font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lc-emerald);
  margin-bottom: 0.5rem;
  display: block;
}

.lc-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2.5rem;
}

.lc-hero-stat-number {
  font-family: var(--lc-font-mono);
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.lc-hero-stat-label {
  font-family: var(--lc-font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lc-muted);
}

.lc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

.lc-dot-grid {
  background-image: radial-gradient(#1e293b 1px, transparent 1px);
  background-size: 24px 24px;
}

.lc-hero-glow {
  position: absolute;
  top: 25%;
  right: -25%;
  width: 600px;
  height: 600px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}


/* ==========================================================================
   6. BUTTONS
   ========================================================================== */

.lc-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--lc-emerald);
  color: var(--lc-navy);
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s;
  text-decoration: none;
  font-family: var(--lc-font-body);
}

.lc-btn-primary:hover {
  background: var(--lc-emerald-hover);
  text-decoration: none;
}

.lc-btn-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  font-family: var(--lc-font-body);
}

.lc-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.lc-btn-primary-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--lc-emerald);
  color: var(--lc-navy);
  padding: 0.625rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s;
  text-decoration: none;
  font-family: var(--lc-font-body);
}

.lc-btn-primary-sm:hover {
  background: var(--lc-emerald-hover);
  text-decoration: none;
}

.lc-btn-full {
  width: 100%;
  justify-content: center;
}


/* ==========================================================================
   7. CARDS
   ========================================================================== */

.lc-card {
  background: var(--lc-white);
  border: 1px solid var(--lc-card-border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: box-shadow 0.3s, transform 0.3s;
}

.lc-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
              0 8px 10px -6px rgba(0, 0, 0, 0.1);
  transform: translateY(-0.5rem);
}

.lc-service-card {
  background: var(--lc-white);
  border: 1px solid var(--lc-card-border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
}

.lc-service-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
              0 8px 10px -6px rgba(0, 0, 0, 0.1);
  transform: translateY(-0.5rem);
}

.lc-turnaround-badge {
  font-family: var(--lc-font-mono);
  font-size: 0.625rem;
  color: var(--lc-emerald);
  background: rgba(16, 185, 129, 0.05);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  display: inline-block;
  margin-bottom: 1rem;
  font-weight: 700;
}

.lc-service-card h3 {
  color: var(--lc-dark);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.lc-service-card p {
  color: var(--lc-bodytext);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.lc-service-card .lc-price {
  margin-top: auto;
  font-family: var(--lc-font-mono);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--lc-dark);
}

.lc-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.lc-case-study-card {
  background: var(--lc-white);
  border: 1px solid var(--lc-card-border);
  border-radius: 0.75rem;
  padding: 2rem;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}

.lc-case-study-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
              0 8px 10px -6px rgba(0, 0, 0, 0.1);
  transform: translateY(-0.5rem);
}

.lc-case-study-card h3 {
  color: var(--lc-dark);
  font-weight: 700;
  font-size: 1.125rem;
}

.lc-case-study-card .lc-metric {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--lc-emerald);
  margin-bottom: 0.5rem;
}

.lc-case-study-card .lc-timeline {
  font-family: var(--lc-font-mono);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lc-bodytext);
  position: absolute;
  bottom: 2rem;
  right: 2rem;
}


/* ==========================================================================
   8. SERVICE PAGE COMPONENTS
   ========================================================================== */

.lc-service-details {
  display: flex;
  gap: 4rem;
}

.lc-service-main {
  flex: 0 0 60%;
}

.lc-service-sidebar {
  flex: 1;
}

.lc-purchase-card {
  position: sticky;
  top: 100px;
  background: var(--lc-white);
  border: 1px solid var(--lc-card-border);
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.lc-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
}

.lc-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lc-feature-item svg {
  flex-shrink: 0;
  color: var(--lc-emerald);
  width: 1.25rem;
  height: 1.25rem;
}

.lc-feature-item span {
  font-weight: 600;
  color: var(--lc-dark);
}

.lc-deliverables-table {
  width: 100%;
  border: 1px solid var(--lc-card-border);
  border-radius: 0.5rem;
  overflow: hidden;
  font-size: 0.875rem;
  border-collapse: collapse;
}

.lc-deliverables-table td {
  padding: 1rem 1.5rem;
}

.lc-deliverables-table tr:nth-child(odd) td:first-child {
  background: var(--lc-light-bg);
  font-weight: 600;
  color: var(--lc-dark);
  width: 33%;
}

.lc-deliverables-table tr + tr {
  border-top: 1px solid var(--lc-card-border);
}


/* ==========================================================================
   9. CONTENT / PROSE
   ========================================================================== */

.lc-content p {
  margin-bottom: 1.5rem;
  color: var(--lc-bodytext);
  font-size: 1.125rem;
  line-height: 1.75;
}

.lc-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--lc-dark);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.lc-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lc-dark);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.lc-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--lc-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.lc-content ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.lc-content ul li {
  margin-bottom: 0.5rem;
}

.lc-content ul li::marker {
  color: var(--lc-emerald);
}

.lc-content ol {
  list-style-type: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.lc-content ol li {
  margin-bottom: 0.5rem;
}

.lc-content blockquote {
  border-left: 3px solid var(--lc-emerald);
  background: var(--lc-light-bg);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  border-radius: 0 0.5rem 0.5rem 0;
}

.lc-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.875rem;
}

.lc-content thead th {
  background: var(--lc-dark);
  color: white;
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
}

.lc-content tbody td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--lc-card-border);
}

.lc-content tbody tr:nth-child(even) {
  background: var(--lc-light-bg);
}

.lc-content a {
  color: var(--lc-emerald);
  text-decoration: none;
}

.lc-content a:hover {
  text-decoration: underline;
}

.lc-content strong {
  color: var(--lc-dark);
  font-weight: 600;
}

.lc-content code {
  background: #f1f5f9;
  font-family: var(--lc-font-mono);
  font-size: 0.875em;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
}

.lc-content pre {
  background: var(--lc-dark);
  color: var(--lc-hero-text);
  padding: 1.5rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin: 2rem 0;
}

.lc-content pre code {
  background: none;
  padding: 0;
  color: inherit;
}

.lc-content img {
  border-radius: 0.5rem;
  margin: 2rem 0;
}


/* ==========================================================================
   10. FAQ ACCORDION
   ========================================================================== */

details.lc-faq-item {
  border-bottom: 1px solid var(--lc-card-border);
  padding-bottom: 1rem;
}

details.lc-faq-item + details.lc-faq-item {
  margin-top: 1rem;
}

details.lc-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 1rem 0;
  list-style: none;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--lc-dark);
}

details.lc-faq-item summary::-webkit-details-marker {
  display: none;
}

details.lc-faq-item summary::after {
  content: '+';
  color: var(--lc-emerald);
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 1rem;
}

details.lc-faq-item[open] summary::after {
  transform: rotate(45deg);
}

.lc-faq-answer {
  padding: 0 0 1rem;
  color: var(--lc-bodytext);
  line-height: 1.75;
}


/* ==========================================================================
   11. CTA BLOCK
   ========================================================================== */

.lc-cta-block {
  background: var(--lc-navy);
  padding: 5rem 0;
  text-align: center;
}

.lc-cta-block h2 {
  color: white;
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.lc-cta-block p {
  color: var(--lc-muted);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

.lc-cta-block .lc-btn-primary {
  margin: 0 auto;
}

.lc-cta-link {
  display: block;
  margin-top: 1rem;
  color: var(--lc-muted);
  font-size: 0.875rem;
  text-decoration: underline;
}

.lc-cta-link:hover {
  color: white;
}


/* ==========================================================================
   12. FOOTER
   ========================================================================== */

.lc-footer {
  background: var(--lc-navy);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.lc-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.lc-footer-heading {
  font-family: var(--lc-font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lc-emerald);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.lc-footer-links {
  list-style: none;
  padding: 0;
}

.lc-footer-links li {
  margin-bottom: 1rem;
}

.lc-footer-links a {
  color: var(--lc-muted);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}

.lc-footer-links a:hover {
  color: white;
  text-decoration: none;
}

.lc-footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lc-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.lc-footer-logo-square {
  width: 1.5rem;
  height: 1.5rem;
  background: var(--lc-emerald);
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--lc-navy);
  font-size: 0.625rem;
}

.lc-footer-logo-text {
  color: white;
  font-weight: 700;
  font-size: 1rem;
}

.lc-footer-copyright {
  font-family: var(--lc-font-mono);
  font-size: 0.75rem;
  color: var(--lc-muted);
}


/* ==========================================================================
   13. INDUSTRY CHIPS
   ========================================================================== */

.lc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.lc-chip {
  padding: 0.75rem 1.5rem;
  background: var(--lc-white);
  border: 1px solid var(--lc-card-border);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lc-dark);
  transition: border-color 0.2s, color 0.2s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.lc-chip:hover {
  border-color: var(--lc-emerald);
  color: var(--lc-emerald);
}


/* ==========================================================================
   14. HOW-IT-WORKS STEPS
   ========================================================================== */

.lc-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.lc-step {
  display: flex;
  flex-direction: column;
}

.lc-step-number {
  font-family: var(--lc-font-mono);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--lc-card-border);
  margin-bottom: 1.5rem;
}

.lc-step-circle {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 2px solid var(--lc-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--lc-font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lc-emerald);
  margin-bottom: 1rem;
}

.lc-step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--lc-dark);
  margin-bottom: 0.75rem;
}

.lc-step p {
  color: var(--lc-bodytext);
  line-height: 1.6;
}


/* ==========================================================================
   15. BLOG COMPONENTS
   ========================================================================== */

.lc-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.lc-post-card {
  background: var(--lc-white);
  border: 1px solid var(--lc-card-border);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}

.lc-post-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
              0 8px 10px -6px rgba(0, 0, 0, 0.1);
  transform: translateY(-0.5rem);
}

.lc-post-card-thumb {
  border-radius: 0.75rem 0.75rem 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--lc-light-bg);
}

.lc-post-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lc-post-card-body {
  padding: 1.5rem;
}

.lc-category-label {
  font-family: var(--lc-font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lc-emerald);
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}

.lc-post-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--lc-dark);
  margin-bottom: 0.5rem;
}

.lc-post-card .lc-excerpt {
  font-size: 0.875rem;
  color: var(--lc-bodytext);
  margin-bottom: 1rem;
}

.lc-reading-time {
  font-family: var(--lc-font-mono);
  font-size: 0.75rem;
  color: var(--lc-muted);
}


/* ==========================================================================
   16. BROWSER MOCKUP
   ========================================================================== */

.lc-browser-frame {
  border: 1px solid var(--lc-card-border);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.lc-browser-bar {
  background: #e2e8f0;
  padding: 0.75rem 1rem;
  display: flex;
  gap: 0.375rem;
  align-items: center;
}

.lc-browser-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #94a3b8;
}

.lc-browser-body {
  background: var(--lc-light-bg);
}

.lc-browser-body img {
  width: 100%;
  display: block;
}


/* ==========================================================================
   17. WOOCOMMERCE OVERRIDES
   ========================================================================== */

.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button {
  background: var(--lc-emerald) !important;
  color: var(--lc-navy) !important;
  font-weight: 700;
  border-radius: 0.5rem;
  font-family: var(--lc-font-body);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button:hover {
  background: var(--lc-emerald-hover) !important;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  border: 1px solid var(--lc-card-border);
  border-radius: 0.375rem;
  padding: 0.75rem;
  font-family: var(--lc-font-body);
  font-size: 1rem;
  color: var(--lc-dark);
}

.woocommerce form .form-row select {
  border: 1px solid var(--lc-card-border);
  border-radius: 0.375rem;
  padding: 0.75rem;
  font-family: var(--lc-font-body);
  font-size: 1rem;
  color: var(--lc-dark);
}


/* ==========================================================================
   18. CATEGORY FILTER BAR (LEARN HUB)
   ========================================================================== */

.lc-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.lc-filter-chip {
  padding: 0.5rem 1rem;
  background: var(--lc-white);
  border: 1px solid var(--lc-card-border);
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--lc-dark);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.lc-filter-chip:hover {
  border-color: var(--lc-emerald);
  color: var(--lc-emerald);
}

.lc-filter-chip.is-active {
  background: var(--lc-emerald);
  color: white;
  border-color: var(--lc-emerald);
}


/* ==========================================================================
   19. PAGINATION
   ========================================================================== */

.lc-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.lc-pagination a,
.lc-pagination span {
  padding: 0.5rem 1rem;
  border: 1px solid var(--lc-card-border);
  border-radius: 0.375rem;
  font-size: 0.875rem;
  color: var(--lc-bodytext);
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lc-pagination .current {
  background: var(--lc-emerald);
  color: white;
  border-color: var(--lc-emerald);
}

.lc-pagination a:hover {
  border-color: var(--lc-emerald);
  color: var(--lc-emerald);
  text-decoration: none;
}


/* ==========================================================================
   20. RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* --- Desktop-up (min-width: 1024px) --- */
@media (min-width: 1024px) {
  .lc-nav-links {
    display: flex;
  }

  .lc-hamburger {
    display: none;
  }

  .lc-hero h1 {
    font-size: 4.5rem;
  }

  .lc-cta-block h2 {
    font-size: 3rem;
  }
}

/* --- Tablet (max-width: 1024px) --- */
@media (max-width: 1024px) {
  .lc-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lc-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lc-post-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lc-service-details {
    flex-direction: column;
  }

  .lc-service-main {
    flex: 1 1 100%;
  }

  .lc-service-sidebar {
    flex: 1 1 100%;
  }

  .lc-purchase-card {
    position: static;
  }

  .lc-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lc-hero h1 {
    font-size: 3rem;
  }
}

/* --- Mobile (max-width: 768px) --- */
@media (max-width: 768px) {
  .lc-nav-links {
    display: none;
  }

  .lc-hamburger {
    display: block;
  }

  .lc-services-grid {
    grid-template-columns: 1fr;
  }

  .lc-steps-grid {
    grid-template-columns: 1fr;
  }

  .lc-post-grid {
    grid-template-columns: 1fr;
  }

  .lc-hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .lc-hero h1 {
    font-size: 2.25rem;
  }

  .lc-cta-block h2 {
    font-size: 1.875rem;
  }

  .lc-hero-actions {
    flex-direction: column;
  }

  .lc-btn-primary,
  .lc-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .lc-features-grid {
    grid-template-columns: 1fr;
  }

  .lc-footer-grid {
    grid-template-columns: 1fr;
  }

  .lc-footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .lc-chips {
    justify-content: center;
  }

  .lc-purchase-card {
    position: static;
  }
}

/* --- Small mobile (max-width: 375px) --- */
@media (max-width: 375px) {
  .lc-hero h1 {
    font-size: 1.875rem;
  }

  .lc-container {
    padding: 0 1rem;
  }

  .lc-content-container {
    padding: 0 1rem;
  }
}

/* ── Nav Logo ────────────────────────────── */
.lc-nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.3px;
    line-height: 1;
}

.logo-text .local {
    color: #F1F5F9;
}

.logo-text .catalyst {
    color: #FFFFFF;
}

.logo-text .dot-ai {
    font-family: 'Space Mono', monospace;
    font-size: 16px;
    font-weight: 700;
    color: #10B981;
}

/* ── Footer Brand Logo ───────────────────── */
.lc-footer-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.lc-nav-logo:hover,
.lc-footer-brand:hover {
    text-decoration: none;
}

.lc-nav-logo:hover .logo-text,
.lc-footer-brand:hover .logo-text {
    text-decoration: none;
}


/* ==========================================================================
   SINGLE POST TEMPLATE — Mockup Refinements
   Added: 2026-02-24
   ========================================================================== */

/* Hero compact — title sizing & weight */
.lc-hero-compact h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--lc-hero-text);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

/* Breadcrumb — muted links, current in light */
.lc-hero-breadcrumb {
  color: var(--lc-muted);
}
.lc-hero-breadcrumb a {
  color: var(--lc-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.lc-hero-breadcrumb a:hover {
  color: var(--lc-emerald);
  text-decoration: none;
}

/* Article content — links with underline */
.lc-content a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.lc-content a:hover {
  color: var(--lc-emerald-hover);
}

/* Article content — h2 bump */
.single-post .lc-content h2,
.lc-content h2.wp-block-heading {
  font-size: 1.875rem;
  margin-top: 3rem;
}

/* Article content — stronger bold */
.lc-content strong {
  font-weight: 700;
}

/* Article content — unordered list with check icons */
.lc-content ul {
  list-style: none;
  padding-left: 0;
}
.lc-content ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
}
.lc-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 1.25rem;
  height: 1.25rem;
  background: var(--lc-emerald);
  border-radius: 50%;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
  mask-size: contain;
  -webkit-mask-size: contain;
}
.lc-content ul li::marker {
  content: none;
}

/* Blockquote — emerald tint bg */
.lc-content blockquote {
  background: rgba(16, 185, 129, 0.06);
  border-left: 4px solid var(--lc-emerald);
  border-radius: 0 0.75rem 0.75rem 0;
  padding: 1.5rem 2rem;
}

/* Post card thumbnail — hover zoom */
.lc-post-card-thumb img {
  transition: transform 0.5s ease;
}
.lc-post-card:hover .lc-post-card-thumb img {
  transform: scale(1.05);
}

/* Post card title — hover color */
.lc-post-card:hover h3 {
  color: var(--lc-emerald);
  transition: color 0.2s;
}

/* Related section — label + heading */
.single-post .lc-bg-light .lc-mono-label {
  margin-bottom: 0.25rem;
}

/* Content divider before related posts */
.single-post .lc-content::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--lc-card-border);
  margin: 4rem auto 0;
}


body { overflow-x: hidden; }



/* ==========================================================================
   21. SERVICES HUB PAGE
   ========================================================================== */

/* Override: 3-column grid for services hub */
.lc-services-hub .lc-services-grid {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
  .lc-services-hub .lc-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .lc-services-hub .lc-services-grid {
    grid-template-columns: 1fr;
  }
}

/* Service card footer — price row at card bottom */
.lc-service-card-footer {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  border-top: 1px solid var(--lc-card-border);
  padding-top: 1rem;
  margin-top: auto;
}

/* "From" label before price */
.lc-price-from {
  font-family: var(--lc-font-mono);
  font-size: 0.6875rem;
  font-weight: 400;
  color: var(--lc-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Price unit — "/page", "/mo" */
.lc-price-unit {
  font-family: var(--lc-font-mono);
  font-size: 0.8125rem;
  color: var(--lc-muted);
}

/* Hero — centered variant */
.lc-hero--center {
  text-align: center;
}

.lc-hero--center p {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.lc-hero--center .lc-hero-stats {
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
}

/* Bundle row — 2-column grid below service cards */
.lc-bundle-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (max-width: 640px) {
  .lc-bundle-row {
    grid-template-columns: 1fr;
  }
}

/* Bundle card — horizontal layout */
.lc-bundle-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  background: var(--lc-white);
  border: 1px solid var(--lc-card-border);
  border-radius: 0.75rem;
  padding: 1.75rem;
  transition: box-shadow 0.3s, transform 0.3s;
  text-decoration: none;
  color: inherit;
}

.lc-bundle-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
              0 8px 10px -6px rgba(0, 0, 0, 0.1);
  transform: translateY(-0.5rem);
  text-decoration: none;
}

.lc-bundle-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--lc-dark);
  margin: 0 0 0.25rem;
}

.lc-bundle-card p {
  font-size: 0.875rem;
  color: var(--lc-bodytext);
  margin: 0;
  line-height: 1.55;
}

/* Dark card variant (Managed SEO) */
.lc-card-dark {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  background: var(--lc-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1.75rem;
  text-decoration: none;
  transition: box-shadow 0.3s, transform 0.3s;
}

.lc-card-dark:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
  transform: translateY(-0.5rem);
  text-decoration: none;
}

.lc-card-dark h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--lc-hero-text);
  margin: 0 0 0.25rem;
}

.lc-card-dark p {
  font-size: 0.875rem;
  color: var(--lc-muted);
  margin: 0;
  line-height: 1.55;
}

.lc-card-dark .lc-price {
  color: var(--lc-hero-text);
}

.lc-card-dark .lc-price-from,
.lc-card-dark .lc-price-unit {
  color: var(--lc-muted);
}

.lc-card-dark .lc-turnaround-badge {
  background: rgba(255, 255, 255, 0.08);
  color: var(--lc-emerald);
}

/* Bundle cards — stack on small screens */
@media (max-width: 640px) {
  .lc-bundle-card,
  .lc-card-dark {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ==========================================================================
   22. PRICING TABLE
   ========================================================================== */

.lc-pricing-table-wrap {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--lc-card-border);
}

.lc-pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.lc-pricing-table thead th {
  background: var(--lc-dark);
  color: var(--lc-hero-text);
  font-family: var(--lc-font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.875rem 1.25rem;
  text-align: right;
  white-space: nowrap;
}

.lc-pricing-table thead th:first-child {
  text-align: left;
}

.lc-pricing-table td {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--lc-card-border);
  text-align: right;
  font-family: var(--lc-font-mono);
  font-size: 0.8125rem;
  color: var(--lc-muted);
}

.lc-pricing-table td:first-child {
  text-align: left;
  font-family: var(--lc-font-body);
  font-weight: 600;
  color: var(--lc-dark);
}

.lc-pricing-table tbody tr:nth-child(even) {
  background: var(--lc-light-bg);
}

.lc-pricing-table .lc-price-cell {
  color: var(--lc-emerald);
  font-weight: 700;
}

/* Pricing table — horizontal scroll on mobile */
@media (max-width: 640px) {
  .lc-pricing-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .lc-pricing-table {
    min-width: 560px;
  }
}


/* ==========================================================================
   23. PATH CARDS
   ========================================================================== */

.lc-path-card {
  background: var(--lc-white);
  border: 1px solid var(--lc-card-border);
  border-radius: 0.75rem;
  padding: 1.75rem;
  margin-bottom: 1rem;
}

.lc-path-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.lc-path-number {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 0.625rem;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  font-family: var(--lc-font-mono);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--lc-emerald);
}

.lc-path-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--lc-dark);
  margin: 0;
}

.lc-path-flow {
  display: inline-block;
  background: var(--lc-light-bg);
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--lc-dark);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.lc-path-estimate {
  font-family: var(--lc-font-mono);
  font-size: 0.8125rem;
  color: var(--lc-muted);
}

.lc-path-estimate strong {
  color: var(--lc-emerald);
  font-weight: 700;
}


/* ==========================================================================
   24. DARK SECTION + FLEX UTILITY
   ========================================================================== */

.lc-section-dark {
  background: var(--lc-dark);
  padding: 5rem 0;
}

.lc-section-dark h2 {
  color: var(--lc-hero-text);
}

.lc-section-dark p {
  color: var(--lc-muted);
}

.lc-flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

@media (max-width: 768px) {
  .lc-flex-between {
    flex-direction: column;
    text-align: center;
  }
}


/* ==========================================================================
   25. ARTICLE TEMPLATE (template-article.php)
   ========================================================================== */

@keyframes lc-fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.lc-hero--article {
  padding: 130px 48px 70px;
}

.lc-hero--article .lc-hero-glow {
  top: -100px;
  right: -20px;
}

.lc-hero-grid {
  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: 60px 60px;
  pointer-events: none;
}

.lc-hero-inner {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  animation: lc-fadeUp 0.7s ease-out;
}

.lc-breadcrumb {
  font-family: var(--lc-font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}

.lc-breadcrumb a {
  color: var(--lc-muted);
  text-decoration: none;
}

.lc-breadcrumb a:hover {
  color: var(--lc-emerald);
}

.lc-breadcrumb .sep {
  color: rgba(255,255,255,0.2);
  margin: 0 0.5rem;
}

.lc-breadcrumb .current {
  color: var(--lc-hero-text);
}

.lc-badge-cat {
  display: inline-block;
  font-family: var(--lc-font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(16, 185, 129, 0.15);
  color: var(--lc-emerald);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.lc-hero-meta {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.lc-badge-meta {
  font-family: var(--lc-font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  color: var(--lc-muted);
  border: 1px solid rgba(255,255,255,0.08);
}

.lc-hero--article h1 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  color: var(--lc-hero-text);
}

.lc-hero-excerpt {
  font-size: 19px;
  color: var(--lc-muted);
  line-height: 1.65;
  max-width: 620px;
}

.lc-article-layout {
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 48px 100px;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 64px;
}

.lc-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.lc-toc-card {
  background: var(--lc-white);
  border: 1px solid var(--lc-card-border);
  border-radius: 0.5rem;
  padding: 24px;
  margin-bottom: 24px;
}

.lc-toc-heading {
  font-family: var(--lc-font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--lc-emerald);
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.lc-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lc-sidebar-cta {
  background: linear-gradient(135deg, rgba(16,185,129,0.08), rgba(59,130,246,0.08));
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 0.5rem;
  padding: 24px;
}

.lc-sidebar-cta-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--lc-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}

.lc-sidebar-cta-text {
  font-size: 13px;
  color: var(--lc-bodytext);
  margin: 0 0 16px 0;
  line-height: 1.6;
}

.lc-sidebar-cta-btn {
  display: block;
  text-align: center;
  background: var(--lc-emerald);
  color: var(--lc-white);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 4px;
  transition: background 0.2s;
}

.lc-sidebar-cta-btn:hover {
  background: var(--lc-emerald-hover);
}

@media (max-width: 900px) {
  .lc-article-layout {
    grid-template-columns: 1fr;
    padding: 24px 20px 60px;
    gap: 40px;
  }

  .lc-sidebar {
    position: static;
  }

  .lc-hero--article {
    padding: 100px 20px 50px;
  }
}


/* ==========================================================================
   26. CASE STUDY METRICS
   ========================================================================== */

.lc-cs-headline-metric {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--lc-emerald);
  margin-bottom: 1rem;
}

.lc-cs-results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.lc-cs-metric-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--lc-emerald);
  margin-bottom: 0.5rem;
}

.lc-cs-metric-label {
  font-family: var(--lc-font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lc-muted);
}

@media (max-width: 640px) {
  .lc-cs-results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ==========================================================================
   27. NO-IMAGE PLACEHOLDER (shared across post grids)
   ========================================================================== */

.lc-post-card-noimg {
  width: 100%;
  height: 100%;
  background: var(--lc-light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lc-muted);
}

/* Ensure post cards never show underlines */
a.lc-post-card {
  text-decoration: none;
}

/* Hero compact h1 max-width */
.lc-hero-compact h1 {
  max-width: 48rem;
}


/* ==========================================================================
   28. SHARED UTILITIES
   ========================================================================== */

.lc-text-center {
  text-align: center;
}

.lc-section-heading {
  margin-bottom: 2rem;
}

.lc-section-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.lc-section-intro p {
  max-width: 42rem;
  margin: 1rem auto 0;
  color: var(--lc-bodytext);
}

.lc-hero--centered {
  text-align: center;
}

.lc-hero--centered h1,
.lc-hero--centered p {
  margin-left: auto;
  margin-right: auto;
}

.lc-hero--centered .lc-hero-actions {
  justify-content: center;
}

.lc-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.lc-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .lc-grid-3 {
    grid-template-columns: 1fr;
  }

  .lc-grid-2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}


/* ==========================================================================
   29. INDUSTRY TEMPLATE COMPONENTS
   ========================================================================== */

.lc-challenge-card {
  text-align: center;
}

.lc-challenge-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--lc-light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}

.lc-card--dark {
  background: var(--lc-navy);
  border-color: transparent;
  padding: 2.5rem;
}

.lc-ind-metric-row + .lc-ind-metric-row {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.lc-ind-metric-label {
  font-family: var(--lc-font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lc-muted);
  margin-bottom: 0.25rem;
}

.lc-ind-metric-value {
  font-family: var(--lc-font-mono);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--lc-emerald);
}


/* ==========================================================================
   30. SERVICE TEMPLATE ADDITIONS
   ========================================================================== */

.lc-check-icon {
  color: var(--lc-emerald);
}

.lc-price-unit {
  color: var(--lc-muted);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.lc-turnaround-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: var(--lc-bodytext);
  font-size: 0.875rem;
}

.lc-browser-placeholder {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lc-muted);
  font-size: 1rem;
}


/* ==========================================================================
   31. CASE STUDY CARD ADJUSTMENTS
   ========================================================================== */

a.lc-case-study-card {
  display: block;
  margin-bottom: 2rem;
  text-decoration: none;
}

.lc-case-study-card.lc-card {
  margin-bottom: 2rem;
}

/* Homepage content width constraint */
.lc-content-narrow {
  max-width: 48rem;
}

.lc-content-medium {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}


/* Hero h2 text visibility on dark backgrounds */
.lc-hero h2 {
  color: var(--lc-hero-text);
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.lc-hero-compact h2 {
  color: var(--lc-hero-text);
}

/* Case study card excerpt text */
.lc-case-study-card p {
  color: var(--lc-bodytext);
  margin-bottom: 1rem;
}


/* ==========================================================================
   32. MISSING FOUNDATION CLASSES
   ========================================================================== */

/* Section label — small uppercase text above headings */
.lc-section-label {
  font-family: var(--lc-font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--lc-emerald);
  margin-bottom: 1rem;
}

/* Badge stat — small inline badge */
.lc-badge-stat {
  display: inline-block;
  font-family: var(--lc-font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--lc-muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.lc-badge-stat-emerald {
  background: rgba(16, 185, 129, 0.12);
  color: var(--lc-emerald);
  border-color: rgba(16, 185, 129, 0.25);
}

/* Section — primary colored background (emerald) */
.lc-section-primary {
  background: var(--lc-emerald);
}

/* Gradient transition — separator between dark and light sections */
.lc-gradient-transition {
  height: 6rem;
  background: linear-gradient(to bottom, var(--lc-navy), var(--lc-white));
}
.lc-gradient-transition-short {
  height: 3rem;
  background: linear-gradient(to bottom, var(--lc-navy), var(--lc-white));
}

/* Base button reset */
.lc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--lc-font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 0.5rem;
  padding: 0.875rem 2rem;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1.4;
}

/* Ghost / outline button */
.lc-btn-ghost {
  background: transparent;
  color: var(--lc-hero-text);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}
.lc-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--lc-hero-text);
}

/* page.php content wrapper */
.lc-page-body {
  padding: 0;
}


/* ==========================================================================
   33. SCROLL REVEAL ANIMATIONS
   ========================================================================== */

.lc-fade-in {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.lc-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.lc-delay-1 { transition-delay: 0.1s; }
.lc-delay-2 { transition-delay: 0.2s; }
.lc-delay-3 { transition-delay: 0.3s; }

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .lc-fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ==========================================================================
   34. CONTACT PAGE COMPONENT CLASSES
   ========================================================================== */

/* Contact hero */
.lc-contact-hero-inner {
  position: relative;
  max-width: 40.625rem;
  margin: 0 auto;
}

/* Gradient text span */
.lc-gradient-text {
  background: linear-gradient(135deg, var(--lc-emerald), #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero actions row */
.lc-hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Section with standard padding */
.lc-section-padded {
  padding: 5rem 3rem;
}
@media (max-width: 768px) {
  .lc-section-padded {
    padding: 3rem 1.25rem;
  }
}

/* Section heading (dark text for light backgrounds) */
.lc-section-heading-dark {
  font-size: 2.125rem;
  font-weight: 700;
  letter-spacing: -0.0625rem;
  color: var(--lc-primary);
}

/* Card with flex column layout */
.lc-card-flex {
  display: flex;
  flex-direction: column;
}

/* Card header row — icon + badge */
.lc-card-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.lc-card-icon {
  font-size: 1.75rem;
}

/* Card body list — contact page style */
.lc-card-list {
  font-size: 0.875rem;
  color: var(--lc-text-muted);
  line-height: 1.8;
  padding-left: 1.125rem;
  margin: 0;
}
.lc-card-list-plain {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
  color: var(--lc-text-muted);
  line-height: 2.2;
}

/* Card with colored left border */
.lc-card-border-emerald {
  border-left: 3px solid var(--lc-emerald);
}
.lc-card-border-red {
  border-left: 3px solid rgba(239, 68, 68, 0.5);
}

/* Step number circle */
.lc-step-number {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: var(--lc-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--lc-font-mono);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--lc-navy);
  flex-shrink: 0;
}

/* Step card — horizontal layout */
.lc-step-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

/* Contact info card */
.lc-contact-info-card {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  gap: 0.5rem;
}

/* Narrow container widths */
.lc-container-narrow {
  max-width: 46.875rem;
}
.lc-container-medium {
  max-width: 50rem;
}

/* Centered text utility */
.lc-text-center {
  text-align: center;
}

/* Margin-bottom utilities for section headings */
.lc-mb-section {
  margin-bottom: 3rem;
}


/* ==========================================================================
   35. CARD TYPOGRAPHY CLASSES
   ========================================================================== */

/* Card title — used across contact, service, industry pages */
.lc-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--lc-primary);
}
.lc-section-dark .lc-card-title,
.lc-card-dark .lc-card-title {
  color: var(--lc-hero-text);
}

/* Card description text */
.lc-card-description {
  font-size: 0.875rem;
  color: var(--lc-text-muted);
  line-height: 1.7;
  margin: 0;
}
.lc-section-dark .lc-card-description,
.lc-card-dark .lc-card-description {
  color: var(--lc-hero-muted);
}
.lc-section-primary .lc-card-description {
  color: rgba(255, 255, 255, 0.85);
}

/* Card meta — small muted text */
.lc-card-meta {
  font-size: 0.75rem;
  color: var(--lc-hero-muted);
  margin-top: 0.5rem;
  margin-bottom: 0;
}

/* Emerald link */
.lc-link-emerald {
  font-size: 0.9375rem;
  color: var(--lc-emerald);
  text-decoration: none;
  font-weight: 600;
}
.lc-link-emerald:hover {
  color: var(--lc-emerald);
  text-decoration: underline;
}

/* Steps list spacing */
.lc-steps-list {
  display: grid;
  gap: 2rem;
}

/* Section heading on primary bg */
.lc-section-primary .lc-section-heading {
  color: var(--lc-hero-text);
}


/* ==========================================================================
   36. WC HERO MINI (compact dark banner for cart/checkout/my-account)
   ========================================================================== */

.lc-hero.lc-hero-mini {
  padding: 8.125rem 3rem 3rem;
}
@media (max-width: 768px) {
  .lc-hero.lc-hero-mini {
    padding: 6.25rem 1.5rem 2.25rem;
  }
  .lc-hero.lc-hero-mini h1 {
    font-size: 1.75rem !important;
  }
}

/* =========================================================
   37. Glossary Page
   ========================================================= */
.lc-glossary-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}
.lc-glossary-nav br {
    display: none;
}
.lc-glossary-letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: var(--lc-navy);
    color: var(--lc-hero-text);
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.lc-glossary-letter:hover {
    background: var(--lc-emerald);
    color: #fff;
}
.lc-glossary-entries {
    display: grid;
    gap: 1.5rem;
}
.lc-glossary-entry {
    padding: 1.5rem;
    border-radius: var(--lc-radius);
    background: var(--lc-surface, #f8fafc);
    border: 1px solid rgba(0,0,0,0.06);
}
.lc-glossary-entry .lc-card-title {
    margin-bottom: 0.5rem;
}
.lc-glossary-entry .lc-badge-stat {
    margin-bottom: 0.75rem;
}
.lc-glossary-entry .lc-card-description {
    margin: 0;
    line-height: 1.7;
}


/* ==========================================================================
   25. INDUSTRY PAGE ENHANCEMENTS
   ========================================================================== */

/* 3-column services grid on industry pages */
.lc-industry-page .lc-services-grid {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
  .lc-industry-page .lc-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .lc-industry-page .lc-services-grid {
    grid-template-columns: 1fr;
  }
}

/* 2x2 Stat card grid for case study metrics */
.lc-ind-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-content: start;
}

.lc-ind-stat-card {
  background: var(--lc-white);
  border: 1px solid var(--lc-card-border);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.lc-ind-stat-label {
  font-family: var(--lc-font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lc-muted);
}

.lc-ind-stat-value {
  font-family: var(--lc-font-mono);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--lc-dark);
}

@media (max-width: 480px) {
  .lc-ind-metrics-grid {
    grid-template-columns: 1fr;
  }
}

/* Dark CTA block variant */
.lc-cta-block--dark {
  background: var(--lc-navy);
}

.lc-cta-block--dark .lc-mono-label {
  color: var(--lc-emerald);
}

.lc-cta-block--dark .lc-cta-heading {
  color: var(--lc-hero-text);
}

.lc-cta-block--dark .lc-cta-subtitle {
  color: var(--lc-muted);
}

.lc-cta-block--dark .lc-cta-alt-link {
  color: var(--lc-muted);
}

.lc-cta-block--dark .lc-cta-alt-link a {
  color: var(--lc-hero-text);
}

.lc-cta-block--dark .lc-cta-alt-link a:hover {
  color: var(--lc-emerald);
}


/* Industries hub grid cards */
.lc-industries-hub-grid {
  gap: 1.25rem;
}

.lc-industry-hub-card {
  text-decoration: none;
}

.lc-industry-hub-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
  color: var(--lc-dark);
}

.lc-industry-hub-card p {
  font-size: 0.875rem;
  color: var(--lc-muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.lc-industry-hub-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.lc-industry-hub-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lc-emerald);
}

/* ── Service Card Product Images ── */
.lc-service-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  margin: -1.5rem -1.5rem 1rem -1.5rem;
  width: calc(100% + 3rem);
  display: block;
}

@media (max-width: 768px) {
  .lc-service-card-img {
    height: 140px;
  }
}

/* WPForms inside dark sections */
.lc-section-dark .wpforms-container .wpforms-field-label,
.lc-section-dark .wpforms-container .wpforms-field-sublabel,
.lc-section-dark .wpforms-container legend.wpforms-field-label {
  color: var(--lc-hero-text);
}
.lc-section-dark .wpforms-container input[type="text"],
.lc-section-dark .wpforms-container input[type="email"],
.lc-section-dark .wpforms-container textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--lc-hero-text);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-family: var(--lc-font-body);
}
.lc-section-dark .wpforms-container input::placeholder,
.lc-section-dark .wpforms-container textarea::placeholder {
  color: var(--lc-muted);
}
.lc-section-dark .wpforms-container input:focus,
.lc-section-dark .wpforms-container textarea:focus {
  border-color: var(--lc-emerald);
  outline: none;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}
.lc-section-dark .wpforms-container .wpforms-submit {
  background: var(--lc-emerald);
  color: var(--lc-navy);
  font-weight: 700;
  font-family: var(--lc-font-body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.lc-section-dark .wpforms-container .wpforms-submit:hover {
  background: var(--lc-emerald-hover);
}
.lc-section-dark .wpforms-container .wpforms-required-label {
  color: #f87171;
}

