/*
Theme Name: Scale Lab
Theme URI: https://scalelab.io
Author: Scale Lab
Author URI: https://scalelab.io
Description: A cutting-edge, dark-mode AI-powered marketing agency WordPress theme with glassmorphism, animations, and premium design.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: scalelab
Tags: dark, one-page, marketing, agency, custom-background
*/

/* ========================================
   CSS CUSTOM PROPERTIES
   ======================================== */
:root {
  --color-bg: #0A0A0A;
  --color-bg-light: #111118;
  --color-bg-card: #14141C;
  --color-cyan: #00F5FF;
  --color-cyan-dim: #00b8bf;
  --color-lime: #B6FF00;
  --color-lime-dim: #8fcc00;
  --color-white: #F0F0F0;
  --color-white-60: rgba(240,240,240,0.6);
  --color-white-50: rgba(240,240,240,0.5);
  --color-white-45: rgba(240,240,240,0.45);
  --color-white-40: rgba(240,240,240,0.4);
  --color-white-35: rgba(240,240,240,0.35);
  --color-white-30: rgba(240,240,240,0.3);
  --color-white-25: rgba(240,240,240,0.25);
  --color-white-20: rgba(240,240,240,0.2);
  --color-white-10: rgba(255,255,255,0.1);
  --color-white-08: rgba(255,255,255,0.08);
  --color-white-05: rgba(255,255,255,0.05);
  --color-white-03: rgba(255,255,255,0.03);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius: 1rem;
  --radius-sm: 0.5rem;
  --radius-xl: 1.25rem;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-white);
  line-height: 1.9;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

::selection {
  background: rgba(0,245,255,0.25);
  color: white;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: #2a2a3a; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,245,255,0.5); }

/* ========================================
   LAYOUT
   ======================================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding-left: 2rem; padding-right: 2rem; }
}

.section-padding {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

@media (min-width: 768px) {
  .section-padding { padding-top: 8rem; padding-bottom: 8rem; }
}

/* ========================================
   GLASSMORPHISM CARDS
   ======================================== */
.glass-card {
  background: rgba(20,20,28,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-white-08);
  border-radius: var(--radius);
}

.glass-card-hover {
  background: rgba(20,20,28,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-white-08);
  border-radius: var(--radius);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card-hover:hover {
  background: rgba(25,25,35,0.7);
  border-color: rgba(0,245,255,0.3);
  box-shadow: 0 0 30px rgba(0,245,255,0.1), 0 0 60px rgba(0,245,255,0.05);
  transform: translateY(-4px);
}

/* ========================================
   GLOW EFFECTS
   ======================================== */
.glow-cyan {
  box-shadow: 0 0 20px rgba(0,245,255,0.3), 0 0 40px rgba(0,245,255,0.15);
}

.glow-lime {
  box-shadow: 0 0 20px rgba(182,255,0,0.3), 0 0 40px rgba(182,255,0,0.15);
}

.text-glow-cyan {
  text-shadow: 0 0 20px rgba(0,245,255,0.5), 0 0 40px rgba(0,245,255,0.25);
}

.text-glow-lime {
  text-shadow: 0 0 20px rgba(182,255,0,0.5), 0 0 40px rgba(182,255,0,0.25);
}

/* ========================================
   GRADIENT TEXT
   ======================================== */
.gradient-text-cyan-lime {
  background: linear-gradient(to right, var(--color-cyan), var(--color-lime));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-lime-cyan {
  background: linear-gradient(to right, var(--color-lime), var(--color-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  background-color: var(--color-cyan);
  color: var(--color-bg);
  font-weight: 700;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  box-shadow: 0 0 40px rgba(0,245,255,0.4);
  transform: scale(1.05);
  color: var(--color-bg);
}

.btn-primary svg {
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-white-20);
  color: var(--color-white-60);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: rgba(0,245,255,0.4);
  color: var(--color-cyan);
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-full);
  background-color: var(--color-cyan);
  color: var(--color-bg);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.btn-nav:hover {
  box-shadow: 0 0 30px rgba(0,245,255,0.4);
  transform: scale(1.05);
  color: var(--color-bg);
}

/* ========================================
   SECTION LABEL
   ======================================== */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.section-label.cyan { color: var(--color-cyan); }
.section-label.lime { color: var(--color-lime); }

/* ========================================
   NAVBAR
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s ease;
  height: 5rem;
}

.site-header.scrolled {
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-white-05);
  box-shadow: 0 4px 30px rgba(0,245,255,0.05);
}

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

.site-header .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-header .logo-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--color-cyan), var(--color-lime));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--color-bg);
  transition: box-shadow 0.3s ease;
}

.site-header .logo:hover .logo-icon {
  box-shadow: 0 0 20px rgba(0,245,255,0.3);
}

.site-header .logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
  letter-spacing: -0.02em;
}

.site-header .logo-text span { color: var(--color-cyan); }

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  color: var(--color-white-60);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-cyan);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-cyan);
  border-radius: 1px;
}

.nav-cta { display: none; }

@media (min-width: 640px) {
  .nav-cta { display: inline-flex; }
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
}

/* Mobile menu */
.mobile-toggle {
  display: block;
  color: var(--color-white-60);
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-toggle { display: none; }
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 5rem;
  left: 0;
  right: 0;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-white-05);
  padding: 1.5rem;
  z-index: 49;
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  font-size: 1rem;
  color: var(--color-white-60);
  font-weight: 500;
}

.mobile-menu a:hover { color: var(--color-cyan); }

.mobile-menu .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-bg .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.5), rgba(10,10,10,0.3), var(--color-bg));
}

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

