/*
Theme Name: Markoro
Theme URI: https://markoro.agency
Author: Markoro Agency
Author URI: https://markoro.agency
Description: Custom WordPress theme for Markoro — Web Development & AI Automation Agency. Dark, glassmorphic design with teal accents.
Version: 1.0.0
Requires at least: 6.0
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: markoro
*/

/* ==========================================================================
   MARKORO — Web Development & AI Automation Agency
   Stylesheet (Vanilla CSS3 + Custom Design System)
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. Google Fonts Import & CSS Custom Properties
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  /* Color System */
  --bg-dark: #08101A;
  --bg-navy: #0D1B2A;
  --bg-card: rgba(16, 29, 45, 0.75);
  --bg-card-hover: rgba(22, 40, 62, 0.9);
  --bg-card-solid: #112234;
  --border-color: rgba(45, 212, 191, 0.16);
  --border-color-glow: rgba(45, 212, 191, 0.45);
  
  --accent-teal: #2DD4BF;
  --accent-teal-glow: #5EEAD4;
  --accent-teal-dark: #0F766E;
  --accent-teal-bg: rgba(45, 212, 191, 0.08);

  --text-main: #F8FAFC;
  --text-secondary: #CBD5E1;
  --text-muted: #94A3B8;
  --text-dark: #0F172A;

  /* Typography */
  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing & Layout */
  --container-max: 1280px;
  --header-height: 84px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  /* Shadows & Glows */
  --glow-teal: 0 0 25px rgba(45, 212, 191, 0.25);
  --glow-teal-strong: 0 0 45px rgba(45, 212, 191, 0.45);
  --shadow-card: 0 20px 40px -15px rgba(0, 0, 0, 0.5);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   02. Reset & General Setup
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: auto; /* Handled by Lenis.js */
  color-scheme: dark;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* Selection */
::selection {
  background: var(--accent-teal);
  color: var(--bg-dark);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #1E293B;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-teal-dark);
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
}

p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

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

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   03. Layout & Grid Utility
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 7rem 0;
  position: relative;
  z-index: 2;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-teal);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: var(--accent-teal);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-teal);
}

.section-heading {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 1.25rem;
  max-width: 30ch;
}

.section-subheading {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 60ch;
  margin-bottom: 3.5rem;
}

/* Dynamic Grid Lines Background */
.bg-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(45, 212, 191, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(45, 212, 191, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
}

/* Ambient Radial Glow */
.ambient-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.12) 0%, rgba(13, 27, 42, 0) 70%);
  pointer-events: none;
  filter: blur(60px);
  z-index: 0;
}

/* --------------------------------------------------------------------------
   04. Components: Buttons & Badges
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.95rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--accent-teal);
  color: var(--text-dark);
  box-shadow: var(--glow-teal);
}

.btn-primary:hover {
  background: var(--accent-teal-glow);
  box-shadow: var(--glow-teal-strong);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  border-color: var(--accent-teal);
  color: var(--accent-teal);
  background: var(--accent-teal-bg);
  transform: translateY(-2px);
}

.btn-icon-arrow {
  display: inline-block;
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon-arrow {
  transform: translateX(4px);
}

/* Tag Badges */
.badge-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--accent-teal-bg);
  color: var(--accent-teal);
  border: 1px solid rgba(45, 212, 191, 0.2);
}

/* Glass Card */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-color-glow);
  box-shadow: var(--shadow-card), var(--glow-teal);
  transform: translateY(-4px);
}

/* --------------------------------------------------------------------------
   05. Header & Navigation Bar
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-normal);
}

.header.scrolled {
  background: rgba(8, 16, 26, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(45, 212, 191, 0.1);
  height: 72px;
}

.header-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo Styling */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1002;
}

.logo-svg {
  height: 42px;
  width: auto;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-teal);
  transition: width var(--transition-fast);
  box-shadow: 0 0 8px var(--accent-teal);
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-teal);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Hamburger Menu Toggle Button */
.hamburger-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  z-index: 1002;
  border: none;
  background: none;
}

.hamburger-bar {
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.hamburger-toggle.active .hamburger-bar:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
  background-color: var(--accent-teal);
}

.hamburger-toggle.active .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.hamburger-toggle.active .hamburger-bar:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
  background-color: var(--accent-teal);
}

