/*
Theme Name: LiGEN Lab
Theme URI: https://ligenlab.com
Author: LiGEN Lab
Author URI: https://ligenlab.com
Description: Modern WordPress theme for LiGEN Lab. Software, apps, and web development company site with dark mode, WooCommerce reviews, and mobile bottom navigation.
Version: 1.9.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ligenlab
Tags: custom-logo, custom-menu, featured-images, translation-ready, dark-mode, e-commerce, one-page, business, portfolio
*/

/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
  --color-accent: #ff6b00;
  --color-accent-light: #ffb300;
  --gradient-accent: linear-gradient(135deg, #ff4500 0%, #ff8c00 50%, #ffb300 100%);
  --gradient-accent-hover: linear-gradient(135deg, #ff5500 0%, #ff9a00 50%, #ffc233 100%);
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.16);
  --container: 1200px;
  --header-height: 136px;
}

[data-theme="dark"] {
  --color-bg: #000000;
  --color-bg-secondary: #0a0a0a;
  --color-bg-card: #111111;
  --color-bg-card-hover: #1a1a1a;
  --color-text: #ffffff;
  --color-text-muted: #a0a0a0;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-hover: rgba(255, 107, 0, 0.3);
  --shadow-glow: 0 0 40px rgba(255, 107, 0, 0.15);
}

[data-theme="light"] {
  --color-bg: #ffffff;
  --color-bg-secondary: #f8f9fa;
  --color-bg-card: #ffffff;
  --color-bg-card-hover: #f0f1f3;
  --color-text: #111111;
  --color-text-muted: #666666;
  --color-border: rgba(0, 0, 0, 0.08);
  --color-border-hover: rgba(255, 107, 0, 0.3);
  --shadow-glow: 0 0 40px rgba(255, 107, 0, 0.1);
}

/* ─── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  font-size: 93.75%;
}

body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Typography ────────────────────────────────────────────── */
.gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.875rem, 3.5vw, 2.625rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 600px;
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  font-family: inherit;
}

.btn-primary {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.35);
}

.btn-primary:hover {
  background: var(--gradient-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 0, 0.45);
}

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

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn-header {
  padding: 10px 22px;
  font-size: 0.875rem;
  border-radius: 100px;
}