.hero .glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 5;
  filter: blur(150px);
}

.hero .glow-orb.cyan {
  top: 5rem;
  right: 25%;
  width: 500px;
  height: 500px;
  background: rgba(0,245,255,0.05);
}

.hero .glow-orb.lime {
  bottom: 5rem;
  left: 25%;
  width: 300px;
  height: 300px;
  background: rgba(182,255,0,0.05);
}

.hero-content {
  position: relative;
  z-index: 20;
  padding-top: 8rem;
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  .hero-content { padding-top: 10rem; padding-bottom: 7rem; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0,245,255,0.2);
  background: rgba(0,245,255,0.05);
  margin-bottom: 2rem;
}

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

.hero-badge span {
  color: var(--color-cyan);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  max-width: 56rem;
}

.hero .subheadline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-white-60);
  max-width: 42rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero .cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

.hero .stats-bar {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1.25rem 1.5rem;
}

@media (min-width: 768px) {
  .hero .stats-bar { gap: 3rem; padding: 1.5rem 2.5rem; }
}

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

.hero .stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: white;
  font-variant-numeric: tabular-nums;
}

.hero .stat-label {
  font-size: 0.625rem;
  color: var(--color-white-40);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .hero .stat-label { font-size: 0.75rem; }
}

.hero .bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: linear-gradient(to top, var(--color-bg), transparent);
  z-index: 20;
  pointer-events: none;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .service-card { padding: 1.75rem; }
}

.service-card .glow-corner {
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  transition: opacity 0.7s ease;
}

.service-card:hover .glow-corner { opacity: 1; }

.service-card .glow-corner.cyan { background: rgba(0,245,255,0.15); }
.service-card .glow-corner.lime { background: rgba(182,255,0,0.15); }

.service-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.3s ease;
}

.service-icon.cyan {
  background: rgba(0,245,255,0.1);
  color: var(--color-cyan);
}

.service-icon.lime {
  background: rgba(182,255,0,0.1);
  color: var(--color-lime);
}

.service-card:hover .service-icon.cyan { background: rgba(0,245,255,0.15); }
.service-card:hover .service-icon.lime { background: rgba(182,255,0,0.15); }