/* Mobile Drawer Overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 16, 26, 0.97);
  backdrop-filter: blur(25px);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

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

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 3rem;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-main);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--accent-teal);
}

/* --------------------------------------------------------------------------
   06. PAGE 1: HERO SECTION & STATS BAR
   -------------------------------------------------------------------------- */
.hero-section {
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Prevent the fixed header from covering the top of a section when
   jumping to it via a nav link/anchor (e.g. tapping "Contact" in the
   mobile menu). Without this, the section heading/label lands
   underneath the header and appears to be missing. */
section[id] {
  scroll-margin-top: var(--header-height);
}

.hero-glow-1 {
  top: 10%;
  right: -10%;
}

.hero-glow-2 {
  bottom: 10%;
  left: -10%;
}

.hero-content {
  max-width: 900px;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(45, 212, 191, 0.08);
  border: 1px solid rgba(45, 212, 191, 0.2);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--accent-teal);
  margin-bottom: 2rem;
}

.hero-tag-pulse {
  width: 8px;
  height: 8px;
  background-color: var(--accent-teal);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-teal);
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
}

.hero-title {
  font-size: clamp(3.2rem, 7.5vw, 6.2rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
}

.hero-title .title-line {
  display: block;
  overflow: hidden;
}

.hero-title .title-word {
  display: inline-block;
  transform: translateY(0);
  opacity: 1;
}

/* Only hide the words for the reveal animation if JS confirms the
   animation library actually loaded (class added by main.js).
   This prevents the headline staying invisible forever if the
   GSAP/ScrollTrigger CDN is slow, blocked, or fails to load. */
html.gsap-ready .hero-title .title-word {
  transform: translateY(100%);
  opacity: 0;
}

.hero-title .highlight-teal {
  color: var(--accent-teal);
  background: linear-gradient(135deg, #2DD4BF 0%, #5EEAD4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subheadline {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--text-secondary);
  max-width: 680px;
  margin-bottom: 2.75rem;
  font-weight: 300;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 4.5rem;
}

/* Stats Bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 2rem 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  position: relative;
  z-index: 2;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--accent-teal);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   07. PAGE 1: SERVICES OVERVIEW ("Three Systems")
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 480px;
}

.service-card-top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-visual-box {
  width: 100%;
  height: 160px;
  border-radius: var(--radius-md);
  background: rgba(13, 27, 42, 0.8);
  border: 1px solid rgba(45, 212, 191, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-visual-box svg {
  width: 80px;
  height: 80px;
  color: var(--accent-teal);
  transition: transform var(--transition-normal);
}

.service-card:hover .service-visual-box svg {
  transform: scale(1.1);
}

.service-card-title {
  font-size: 1.6rem;
  line-height: 1.25;
}

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

.service-card-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent-teal);
}

.service-link:hover {
  color: var(--accent-teal-glow);
}

/* --------------------------------------------------------------------------
   08. PAGE 1: PROCESS SECTION ("How We Build")
   -------------------------------------------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 3.5rem;
  position: relative;
}

.process-card {
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 340px;
}

.process-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(45, 212, 191, 0.25);
  line-height: 1;
  transition: color var(--transition-fast);
}

.process-card:hover .process-number {
  color: var(--accent-teal);
}

.process-step-title {
  font-size: 1.35rem;
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
}

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

.process-detail-hover {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(45, 212, 191, 0.2);
  font-size: 0.85rem;
  color: var(--accent-teal);
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-normal);
}

.process-card:hover .process-detail-hover {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   09. PAGE 1: PORTFOLIO / CASE STUDIES CAROUSEL
   -------------------------------------------------------------------------- */
.carousel-wrapper {
  overflow-x: auto;
  padding-bottom: 2rem;
  margin-top: 3rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  display: flex;
  gap: 2rem;
  cursor: grab;
}

.carousel-wrapper::-webkit-scrollbar {
  height: 6px;
}

.carousel-card {
  min-width: 380px;
  max-width: 420px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.portfolio-img-placeholder {
  width: 100%;
  height: 220px;
  border-radius: var(--radius-md);
  background: radial-gradient(circle at center, #162B42 0%, #0C1724 100%);
  border: 1px solid var(--border-color);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.portfolio-img-placeholder svg {
  width: 60px;
  height: 60px;
  opacity: 0.7;
}

.portfolio-result-stat {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-teal);
  margin: 0.75rem 0 0.5rem 0;
}

.portfolio-quote-snippet {
  font-style: italic;
  font-size: 0.925rem;
  color: var(--text-secondary);
  border-left: 2px solid var(--accent-teal);
  padding-left: 0.75rem;
  margin-top: 1rem;
}

/* --------------------------------------------------------------------------
   10. PAGE 1: FINAL CTA & CONTACT FORM SECTION
   -------------------------------------------------------------------------- */
.cta-section-box {
  background: radial-gradient(circle at top right, rgba(45, 212, 191, 0.1) 0%, rgba(13, 27, 42, 0.95) 70%);
  border: 1px solid var(--border-color-glow);
  border-radius: var(--radius-lg);
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  box-shadow: var(--shadow-card), var(--glow-teal);
}

.cta-section-box > .cta-header {
  grid-column: 1 / -1;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: rgba(8, 16, 26, 0.7);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent-teal);
  box-shadow: 0 0 12px rgba(45, 212, 191, 0.25);
  background: rgba(8, 16, 26, 0.9);
}

.form-select option {
  background: var(--bg-dark);
  color: var(--text-main);
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.info-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--accent-teal-bg);
  border: 1px solid rgba(45, 212, 191, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-teal);
  flex-shrink: 0;
}

.info-text-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.info-text-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);

}