/* ─── Header ────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 28px 0 16px;
  pointer-events: none;
  transition: padding var(--transition);
}

.site-header.scrolled {
  padding: 14px 0 12px;
}

.header-container {
  pointer-events: auto;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 80px;
  padding: 0 16px 0 24px;
  border-radius: 100px;
  border: 1px solid var(--color-border);
  background: rgba(var(--header-bg-rgb, 0, 0, 0), 0.55);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: all var(--transition);
}

[data-theme="dark"] .site-header { --header-bg-rgb: 10, 10, 10; }
[data-theme="light"] .site-header { --header-bg-rgb: 255, 255, 255; }

.site-header.scrolled .header-shell {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.header-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--gradient-accent);
  z-index: 1001;
  border-radius: 0 2px 2px 0;
  transition: width 0.1s linear;
  pointer-events: none;
}

.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.site-logo img {
  height: 52px;
  width: auto;
  transition: transform var(--transition);
}

.site-logo:hover img {
  transform: scale(1.03);
}

.logo-dark { display: none; }
.logo-light { display: block; }
[data-theme="light"] .logo-dark { display: block; }
[data-theme="light"] .logo-light { display: none; }

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-track,
.main-nav .menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 4px;
  border-radius: 100px;
  background: rgba(var(--nav-track-rgb, 255, 255, 255), 0.04);
  border: 1px solid var(--color-border);
}

[data-theme="dark"] .nav-track,
[data-theme="dark"] .main-nav .menu { --nav-track-rgb: 255, 255, 255; }
[data-theme="light"] .nav-track,
[data-theme="light"] .main-nav .menu { --nav-track-rgb: 0, 0, 0; }

.nav-track li,
.main-nav .menu li {
  margin: 0;
  padding: 0;
}

.nav-track a,
.main-nav .menu a {
  display: block;
  padding: 10px 18px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  border-radius: 100px;
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-track a:hover,
.main-nav .menu a:hover {
  color: var(--color-text);
  background: rgba(var(--nav-track-rgb, 255, 255, 255), 0.06);
}

.nav-track a.active,
.main-nav .menu a.active {
  color: #fff;
  background: var(--gradient-accent);
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.3);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: rgba(var(--nav-track-rgb, 255, 255, 255), 0.04);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), color var(--transition), box-shadow var(--transition), background var(--transition);
  color: var(--color-text);
  -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) {
  .theme-toggle:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    box-shadow: var(--shadow-glow);
  }
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon { width: 18px; height: 18px; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
[data-theme="light"] .theme-toggle .icon-sun { display: none; }
[data-theme="light"] .theme-toggle .icon-moon { display: block; }

.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: rgba(var(--nav-track-rgb, 255, 255, 255), 0.04);
  cursor: pointer;
  color: var(--color-text);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: all var(--transition);
}

.mobile-menu-btn .bar {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.mobile-menu-btn.is-active .bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.mobile-menu-btn.is-active .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-menu-btn.is-active .bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) - 32px);
  padding-bottom: 32px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-video,
.hero-video-overlay,
.hero-embed {
  display: none;
}

.hero-embed {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-embed iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

.hero-embed--portrait iframe {
  width: 177.78vh;
  height: 100vh;
  min-width: 100vw;
  min-height: 56.25vw;
}

.hero-embed--landscape iframe {
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100vh;
}

.hero-video--failed {
  display: none !important;
}

.hero-bg--fallback .hero-video,
.hero-bg--fallback .hero-video-overlay,
.hero-bg--fallback .hero-embed {
  display: none !important;
}

.hero-video-overlay--dark,
.hero-video-overlay--light,
.hero-video-overlay--light-web,
.hero-video-overlay--dark-web {
  display: none;
}

.hero-aurora {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(ellipse 50% 40% at 20% 40%, rgba(255, 107, 0, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 45% 35% at 75% 25%, rgba(255, 179, 0, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 60% 75%, rgba(255, 69, 0, 0.1) 0%, transparent 50%);
  animation: heroAurora 18s ease-in-out infinite alternate;
  filter: blur(40px);
}

.hero-grid {
  position: absolute;
  inset: -50%;
  background-image:
    linear-gradient(var(--color-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, black 10%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, black 10%, transparent 75%);
  animation: heroGridDrift 40s linear infinite;
  opacity: 0.7;
}

.hero-glow-layer {
  position: absolute;
  inset: 0;
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.hero-glow--1 {
  top: 5%;
  right: 8%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.22) 0%, transparent 68%);
  animation: heroOrbFloat1 14s ease-in-out infinite;
}

.hero-glow--2 {
  bottom: 0;
  left: -5%;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(255, 179, 0, 0.16) 0%, transparent 68%);
  animation: heroOrbFloat2 17s ease-in-out infinite;
}

.hero-glow--3 {
  top: 40%;
  left: 45%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 69, 0, 0.12) 0%, transparent 70%);
  animation: heroOrbFloat3 12s ease-in-out infinite;
}

.hero-ring {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 107, 0, 0.12);
  border-radius: 50%;
  transform: translateY(-50%);
  animation: heroRingPulse 8s ease-in-out infinite;
}

.hero-ring::before,
.hero-ring::after {
  content: '';
  position: absolute;
  inset: 24px;
  border: 1px dashed rgba(255, 107, 0, 0.08);
  border-radius: 50%;
  animation: heroRingSpin 30s linear infinite;
}

.hero-ring::after {
  inset: 56px;
  animation-direction: reverse;
  animation-duration: 22s;
}

.hero-beams {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-beams span {
  position: absolute;
  top: -20%;
  width: 1px;
  height: 140%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255, 107, 0, 0) 30%,
    rgba(255, 140, 0, 0.15) 50%,
    rgba(255, 107, 0, 0) 70%,
    transparent 100%
  );
  transform: rotate(25deg);
  animation: heroBeamSweep 7s ease-in-out infinite;
}

.hero-beams span:nth-child(1) { left: 18%; animation-delay: 0s; }
.hero-beams span:nth-child(2) { left: 52%; animation-delay: -2.5s; opacity: 0.6; }
.hero-beams span:nth-child(3) { left: 78%; animation-delay: -4.5s; opacity: 0.4; }

.hero-particles {
  position: absolute;
  inset: 0;
}

.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 12px rgba(255, 107, 0, 0.6);
  opacity: 0;
  animation: heroParticleFloat 8s ease-in-out infinite;
  animation-delay: calc(var(--i) * -0.7s);
  left: calc((var(--i) * 17 + 7) % 100 * 1%);
  top: calc((var(--i) * 23 + 11) % 100 * 1%);
}

.hero-particle:nth-child(3n) {
  width: 3px;
  height: 3px;
  background: #ffb300;
  animation-duration: 10s;
}

.hero-particle:nth-child(5n) {
  width: 2px;
  height: 2px;
  box-shadow: 0 0 8px rgba(255, 179, 0, 0.5);
  animation-duration: 12s;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, transparent 30%, var(--color-bg) 100%),
    linear-gradient(to bottom, var(--color-bg) 0%, transparent 15%, transparent 85%, var(--color-bg) 100%);
  opacity: 0.85;
}

@keyframes heroAurora {
  0% { transform: translate(0, 0) rotate(0deg) scale(1); }
  33% { transform: translate(3%, -2%) rotate(2deg) scale(1.05); }
  66% { transform: translate(-2%, 3%) rotate(-1deg) scale(0.98); }
  100% { transform: translate(2%, 1%) rotate(1deg) scale(1.03); }
}

@keyframes heroGridDrift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(64px, 64px); }
}

@keyframes heroOrbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 25px) scale(1.08); }
}

@keyframes heroOrbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(35px, -20px) scale(1.06); }
}

@keyframes heroOrbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
  50% { transform: translate(-20px, -30px) scale(1.1); opacity: 1; }
}

@keyframes heroRingPulse {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.5; }
  50% { transform: translateY(-50%) scale(1.06); opacity: 0.9; }
}

@keyframes heroRingSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes heroBeamSweep {
  0%, 100% { opacity: 0; transform: rotate(25deg) translateY(-10%); }
  45%, 55% { opacity: 1; transform: rotate(25deg) translateY(0); }
}

@keyframes heroParticleFloat {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0.5); }
  20% { opacity: 0.8; }
  50% { opacity: 0.4; transform: translateY(-40px) scale(1); }
  80% { opacity: 0.6; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-aurora,
  .hero-grid,
  .hero-glow,
  .hero-ring,
  .hero-ring::before,
  .hero-ring::after,
  .hero-beams span,
  .hero-particle {
    animation: none !important;
  }

  .hero-glow-layer { transition: none; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 28px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item .stat-label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* ─── Sections ──────────────────────────────────────────────── */