.service-card h3 {
  font-size: 1.125rem;
  color: white;
  margin-bottom: 0.625rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--color-white-50);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.service-card .learn-more {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.service-card:hover .learn-more {
  opacity: 1;
  transform: translateX(0);
}

.service-card .learn-more.cyan { color: var(--color-cyan); }
.service-card .learn-more.lime { color: var(--color-lime); }

/* ========================================
   HOW IT WORKS
   ======================================== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
}

.steps-grid .connecting-line {
  display: none;
}

@media (min-width: 768px) {
  .steps-grid .connecting-line {
    display: block;
    position: absolute;
    top: 3.5rem;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(to right, rgba(0,245,255,0.3), var(--color-white-10), rgba(182,255,0,0.3));
  }
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 10;
}

.step-circle {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  margin-bottom: 1.5rem;
  position: relative;
  transition: transform 0.3s ease;
}

.step-circle:hover { transform: scale(1.1); }

.step-circle.cyan {
  border: 1px solid rgba(0,245,255,0.3);
  box-shadow: 0 0 20px rgba(0,245,255,0.1);
  color: var(--color-cyan);
}

.step-circle.lime {
  border: 1px solid rgba(182,255,0,0.3);
  box-shadow: 0 0 20px rgba(182,255,0,0.1);
  color: var(--color-lime);
}

.step-number {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  margin-bottom: 0.75rem;
}

.step-number.cyan { color: rgba(0,245,255,0.5); }
.step-number.lime { color: rgba(182,255,0,0.5); }

.step-item h3 {
  font-size: 1.125rem;
  color: white;
  margin-bottom: 0.5rem;
}

.step-item p {
  font-size: 0.875rem;
  color: var(--color-white-45);
  line-height: 1.6;
  max-width: 220px;
}

/* ========================================
   RESULTS / SOCIAL PROOF
   ======================================== */
.results-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.results-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}

.results-bg .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--color-bg), rgba(10,10,10,0.85), var(--color-bg));
}

.case-studies-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .case-studies-grid { grid-template-columns: repeat(2, 1fr); }
}

.case-card {
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .case-card { padding: 2rem; }
}

.case-card .card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.case-card h3 {
  font-size: 1.125rem;
  color: white;
  margin-bottom: 0.5rem;
}

.case-card .case-desc {
  font-size: 0.875rem;
  color: var(--color-white-45);
  line-height: 1.6;
  max-width: 24rem;
}

.case-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 1rem;
}

.case-icon.cyan { background: rgba(0,245,255,0.1); color: var(--color-cyan); }
.case-icon.lime { background: rgba(182,255,0,0.1); color: var(--color-lime); }

.case-card .stat-row {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-white-05);
}

.case-card .stat-big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.case-card .stat-big.cyan { color: var(--color-cyan); }
.case-card .stat-big.lime { color: var(--color-lime); }

.case-card .stat-label-sm {
  font-size: 0.875rem;
  color: var(--color-white-40);
  font-weight: 500;
  padding-bottom: 0.25rem;
}

/* Testimonials Carousel */
.testimonials-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.testimonials-header svg { color: var(--color-lime); }

.testimonials-header span {
  font-size: 0.875rem;
  color: var(--color-white-50);
  font-weight: 500;
}

.testimonials-track {
  display: flex;
  gap: 1.25rem;
  overflow: hidden;
}

.testimonial-card {
  min-width: 300px;
  padding: 1.5rem;
  flex-shrink: 0;
  transition: border-color 0.3s ease;
}

@media (min-width: 768px) {
  .testimonial-card { min-width: 380px; }
}

.testimonial-card:hover {
  border-color: rgba(0,245,255,0.2);
}

.testimonial-card .quote-icon {
  color: rgba(0,245,255,0.25);
  margin-bottom: 1rem;
}

.testimonial-card .quote-text {
  font-size: 0.875rem;
  color: rgba(240,240,240,0.65);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card .avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,245,255,0.2), rgba(182,255,0,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-white-05);
}

.testimonial-card .avatar span {
  font-size: 0.625rem;
  font-weight: 700;
  color: rgba(240,240,240,0.7);
}

.testimonial-card .author-name {
  font-size: 0.875rem;
  color: white;
  font-weight: 600;
}

.testimonial-card .author-role {
  font-size: 0.75rem;
  color: var(--color-white-35);
}

/* ========================================
   TECHNOLOGY SECTION
   ======================================== */
.tech-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.tech-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.tech-bg .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--color-bg), rgba(10,10,10,0.85), var(--color-bg));
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .tech-grid { grid-template-columns: repeat(2, 1fr); gap: 4rem; }
}