.social-links-row {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.social-icon-btn:hover {
  background: var(--accent-teal);
  color: var(--text-dark);
  border-color: var(--accent-teal);
  box-shadow: var(--glow-teal);
}

/* --------------------------------------------------------------------------
   11. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background: #050B12;
  border-top: 1px solid rgba(45, 212, 191, 0.1);
  padding: 5rem 0 2.5rem 0;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-tagline {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 320px;
}

.footer-title {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  color: var(--text-main);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-link {
  font-size: 0.925rem;
  color: var(--text-muted);
}

.footer-link:hover {
  color: var(--accent-teal);
}

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

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #4ADE80;
  font-size: 0.8rem;
  font-family: var(--font-heading);
}

.status-dot {
  width: 6px;
  height: 6px;
  background: #4ADE80;
  border-radius: 50%;
  box-shadow: 0 0 8px #4ADE80;
}

/* --------------------------------------------------------------------------
   12. PAGE SPECIFIC STYLES (About, Services, Portfolio, Process, Contact)
   -------------------------------------------------------------------------- */

/* Page Header / Hero Banner for inner pages */
.page-hero {
  padding-top: calc(var(--header-height) + 5rem);
  padding-bottom: 4rem;
  text-align: center;
  position: relative;
}

.page-hero .hero-title {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  margin-bottom: 1.25rem;
}

.page-hero .hero-subheadline {
  margin: 0 auto 2.5rem auto;
}

/* Filterable Portfolio Buttons */
.portfolio-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.03);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--accent-teal);
  color: var(--text-dark);
  border-color: var(--accent-teal);
  box-shadow: var(--glow-teal);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

/* Detailed Process Timeline (Process Page) */
.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  position: relative;
  margin-top: 3rem;
}

.timeline-list::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 28px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-teal), rgba(45, 212, 191, 0.1));
}

.timeline-item {
  display: flex;
  gap: 2.5rem;
  position: relative;
}

.timeline-marker {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid var(--accent-teal);
  box-shadow: var(--glow-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent-teal);
  flex-shrink: 0;
  z-index: 2;
}

.timeline-content {
  flex: 1;
  padding: 2.25rem;
}

/* FAQ Accordion (Services Page) */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 900px;
  margin: 3rem auto 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-header {
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--accent-teal);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
  padding: 0 2rem;
}

.faq-item.active .faq-body {
  padding: 0 2rem 1.75rem 2rem;
}

/* --------------------------------------------------------------------------
   13. Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-section-box {
    grid-template-columns: 1fr;
    padding: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-menu, .header-cta {
    display: none;
  }
  .hamburger-toggle {
    display: flex;
  }
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .timeline-item {
    flex-direction: column;
    gap: 1rem;
  }
  .timeline-list::before {
    display: none;
  }
}