section {
  padding: 100px 0;
}

section.services-page,
section.tech-page,
section.process-page,
section.apps-page,
section.contact {
  padding: 8px 0 96px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ─── Services ───────────────────────────────────────────────── */
.services {
  background: var(--color-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.service-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255, 107, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--color-accent);
}

.service-icon svg { width: 22px; height: 22px; }

.service-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ─── Process ───────────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  counter-reset: step;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 auto 24px;
}

.process-step h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-step p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

/* ─── Tech Stack ────────────────────────────────────────────── */
.tech-stack {
  background: var(--color-bg-secondary);
  overflow: hidden;
}

.tech-marquee-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
  padding: 8px 0 4px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.tech-marquee-wrap::before,
.tech-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.tech-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg-secondary), transparent);
}

.tech-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg-secondary), transparent);
}

.tech-marquee {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.tech-marquee-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: techMarquee 38s linear infinite;
}

.tech-marquee--reverse .tech-marquee-track {
  animation-direction: reverse;
  animation-duration: 44s;
}

.tech-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 100px;
  border: 1px solid var(--color-border);
  background: rgba(var(--nav-track-rgb, 255, 255, 255), 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all var(--transition);
  flex-shrink: 0;
}

[data-theme="dark"] .tech-tag { --nav-track-rgb: 255, 255, 255; }
[data-theme="light"] .tech-tag { --nav-track-rgb: 0, 0, 0; }

.tech-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient-accent);
  box-shadow: 0 0 8px rgba(255, 107, 0, 0.5);
  flex-shrink: 0;
}

.tech-tag:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

@keyframes techMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .tech-marquee-track {
    animation: none !important;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
  }

  .tech-marquee-wrap {
    gap: 12px;
  }

  .tech-marquee {
    overflow: visible;
    mask-image: none;
    -webkit-mask-image: none;
  }
}

/* ─── CTA ───────────────────────────────────────────────────── */
.cta-section {
  padding: 80px 0;
}

.cta-box {
  background: var(--gradient-accent);
  border-radius: var(--radius-xl);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-box h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  margin-bottom: 32px;
  position: relative;
}

.cta-box .btn {
  background: #fff;
  color: var(--color-accent);
  position: relative;
}

.cta-box .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ─── Reviews ───────────────────────────────────────────────── */
.reviews {
  background: var(--color-bg-secondary);
}

.reviews-slider {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
}

.reviews-slider-viewport {
  width: 100%;
  overflow: hidden;
}

.reviews-slider-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-slide {
  flex: 0 0 100%;
  min-width: 100%;
  opacity: 0.45;
  transform: scale(0.97);
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1), transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.review-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 260px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.review-slide.is-active .review-card {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-md);
}

.reviews-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.reviews-slider-dot {
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 50%;
  padding: 0;
  background: var(--color-border);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), width var(--transition);
}

.reviews-slider-dot.is-active {
  width: 24px;
  border-radius: 100px;
  background: var(--color-accent);
}

.reviews-slider-dot:hover {
  background: var(--color-accent);
  opacity: 0.7;
}

.review-stars {
  display: flex;
  gap: 3px;
  color: var(--color-accent);
}

.review-stars svg {
  width: 16px;
  height: 16px;
}

.review-stars svg.is-empty {
  opacity: 0.22;
}

.review-service {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255, 107, 0, 0.1);
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}

a.review-service:hover {
  background: rgba(255, 107, 0, 0.18);
  color: var(--color-accent);
}

.review-quote {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  flex: 1;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 8px;
  border-top: 1px solid var(--color-border);
}

.review-author strong {
  font-size: 0.9375rem;
}