.scaleos-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  margin-bottom: 2rem;
}

.scaleos-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(0,245,255,0.2), rgba(182,255,0,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,245,255,0.1);
  color: var(--color-cyan);
}

.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.tech-pill {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid var(--color-white-08);
  background: var(--color-white-03);
  color: var(--color-white-60);
  transition: all 0.3s ease;
  cursor: default;
}

.tech-pill:hover {
  border-color: rgba(0,245,255,0.3);
  color: var(--color-cyan);
  background: rgba(0,245,255,0.05);
}

.tech-image {
  position: relative;
}

.tech-image img {
  border-radius: var(--radius);
  width: 100%;
}

.tech-image .img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--color-bg), transparent, transparent);
  opacity: 0.6;
  border-radius: var(--radius);
}

.tech-image .glow-1 {
  position: absolute;
  bottom: -2.5rem;
  right: -2.5rem;
  width: 15rem;
  height: 15rem;
  background: rgba(0,245,255,0.1);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.tech-image .glow-2 {
  position: absolute;
  top: -2.5rem;
  left: -2.5rem;
  width: 10rem;
  height: 10rem;
  background: rgba(182,255,0,0.08);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-card-wrapper {
  position: relative;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, rgba(182,255,0,0.3), var(--color-white-05), rgba(0,245,255,0.3));
  max-width: 48rem;
  margin: 0 auto;
}

.pricing-card-inner {
  background: var(--color-bg);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .pricing-card-inner { padding: 3rem; }
}

@media (min-width: 1024px) {
  .pricing-card-inner { padding: 4rem; }
}

.pricing-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .pricing-features { grid-template-columns: repeat(2, 1fr); }
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
}

.pricing-feature .feat-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.5rem;
  background: rgba(0,245,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-cyan);
}

.pricing-feature span {
  font-size: 0.875rem;
  color: var(--color-white-60);
}

.pricing-note {
  color: var(--color-white-30);
  font-size: 0.75rem;
  margin-top: 1rem;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.about-bg .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--color-bg), rgba(10,10,10,0.9), var(--color-bg));
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .about-grid { grid-template-columns: repeat(2, 1fr); gap: 5rem; }
}

.about-quote {
  border-left: 2px solid rgba(0,245,255,0.4);
  padding-left: 1.5rem;
}

.about-quote p {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  color: white;
  line-height: 1.3;
}

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

.team-card {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.team-card:hover { transform: translateY(-6px); }

.team-card.highlight {
  border-color: rgba(0,245,255,0.2);
  box-shadow: 0 0 25px rgba(0,245,255,0.08);
}

.team-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.team-avatar span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-bg);
}

.team-card h4 {
  font-size: 0.875rem;
  color: white;
  margin-bottom: 0.25rem;
}

.team-card .role {
  font-size: 0.75rem;
  color: var(--color-white-40);
}

.team-card .founder-tag {
  margin-top: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: rgba(0,245,255,0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--color-white-05);
  border-radius: var(--radius);
  padding: 0 1.5rem;
  transition: all 0.3s ease;
}

.faq-item.open {
  border-color: rgba(0,245,255,0.2);
  box-shadow: 0 0 20px rgba(0,245,255,0.05);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  color: white;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
  background: none;
  border: none;
}

.faq-item.open .faq-question { color: var(--color-cyan); }

.faq-question:hover { color: var(--color-cyan); }