.review-author span {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

/* ─── Contact ───────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-text a,
.contact-item-text strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.4;
  word-break: break-word;
}

.contact-item-text a {
  transition: color var(--transition);
}

.contact-item-text a:hover {
  color: var(--color-accent);
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(255, 107, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}

.contact-item-icon svg { width: 22px; height: 22px; }

.contact-item-text span {
  display: block;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.contact-form {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.page-contact .contact-form {
  height: 100%;
}

.contact-form .btn-block {
  margin-top: 4px;
}

.form-group--message {
  margin-bottom: 24px;
}

main.page-contact,
main.page-services,
main.page-apps,
main.page-tech,
main.page-process,
main.page-default {
  padding-top: calc(var(--header-height) - 24px);
  min-height: 70vh;
  background: var(--color-bg);
}

.page-tech .tech-page,
.page-process .process-page,
.page-apps .apps-page {
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(255, 107, 0, 0.08), transparent 60%),
    var(--color-bg);
}

.page-services .services-page,
.page-contact .contact {
  background:
    radial-gradient(ellipse 70% 45% at 50% -8%, rgba(255, 107, 0, 0.06), transparent 55%),
    var(--color-bg);
}

.page-contact .contact,
.page-services .services-page,
.page-apps .apps-page,
.page-tech .tech-page,
.page-process .process-page {
  padding: 8px 0 96px;
}

.page-inner-header {
  margin-bottom: 40px;
}

.page-inner-header::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  margin: 20px auto 0;
  border-radius: 100px;
  background: var(--gradient-accent);
}

.page-inner-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.section-summary-footer,
.page-cta {
  text-align: center;
  margin-top: 56px;
  padding: 36px 32px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.page-cta-title {
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 800;
  margin-bottom: 10px;
}

.page-cta-text {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto 24px;
}

.btn-block {
  width: 100%;
}

.section-summary .section-summary-footer {
  margin-top: 32px;
  padding: 0;
  background: none;
  border: none;
  max-width: none;
}

.contact-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.contact-summary-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.contact-summary-card strong {
  font-size: 1rem;
}

.contact-summary-card span {
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.tech-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 16px;
}

.tech-category-card {
  position: relative;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.tech-category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.tech-category-card:hover {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.tech-category-card:hover::before {
  transform: scaleX(1);
}

.tech-category-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(255, 107, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.tech-category-icon svg {
  width: 24px;
  height: 24px;
}

.tech-category-card h2 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.tech-category-card p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.tech-page-marquee {
  margin-top: 32px;
  margin-bottom: 8px;
}

.tech-page-marquee-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.tech-page .tech-marquee-wrap::before {
  background: linear-gradient(to right, var(--color-bg), transparent);
}

.tech-page .tech-marquee-wrap::after {
  background: linear-gradient(to left, var(--color-bg), transparent);
}

.process-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 51px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(255, 107, 0, 0.45), rgba(255, 107, 0, 0.08));
  border-radius: 100px;
}

.process-timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.process-timeline-step:hover {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-sm);
}

.process-timeline-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9375rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.28);
}

.process-timeline-body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-timeline-body p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.process-timeline-detail {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--color-border);
  font-size: 0.875rem !important;
  color: var(--color-text-muted);
}

.services-categories {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}

.service-category {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.service-category:hover {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-category-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.service-category-index {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--color-accent);
}

.service-category-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(255, 107, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}

.service-category-icon svg {
  width: 26px;
  height: 26px;
}

.service-category-body h2 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-category-body > p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-category-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 20px;
}

.service-category-list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.service-category-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

.services-page-cta {
  text-align: center;
  margin-top: 48px;
}

.contact-info-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  height: 100%;
}

.page-contact .contact-grid {
  gap: 28px;
  align-items: stretch;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
  opacity: 0.72;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* ─── Default / Blog Templates ──────────────────────────────── */
.page-default .container {
  padding: 40px 0 96px;
}

.page-default .section-header {
  margin-bottom: 40px;
}

.entry-content {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.entry-content > * + * {
  margin-top: 1em;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  color: var(--color-text);
  margin-top: 1.6em;
  margin-bottom: 0.5em;
}

.entry-content a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.25em;
}

.post-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.post-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.post-card-title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.post-card-title a {
  color: inherit;
  text-decoration: none;
}

.post-card-title a:hover {
  color: var(--color-accent);
}

.post-card-meta {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.post-card-link {
  display: inline-flex;
  margin-top: 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
}

.post-pagination {
  margin-top: 40px;
}

.post-pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.post-pagination a,
.post-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 600;
}

.post-pagination .current {
  background: var(--gradient-accent);
  border-color: transparent;
  color: #fff;
}

.site-search-form {
  display: flex;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto 40px;
}

.site-search-input {
  flex: 1;
  padding: 14px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg-card);
  color: var(--color-text);
  font-family: inherit;
  font-size: 0.9375rem;
}

.site-search-input:focus {
  outline: none;
  border-color: var(--color-accent);
}

.content-none {
  text-align: center;
  padding: 40px 20px;
}

.content-none p {
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.page-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.page-404 .page-cta {
  background: none;
  border: none;
  padding: 0;
  max-width: none;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  color: var(--color-text);
  font-family: inherit;
  font-size: 0.9375rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ─── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.4fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  align-items: start;
}

.footer-links-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.footer-brand p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  margin-top: 16px;
  max-width: 300px;
}

.footer-brand .site-logo img { height: 36px; }

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer-col ul li { margin-bottom: 12px; }

.footer-col a {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--color-accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all var(--transition);
}

.social-links a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

.social-links svg { width: 18px; height: 18px; }

/* ─── Bottom Bar ────────────────────────────────────────────── */
.bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 18px calc(14px + env(safe-area-inset-bottom));
  pointer-events: none;
}

.bottom-bar-dock {
  pointer-events: auto;
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  gap: 0;
  min-height: 64px;
  max-width: 420px;
  margin: 0 auto;
  padding: 8px 8px 10px;
  border-radius: 28px;
  border: 1px solid var(--color-border);
  background: rgba(var(--bottom-bar-bg-rgb, 255, 255, 255), 0.94);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.14),
    0 2px 8px rgba(0, 0, 0, 0.06);
  animation: bottom-bar-in 0.45s cubic-bezier(0.34, 1.2, 0.64, 1) both;
}

@keyframes bottom-bar-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

[data-theme="dark"] .bottom-bar { --bottom-bar-bg-rgb: 18, 18, 18; }
[data-theme="light"] .bottom-bar { --bottom-bar-bg-rgb: 255, 255, 255; }

.bottom-bar-notch {
  position: absolute;
  top: -18px;
  left: 50%;
  width: 72px;
  height: 36px;
  transform: translateX(-50%);
  border-radius: 50%;
  box-shadow: 0 18px 0 0 rgba(var(--bottom-bar-bg-rgb, 255, 255, 255), 0.94);
  pointer-events: none;
  z-index: 0;
}

.bottom-bar-indicator {
  display: none;
}

.bottom-bar-btn {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 4px 2px 8px;
  border: 0;
  border-radius: 18px;
  background: transparent;
  color: var(--color-text-muted);
  font-family: inherit;
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-align: center;
  cursor: pointer;
  transition: color 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}

.bottom-bar-btn:active {
  transform: scale(0.96);
}

.bottom-bar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.bottom-bar-icon svg {
  width: 22px;
  height: 22px;
}

.bottom-bar-label {
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

.bottom-bar-btn:hover {
  color: var(--color-text);
}

.bottom-bar-btn.active {
  color: var(--color-text-muted);
}

.bottom-bar-btn.active .bottom-bar-icon {
  color: var(--color-text-muted);
}

.bottom-bar-btn--home {
  justify-content: flex-end;
  padding-top: 0;
  min-height: 46px;
  color: var(--color-text-muted);
}

.bottom-bar-fab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-top: -30px;
  margin-bottom: 2px;
  border-radius: 50%;
  color: #fff;
  background: radial-gradient(circle at 35% 30%, #ffb300 0%, #ff8a00 42%, #ff6b00 100%);
  border: 4px solid rgba(var(--bottom-bar-bg-rgb, 255, 255, 255), 1);
  box-shadow:
    0 8px 22px rgba(255, 107, 0, 0.42),
    0 2px 6px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.bottom-bar-fab svg {
  width: 24px;
  height: 24px;
}

.bottom-bar-btn--home .bottom-bar-label {
  color: inherit;
}

.bottom-bar-btn--home.active {
  color: var(--color-text-muted);
}

.bottom-bar-btn--home:active .bottom-bar-fab {
  transform: scale(0.94);
}

body.has-bottom-bar {
  padding-bottom: calc(96px + env(safe-area-inset-bottom));
}

body.mobile-menu-open .bottom-bar {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* ─── Apps / Services Search Sheet ─────────────────────────── */
.ligenlab-search-sheet {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 12px calc(96px + env(safe-area-inset-bottom));
}

.ligenlab-search-sheet[hidden] {
  display: none !important;
}

.ligenlab-search-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.ligenlab-search-sheet__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  padding: 18px 16px 16px;
  border-radius: 24px;
  border: 1px solid var(--color-border);
  background: rgba(var(--bottom-bar-bg-rgb, 255, 255, 255), 0.98);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  animation: bottom-bar-in 0.28s cubic-bezier(0.34, 1.2, 0.64, 1) both;
}

.ligenlab-search-sheet__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.ligenlab-search-sheet__header h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.ligenlab-search-sheet__close {
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: transparent;
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.ligenlab-search-sheet__close svg {
  width: 18px;
  height: 18px;
}

.ligenlab-search-sheet__field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
}

.ligenlab-search-sheet__field svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-text-muted);
}

.ligenlab-search-sheet__field input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--color-text);
  font: inherit;
  font-size: 0.95rem;
}

.ligenlab-search-sheet__hint {
  margin: 10px 2px 12px;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.ligenlab-search-sheet__results {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ligenlab-search-sheet__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
  color: var(--color-text);
  transition: border-color 0.2s ease, transform 0.15s ease;
}

.ligenlab-search-sheet__item strong {
  font-size: 0.95rem;
}

.ligenlab-search-sheet__item span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.ligenlab-search-sheet__item:hover,
.ligenlab-search-sheet__item:focus-visible {
  border-color: var(--color-accent);
}

.ligenlab-search-sheet__empty {
  margin: 8px 2px 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

body.ligenlab-search-open {
  overflow: hidden;
}

/* ─── Animations ────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Mobile Drawer ─────────────────────────────────────────── */
body.mobile-menu-open .site-header {
  visibility: hidden;
  pointer-events: none;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1101;
  width: min(360px, 100vw);
  background: var(--color-bg);
  border-left: 1px solid var(--color-border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.25);
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 32px;
  flex-shrink: 0;
}

.mobile-drawer-logo img {
  height: 36px;
  width: auto;
}

.mobile-drawer-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-shrink: 0;
  width: 100%;
}

.mobile-drawer-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: rgba(var(--nav-track-rgb, 255, 255, 255), 0.04);
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  -webkit-tap-highlight-color: transparent;
  flex: 0 0 44px;
}