.faq-question .chevron {
  transition: transform 0.3s ease;
  color: var(--color-white-40);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.open .faq-question .chevron {
  transform: rotate(180deg);
  color: var(--color-cyan);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  font-size: 0.875rem;
  color: var(--color-white-50);
  line-height: 1.7;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-card-wrapper {
  position: relative;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(to right, rgba(0,245,255,0.4), var(--color-white-10), rgba(182,255,0,0.4));
  max-width: 64rem;
  margin: 0 auto;
}

.contact-card-inner {
  background: var(--color-bg);
  border-radius: var(--radius);
  padding: 2rem;
}

@media (min-width: 768px) {
  .contact-card-inner { padding: 3rem; }
}

@media (min-width: 1024px) {
  .contact-card-inner { padding: 4rem; }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); gap: 4rem; }
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-detail svg { color: var(--color-cyan); flex-shrink: 0; }

.contact-detail span {
  font-size: 0.875rem;
  color: var(--color-white-60);
}

.contact-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-socials a {
  font-size: 0.75rem;
  color: var(--color-white-40);
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-socials a:hover { color: var(--color-cyan); }

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

.form-group label {
  display: block;
  font-size: 0.75rem;
  color: var(--color-white-40);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-white-08);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  color: white;
  font-size: 0.875rem;
  font-family: var(--font-body);
  transition: all 0.3s ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-white-20);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(0,245,255,0.4);
  box-shadow: 0 0 0 2px rgba(0,245,255,0.1);
}

.form-group textarea { resize: none; }

.btn-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 0.75rem;
  background: var(--color-cyan);
  color: var(--color-bg);
  font-weight: 700;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-submit:hover {
  box-shadow: 0 0 40px rgba(0,245,255,0.3);
  transform: scale(1.02);
}

.btn-submit svg {
  transition: transform 0.3s ease;
}

.btn-submit:hover svg {
  transform: translateX(4px);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  border-top: 1px solid var(--color-white-05);
  background: #050505;
}

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

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 2rem; }
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--color-white-40);
  line-height: 1.6;
  max-width: 24rem;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-socials a {
  font-size: 0.875rem;
  color: var(--color-white-30);
  transition: color 0.3s ease;
}

.footer-socials a:hover { color: var(--color-cyan); }

.footer-nav h4,
.footer-contact h4 {
  font-size: 0.875rem;
  color: white;
  margin-bottom: 1rem;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: var(--color-white-40);
  transition: color 0.3s ease;
}

.footer-nav a:hover { color: var(--color-cyan); }

.footer-contact span {
  display: block;
  font-size: 0.875rem;
  color: var(--color-white-40);
  margin-bottom: 0.625rem;
}

.footer-contact .btn-footer-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  background: rgba(0,245,255,0.1);
  color: var(--color-cyan);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.3s ease;
  margin-top: 1rem;
}

.footer-contact .btn-footer-cta:hover {
  background: rgba(0,245,255,0.2);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--color-white-05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; }
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--color-white-25);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.75rem;
  color: var(--color-white-25);
  transition: color 0.3s ease;
}

.footer-legal a:hover { color: var(--color-white-50); }

/* ========================================
   SECTION DIVIDER
   ======================================== */
.section-divider {
  max-width: 56rem;
  margin: 0 auto;
  height: 1px;
}

.section-divider.cyan {
  background: linear-gradient(to right, transparent, rgba(0,245,255,0.2), transparent);
}

.section-divider.lime {
  background: linear-gradient(to right, transparent, rgba(182,255,0,0.2), transparent);
}

.section-divider.fade {
  background: linear-gradient(to right, transparent, var(--color-white-08), transparent);
}

/* ========================================
   SCROLL TO TOP
   ======================================== */
.scroll-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(0,245,255,0.15);
  border: 1px solid rgba(0,245,255,0.25);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--color-cyan);
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-to-top.visible { display: flex; }

.scroll-to-top:hover {
  background: rgba(0,245,255,0.25);
  border-color: rgba(0,245,255,0.4);
  box-shadow: 0 0 20px rgba(0,245,255,0.2);
}

/* ========================================
   CURSOR GLOW (desktop only)
   ======================================== */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,245,255,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  display: none;
}

@media (min-width: 768px) {
  .cursor-glow { display: block; }
}

/* ========================================
   ANIMATIONS (Intersection Observer driven)
   ======================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }
.animate-on-scroll.delay-6 { transition-delay: 0.6s; }
.animate-on-scroll.delay-7 { transition-delay: 0.7s; }
.animate-on-scroll.delay-8 { transition-delay: 0.8s; }
.animate-on-scroll.delay-9 { transition-delay: 0.9s; }

/* Float animation for tech image */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* ========================================
   WORDPRESS ADMIN BAR FIX
   ======================================== */
body.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}