@media (hover: hover) {
  .mobile-drawer-close:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
  }
}

.mobile-drawer-close:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.mobile-drawer-close svg {
  width: 20px;
  height: 20px;
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  overflow-y: auto;
}

.mobile-drawer-header,
.mobile-drawer-item,
.mobile-drawer-footer {
  opacity: 0;
  transform: translateX(18px);
}

.mobile-drawer.open .mobile-drawer-header,
.mobile-drawer.open .mobile-drawer-item,
.mobile-drawer.open .mobile-drawer-footer {
  animation: mobile-drawer-item-in 0.42s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.mobile-drawer.open .mobile-drawer-header {
  animation-delay: 0.08s;
}

.mobile-drawer.open .mobile-drawer-item:nth-child(1) { animation-delay: 0.14s; }
.mobile-drawer.open .mobile-drawer-item:nth-child(2) { animation-delay: 0.2s; }
.mobile-drawer.open .mobile-drawer-item:nth-child(3) { animation-delay: 0.26s; }
.mobile-drawer.open .mobile-drawer-item:nth-child(4) { animation-delay: 0.32s; }
.mobile-drawer.open .mobile-drawer-item:nth-child(5) { animation-delay: 0.38s; }
.mobile-drawer.open .mobile-drawer-item:nth-child(6) { animation-delay: 0.44s; }

.mobile-drawer.open .mobile-drawer-footer {
  animation-delay: 0.5s;
}

@keyframes mobile-drawer-item-in {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-drawer-header,
  .mobile-drawer-item,
  .mobile-drawer-footer {
    opacity: 1;
    transform: none;
  }

  .mobile-drawer.open .mobile-drawer-header,
  .mobile-drawer.open .mobile-drawer-item,
  .mobile-drawer.open .mobile-drawer-footer {
    animation: none;
  }
}

.mobile-drawer-item {
  display: flex;
  flex-direction: column;
}

.mobile-drawer-item-row {
  display: flex;
  align-items: center;
  gap: 4px;
}

.mobile-drawer-item-row > a,
.mobile-drawer-item > a {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 16px 12px;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-muted);
  border-radius: var(--radius-md);
  transition: color var(--transition), background var(--transition);
}

.mobile-drawer-item-row > a:hover,
.mobile-drawer-item-row > a.active,
.mobile-drawer-item > a:hover,
.mobile-drawer-item > a.active,
.mobile-drawer-item.is-open > .mobile-drawer-item-row > a {
  color: var(--color-text);
  background: rgba(255, 107, 0, 0.08);
}

.mobile-submenu-toggle {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--color-text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.25s ease;
}

.mobile-submenu-toggle svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}

.mobile-submenu-toggle:hover,
.mobile-drawer-item.is-open .mobile-submenu-toggle {
  color: var(--color-accent);
  background: rgba(255, 107, 0, 0.08);
}

.mobile-drawer-item.is-open .mobile-submenu-toggle svg {
  transform: rotate(180deg);
}

.mobile-submenu {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 0 8px 10px 20px;
}

.mobile-drawer-item.is-open .mobile-submenu {
  display: flex;
}

.mobile-submenu a {
  display: block;
  padding: 10px 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-muted);
  border-radius: 12px;
  transition: color 0.2s ease, background 0.2s ease;
}

.mobile-submenu a:hover,
.mobile-submenu a.active {
  color: var(--color-accent);
  background: rgba(255, 107, 0, 0.06);
}

.mobile-drawer-footer {
  margin-top: auto;
  padding-top: 20px;
  padding-bottom: max(8px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--color-border);
}

.mobile-drawer-footer .theme-toggle {
  flex: 0 0 44px;
  width: 44px;
  min-width: 44px;
  max-width: 44px;
  height: 44px;
  box-shadow: none;
  color: var(--color-text);
  border-color: var(--color-border);
}

/* ─── Responsive ────────────────────────────────────────────── */
@media (min-width: 1025px) {
  .tech-marquee-wrap::before,
  .tech-marquee-wrap::after {
    width: 48px;
  }

  [data-theme="dark"] .hero-video--dark-web,
  [data-theme="dark"] .hero-embed--dark-web {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  [data-theme="dark"] .hero-video--dark-web {
    object-fit: cover;
  }

  [data-theme="dark"] .hero-video-overlay--dark-web {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(to bottom, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0.78) 100%),
      rgba(0, 0, 0, 0.38);
  }

  [data-theme="light"] .hero-video--light-web,
  [data-theme="light"] .hero-embed--light-web {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  [data-theme="light"] .hero-video--light-web {
    object-fit: cover;
  }

  [data-theme="light"] .hero-video-overlay--light-web {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(to bottom, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.5) 45%, rgba(255, 255, 255, 0.85) 100%),
      rgba(255, 255, 255, 0.38);
  }

  [data-theme="dark"] .hero-aurora,
  [data-theme="dark"] .hero-grid,
  [data-theme="dark"] .hero-glow-layer,
  [data-theme="dark"] .hero-ring,
  [data-theme="dark"] .hero-beams,
  [data-theme="dark"] .hero-particles,
  [data-theme="light"] .hero-aurora,
  [data-theme="light"] .hero-grid,
  [data-theme="light"] .hero-glow-layer,
  [data-theme="light"] .hero-ring,
  [data-theme="light"] .hero-beams,
  [data-theme="light"] .hero-particles {
    display: none;
  }

  [data-theme="dark"] .hero-bg--fallback .hero-aurora,
  [data-theme="dark"] .hero-bg--fallback .hero-grid,
  [data-theme="dark"] .hero-bg--fallback .hero-glow-layer,
  [data-theme="dark"] .hero-bg--fallback .hero-ring,
  [data-theme="dark"] .hero-bg--fallback .hero-beams,
  [data-theme="dark"] .hero-bg--fallback .hero-particles,
  [data-theme="light"] .hero-bg--fallback .hero-aurora,
  [data-theme="light"] .hero-bg--fallback .hero-grid,
  [data-theme="light"] .hero-bg--fallback .hero-glow-layer,
  [data-theme="light"] .hero-bg--fallback .hero-ring,
  [data-theme="light"] .hero-bg--fallback .hero-beams,
  [data-theme="light"] .hero-bg--fallback .hero-particles {
    display: block;
  }

  [data-theme="dark"] .hero-bg--fallback .hero-beams span,
  [data-theme="light"] .hero-bg--fallback .hero-beams span {
    display: block;
  }

  [data-theme="light"] .hero-vignette {
    z-index: 2;
    opacity: 0.65;
    background:
      radial-gradient(ellipse 90% 70% at 50% 50%, transparent 20%, rgba(255, 255, 255, 0.88) 100%),
      linear-gradient(to bottom, rgba(255, 255, 255, 0.72) 0%, transparent 18%, transparent 82%, rgba(255, 255, 255, 0.82) 100%);
  }

  [data-theme="dark"] .hero-vignette {
    z-index: 2;
    opacity: 0.65;
    background:
      radial-gradient(ellipse 90% 70% at 50% 50%, transparent 20%, rgba(0, 0, 0, 0.85) 100%),
      linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, transparent 18%, transparent 82%, rgba(0, 0, 0, 0.8) 100%);
  }
}

@media (max-width: 1024px) {
  .main-nav { display: none; }
  .btn-header { display: none; }
  .bottom-bar { display: block; }
  body.has-bottom-bar { padding-bottom: calc(96px + env(safe-area-inset-bottom)); }

  .header-container {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }

  .header-shell {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .site-logo {
    flex-shrink: 0;
  }

  .header-actions {
    flex-shrink: 0;
  }

  .theme-toggle {
    flex: 0 0 40px;
    width: 40px;
    min-width: 40px;
    max-width: 40px;
    height: 40px;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-links-row { gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  main.page-contact,
  main.page-services,
  main.page-apps,
  main.page-tech,
  main.page-process,
  main.page-default {
    padding-top: 100px;
  }

  main.page-contact .contact,
  main.page-services .services-page,
  main.page-apps .apps-page,
  main.page-tech .tech-page,
  main.page-process .process-page,
  main.page-default .container {
    padding-top: 0;
    padding-bottom: 80px;
  }

  [data-theme="dark"] .hero-video--dark,
  [data-theme="dark"] .hero-embed--dark {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  [data-theme="dark"] .hero-video--dark {
    object-fit: cover;
  }

  [data-theme="dark"] .hero-video-overlay--dark {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(to bottom, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0.78) 100%),
      rgba(0, 0, 0, 0.35);
  }

  [data-theme="light"] .hero-video--light,
  [data-theme="light"] .hero-embed--light {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  [data-theme="light"] .hero-video--light {
    object-fit: cover;
  }

  [data-theme="light"] .hero-video-overlay--light {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(to bottom, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.55) 45%, rgba(255, 255, 255, 0.88) 100%),
      rgba(255, 255, 255, 0.42);
  }

  [data-theme="dark"] .hero-aurora,
  [data-theme="dark"] .hero-grid,
  [data-theme="dark"] .hero-glow-layer,
  [data-theme="dark"] .hero-ring,
  [data-theme="dark"] .hero-beams,
  [data-theme="dark"] .hero-particles,
  [data-theme="light"] .hero-aurora,
  [data-theme="light"] .hero-grid,
  [data-theme="light"] .hero-glow-layer,
  [data-theme="light"] .hero-ring,
  [data-theme="light"] .hero-beams,
  [data-theme="light"] .hero-particles {
    display: none;
  }

  [data-theme="dark"] .hero-bg--fallback .hero-aurora,
  [data-theme="dark"] .hero-bg--fallback .hero-grid,
  [data-theme="dark"] .hero-bg--fallback .hero-glow-layer,
  [data-theme="dark"] .hero-bg--fallback .hero-ring,
  [data-theme="dark"] .hero-bg--fallback .hero-beams,
  [data-theme="dark"] .hero-bg--fallback .hero-particles,
  [data-theme="light"] .hero-bg--fallback .hero-aurora,
  [data-theme="light"] .hero-bg--fallback .hero-grid,
  [data-theme="light"] .hero-bg--fallback .hero-glow-layer,
  [data-theme="light"] .hero-bg--fallback .hero-ring,
  [data-theme="light"] .hero-bg--fallback .hero-beams,
  [data-theme="light"] .hero-bg--fallback .hero-particles {
    display: block;
  }

  [data-theme="dark"] .hero-bg--fallback .hero-beams span,
  [data-theme="light"] .hero-bg--fallback .hero-beams span {
    display: block;
  }

  [data-theme="dark"] .hero-vignette {
    z-index: 2;
    opacity: 0.65;
    background:
      radial-gradient(ellipse 90% 70% at 50% 50%, transparent 20%, rgba(0, 0, 0, 0.85) 100%),
      linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, transparent 18%, transparent 82%, rgba(0, 0, 0, 0.8) 100%);
  }

  [data-theme="light"] .hero-vignette {
    z-index: 2;
    opacity: 0.7;
    background:
      radial-gradient(ellipse 90% 70% at 50% 50%, transparent 20%, rgba(255, 255, 255, 0.9) 100%),
      linear-gradient(to bottom, rgba(255, 255, 255, 0.75) 0%, transparent 18%, transparent 82%, rgba(255, 255, 255, 0.85) 100%);
  }
}

@media (max-width: 768px) {
  html,
  body {
    overflow-x: clip;
  }

  .site-header {
    padding: 12px 0 10px;
  }

  .header-container {
    padding-left: max(12px, env(safe-area-inset-left));
    padding-right: max(12px, env(safe-area-inset-right));
  }

  .header-shell {
    height: 68px;
    padding: 0 10px 0 18px;
  }

  .site-logo img { height: 42px; }

  main.page-contact,
  main.page-services,
  main.page-apps,
  main.page-tech,
  main.page-process,
  main.page-default {
    padding-top: 96px;
  }

  main.page-contact .contact,
  main.page-services .services-page,
  main.page-apps .apps-page,
  main.page-tech .tech-page,
  main.page-process .process-page,
  main.page-default .container {
    padding-top: 0;
    padding-bottom: 72px;
  }

  .hero-ring,
  .hero-beams { display: none; }

  .hero-glow--1 { width: 280px; height: 280px; }
  .hero-glow--2 { width: 240px; height: 240px; }
  .hero-glow--3 { display: none; }

  .hero {
    min-height: auto;
    align-items: flex-start;
    padding-top: 108px;
    padding-bottom: 24px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .hero-stats .stat-item {
    min-width: 0;
    text-align: center;
  }

  .hero-stats .stat-number {
    font-size: 1.625rem;
  }

  .hero-stats .stat-label {
    font-size: 0.6875rem;
    line-height: 1.3;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
    gap: 12px;
  }

  .service-card {
    padding: 20px 16px;
  }

  .service-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
  }

  .service-icon svg { width: 18px; height: 18px; }

  .service-card h3 {
    font-size: 0.9375rem;
    margin-bottom: 6px;
  }

  .service-card p {
    font-size: 0.75rem;
    line-height: 1.5;
  }

  .reviews-slider {
    max-width: none;
  }

  .review-card {
    padding: 24px 20px;
    min-height: 0;
  }

  .service-category {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 20px;
  }

  .service-category-list {
    grid-template-columns: 1fr;
  }

  .contact-summary-grid,
  .tech-categories {
    grid-template-columns: 1fr;
  }

  .page-inner-header {
    margin-bottom: 28px;
  }

  .page-cta {
    margin-top: 40px;
    padding: 28px 20px;
  }

  .process-timeline::before {
    display: none;
  }

  .process-timeline-step {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 20px;
  }

  .process-timeline-num {
    width: 44px;
    height: 44px;
  }

  .service-category-meta {
    flex-direction: row;
    justify-content: flex-start;
  }

  .contact-info-card,
  .page-contact .contact-form {
    padding: 24px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-links-row {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .cta-box { padding: 40px 24px; }
  section { padding: 64px 0; }

  main.page-contact .contact,
  main.page-services .services-page,
  main.page-apps .apps-page,
  main.page-tech .tech-page,
  main.page-process .process-page {
    padding: 0 0 72px;
  }
}

/* ─── WordPress Core ────────────────────────────────────────── */
.alignwide { max-width: var(--container); margin: 0 auto; }
.alignfull { width: 100vw; margin-left: calc(50% - 50vw); }

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
