/*
Theme Name: Borg Theme v2
Theme URI: https://borg.hr
Author: Borg d.o.o.
Author URI: https://borg.hr
Description: Futuristic dark theme for Borg d.o.o. - Croatian IT company. Features glassmorphism cards, animated orbs, cyan-green gradient palette, and a polished tech aesthetic.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: borg-theme-v2
Tags: dark, technology, glassmorphism, futuristic, one-page, custom-background
*/

/* =============================================
   CSS CUSTOM PROPERTIES
   ============================================= */

:root {
  --bg:             #060d1a;
  --bg2:            #0a1628;
  --bg3:            #0d1f3c;
  --cyan:           #00e5ff;
  --green:          #00ffa3;
  --blue:           #0050ff;
  --grad:           linear-gradient(135deg, #00e5ff 0%, #00ffa3 100%);
  --grad-rev:       linear-gradient(135deg, #00ffa3 0%, #00e5ff 100%);
  --grad-dark:      linear-gradient(135deg, #0a1628 0%, #060d1a 100%);
  --grad-blue:      linear-gradient(135deg, #0050ff 0%, #00e5ff 100%);
  --text:           #cde8f0;
  --text-bright:    #e8f4f8;
  --muted:          #6b8a99;
  --card-bg:        rgba(0, 229, 255, 0.03);
  --card-border:    rgba(0, 229, 255, 0.12);
  --card-border-h:  rgba(0, 229, 255, 0.35);
  --glow:           0 0 30px rgba(0, 229, 255, 0.15);
  --glow-strong:    0 0 60px rgba(0, 229, 255, 0.25);
  --glow-green:     0 0 30px rgba(0, 255, 163, 0.15);
  --nav-height:     70px;
  --radius:         12px;
  --radius-lg:      20px;
  --radius-xl:      32px;
  --transition:     0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head:      'Oxanium', 'Segoe UI', sans-serif;
  --font-body:      'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
}

/* =============================================
   RESET & BASE
   ============================================= */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* =============================================
   ANIMATED BACKGROUND LAYERS
   ============================================= */

/* Animated mesh gradient layer */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(0, 229, 255, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 90%, rgba(0, 255, 163, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(0, 80, 255, 0.04) 0%, transparent 70%);
  animation: meshShift 18s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes meshShift {
  0%   { opacity: 1; transform: scale(1) rotate(0deg); }
  50%  { opacity: 0.75; transform: scale(1.08) rotate(1deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

/* Grid dot overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(circle, rgba(0, 229, 255, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 0.25; }
}

/* =============================================
   FLOATING ORBS
   ============================================= */

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.orb1 {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, #00e5ff 0%, #0050ff 100%);
  top: -220px;
  left: -220px;
  animation: orbFloat1 20s ease-in-out infinite;
}

.orb2 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, #00ffa3 0%, #00e5ff 100%);
  bottom: -160px;
  right: -160px;
  animation: orbFloat2 25s ease-in-out infinite;
}

.orb3 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #0050ff 0%, #00e5ff 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbFloat3 30s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(120px, 60px) scale(1.1); }
  66%       { transform: translate(60px, 120px) scale(0.95); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-100px, -80px) scale(1.05); }
  66%       { transform: translate(-60px, -130px) scale(0.9); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  33%       { transform: translate(calc(-50% + 80px), calc(-50% + 60px)) scale(1.15); }
  66%       { transform: translate(calc(-50% - 40px), calc(-50% + 80px)) scale(0.95); }
}

/* =============================================
   PARTICLES CANVAS
   ============================================= */

#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-bright);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
}

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

a:hover { color: var(--green); }

ul { list-style: none; }

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

/* =============================================
   UTILITY CLASSES
   ============================================= */

/* Gradient text */
.gradient-text,
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-blue {
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.text-center { text-align: center; }
.text-muted { color: var(--muted); }

/* Glowing separator line */
.glow-line {
  width: 80px;
  height: 3px;
  background: var(--grad);
  border-radius: 2px;
  margin: 0 auto 2rem;
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.5), 0 0 24px rgba(0, 255, 163, 0.3);
  position: relative;
}

.glow-line::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.3), transparent);
}

.glow-line-left {
  margin: 0 0 2rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.2);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-children.visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }

/* =============================================
   NAVIGATION
   ============================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

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

/* Transparent by default, glass on scroll */
.site-header.scrolled {
  background: rgba(6, 13, 26, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(0, 229, 255, 0.12), var(--glow);
  border-bottom: 1px solid rgba(0, 229, 255, 0.08);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  background: transparent;
  transition: transform var(--transition);
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.05);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--text-bright);
}

.nav-logo-tagline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  opacity: 0.8;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: all var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--grad);
  border-radius: 1px;
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--cyan);
  background: rgba(0, 229, 255, 0.05);
  border-color: rgba(0, 229, 255, 0.12);
}

.nav-links a:hover::after {
  width: calc(100% - 32px);
}

.nav-links .nav-cta a {
  background: var(--grad);
  color: #060d1a;
  font-weight: 700;
  border: none;
  box-shadow: var(--glow);
}

.nav-links .nav-cta a::after { display: none; }

.nav-links .nav-cta a:hover {
  transform: translateY(-1px);
  box-shadow: var(--glow-strong);
  color: #060d1a;
  background: var(--grad-rev);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1010;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cyan);
  border-radius: 1px;
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =============================================
   HERO SECTION
   ============================================= */

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/wp-content/uploads/borg/hero-tech.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.04;
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

.hero-content { position: relative; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.3s forwards;
}

.hero-eyebrow::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--grad);
  border-radius: 1px;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.5s forwards;
}

.hero-title .line1 {
  display: block;
  color: var(--text-bright);
}

.hero-title .line2 {
  display: block;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 480px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.7s forwards;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.9s forwards;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 229, 255, 0.1);
  opacity: 0;
  animation: fadeInUp 0.8s ease 1.1s forwards;
}

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

.hero-stat-number {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* Hero visual side */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-self: center;
  opacity: 0;
  animation: fadeInScale 1s ease 0.6s forwards;
}

.hero-device {
  position: relative;
  width: 380px;
  height: 380px;
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: ringRotate linear infinite;
}

.hero-ring-1 {
  inset: 0;
  border-color: rgba(0, 229, 255, 0.2);
  animation-duration: 20s;
}

.hero-ring-2 {
  inset: 30px;
  border-color: rgba(0, 255, 163, 0.15);
  border-style: dashed;
  animation-duration: 30s;
  animation-direction: reverse;
}

.hero-ring-3 {
  inset: 60px;
  border-color: rgba(0, 80, 255, 0.2);
  animation-duration: 15s;
}

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

.hero-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  background: var(--grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow-strong), 0 0 80px rgba(0, 255, 163, 0.2), 0 0 120px rgba(0, 229, 255, 0.15);
  animation: corePulse 4s ease-in-out infinite;
}

.hero-core-img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  transform: rotate(-90deg);
  filter: brightness(0);
}

@keyframes corePulse {
  0%, 100% { box-shadow: var(--glow-strong), 0 0 80px rgba(0, 255, 163, 0.2), 0 0 120px rgba(0, 229, 255, 0.15); transform: translate(-50%, -50%) scale(1); }
  50%       { box-shadow: 0 0 80px rgba(0, 229, 255, 0.4), 0 0 120px rgba(0, 255, 163, 0.35), 0 0 180px rgba(0, 229, 255, 0.2); transform: translate(-50%, -50%) scale(1.04); }
}

/* Orbit dots */
.hero-orbit-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--grad);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--cyan);
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
  from { opacity: 0; transform: translateY(20px); }
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}

/* =============================================
   SECTIONS
   ============================================= */

section {
  position: relative;
  z-index: 1;
}

.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--bg);
}

.section-light {
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
}

.section-alt {
  background: var(--bg2);
}

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

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

/* =============================================
   CTA STRIP
   ============================================= */

.cta-strip {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.06) 0%, rgba(0, 255, 163, 0.06) 100%);
  border-top: 1px solid rgba(0, 229, 255, 0.1);
  border-bottom: 1px solid rgba(0, 229, 255, 0.1);
  padding: 80px 0;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(0, 229, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-strip h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 0.5rem;
}

.cta-strip p {
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.cta-strip-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

/* =============================================
   PAGE HERO
   ============================================= */

.page-hero {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-height) + 60px) 0 60px;
  text-align: center;
  border-bottom: 1px solid rgba(0, 229, 255, 0.08);
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.03) 0%, transparent 100%);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/wp-content/uploads/borg/server-room.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: -1;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

/* =============================================
   GLASSMORPHISM CARDS
   ============================================= */

.card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition);
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.4), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover {
  border-color: var(--card-border-h);
  box-shadow: var(--glow), 0 20px 60px rgba(0, 0, 0, 0.4);
  transform: translateY(-4px);
}

.card:hover::before {
  opacity: 1;
}

/* Service Cards */
.service-card {
  position: relative;
  background: rgba(0, 229, 255, 0.025);
  border: 1px solid rgba(0, 229, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.05) 0%, rgba(0, 255, 163, 0.03) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.service-card:hover {
  border-color: rgba(0, 229, 255, 0.3);
  box-shadow: var(--glow), 0 24px 64px rgba(0, 0, 0, 0.5);
  transform: translateY(-6px);
}

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

.service-card .card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(0, 255, 163, 0.1));
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: all var(--transition);
}

.service-card:hover .card-icon {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.25), rgba(0, 255, 163, 0.15));
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
  transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--text-bright);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Value Cards */
.value-card {
  background: rgba(0, 229, 255, 0.02);
  border: 1px solid rgba(0, 229, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--grad);
  border-radius: 0 0 4px 4px;
  opacity: 0;
  transition: opacity var(--transition);
}

.value-card:hover {
  border-color: rgba(0, 229, 255, 0.2);
  box-shadow: var(--glow);
  transform: translateY(-4px);
}

.value-card:hover::before { opacity: 1; }

.value-card .value-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}

.value-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text-bright);
}

.value-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* =============================================
   GRIDS
   ============================================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* About visual — 2x2 stat grid over photo */
.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 64px;
  background-image: url('/wp-content/uploads/borg/about-team.jpg');
  background-size: cover;
  background-position: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,13,26,0.82) 0%, rgba(6,13,26,0.75) 100%);
  z-index: 0;
}

.about-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  pointer-events: none;
  z-index: 1;
}

/* Each stat card inside about-visual */
.about-visual .about-stat {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 20px;
  background: rgba(0, 229, 255, 0.04);
  border: 1px solid rgba(0, 229, 255, 0.12);
  border-radius: var(--radius);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}

.about-visual .about-stat:hover {
  border-color: rgba(0, 229, 255, 0.3);
  box-shadow: var(--glow);
  transform: translateY(-3px);
}

.about-visual .about-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 6px;
}

.about-visual .about-stat span {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

/* =============================================
   STATS
   ============================================= */

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

.stat-card {
  background: rgba(0, 229, 255, 0.03);
  border: 1px solid rgba(0, 229, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
}

.stat-card:hover {
  border-color: rgba(0, 229, 255, 0.25);
  box-shadow: var(--glow);
  transform: translateY(-3px);
}

.stat-number {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.4rem;
}

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

/* About stat inline */
.about-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(0, 229, 255, 0.03);
  border: 1px solid rgba(0, 229, 255, 0.08);
  border-radius: var(--radius);
  margin-bottom: 12px;
}

.about-stat-number {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  min-width: 60px;
}

.about-stat-text {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.4;
}

/* =============================================
   CHECK LIST
   ============================================= */

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 2rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}

.check-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--cyan);
  font-weight: 700;
  margin-top: 2px;
}

/* =============================================
   SERVICE FULL CARD (for services page)
   ============================================= */

.service-full-card {
  background: rgba(0, 229, 255, 0.02);
  border: 1px solid rgba(0, 229, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-full-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--grad);
  border-radius: 0 0 4px 0;
  transition: height 0.4s ease;
}

.service-full-card:hover {
  border-color: rgba(0, 229, 255, 0.2);
  box-shadow: var(--glow), 0 32px 80px rgba(0, 0, 0, 0.4);
  transform: translateY(-4px);
}

.service-full-card:hover::before {
  height: 100%;
}

.service-full-card .service-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 1.5rem;
}

.service-full-card .service-num {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--cyan);
  opacity: 0.5;
}

.service-full-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-full-card p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* =============================================
   CONTACT
   ============================================= */

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(0, 229, 255, 0.03);
  border: 1px solid rgba(0, 229, 255, 0.08);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.contact-item:hover {
  border-color: rgba(0, 229, 255, 0.2);
  box-shadow: var(--glow);
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.12), rgba(0, 255, 163, 0.08));
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 0.95rem;
  color: var(--text);
}

/* Contact Form */
.contact-form {
  background: rgba(0, 229, 255, 0.02);
  border: 1px solid rgba(0, 229, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 40px;
}

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

.contact-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: rgba(0, 229, 255, 0.03);
  border: 1px solid rgba(0, 229, 255, 0.12);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: all var(--transition);
  appearance: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(0, 229, 255, 0.4);
  background: rgba(0, 229, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.08), var(--glow);
}

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

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

/* =============================================
   BUTTONS
   ============================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::before { opacity: 1; }

/* Primary gradient button */
.btn-primary {
  background: var(--grad);
  color: #060d1a;
  box-shadow: var(--glow), 0 4px 24px rgba(0, 229, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-strong), 0 8px 32px rgba(0, 229, 255, 0.35);
  color: #060d1a;
}

.btn-primary:active {
  transform: translateY(0);
}

/* Outline button */
.btn-outline {
  background: transparent;
  color: var(--cyan);
  border: 1px solid rgba(0, 229, 255, 0.4);
  box-shadow: inset 0 0 0 0 rgba(0, 229, 255, 0.1);
}

.btn-outline:hover {
  background: rgba(0, 229, 255, 0.08);
  border-color: var(--cyan);
  box-shadow: var(--glow);
  color: var(--cyan);
  transform: translateY(-2px);
}

/* White button */
.btn-white {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
  transform: translateY(-2px);
}

/* Dark button */
.btn-dark {
  background: rgba(6, 13, 26, 0.8);
  color: var(--text);
  border: 1px solid rgba(0, 229, 255, 0.15);
}

.btn-dark:hover {
  background: rgba(6, 13, 26, 0.95);
  border-color: rgba(0, 229, 255, 0.35);
  color: var(--cyan);
  transform: translateY(-2px);
}

/* Large buttons */
.btn-lg {
  padding: 16px 36px;
  font-size: 0.78rem;
}

/* =============================================
   FOOTER
   ============================================= */

.site-footer {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, var(--bg2) 0%, #030810 100%);
  border-top: 1px solid rgba(0, 229, 255, 0.08);
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0.4;
}

.site-footer::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.04) 0%, transparent 100%);
  pointer-events: none;
}

.footer-main {
  padding: 80px 0 48px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 1.25rem;
}

.footer-logo-icon {
  background: transparent;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.footer-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.footer-logo-text .logo-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--text-bright);
  line-height: 1.1;
}

.footer-logo-text .logo-tag {
  font-size: 0.62rem;
  color: var(--cyan);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(0, 229, 255, 0.06);
  border: 1px solid rgba(0, 229, 255, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: none;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: rgba(0, 229, 255, 0.12);
  border-color: rgba(0, 229, 255, 0.3);
  color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: var(--glow);
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--grad);
  border-radius: 1px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--muted);
  text-decoration: none;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a::before {
  content: '›';
  color: var(--cyan);
  opacity: 0;
  transform: translateX(-4px);
  transition: all var(--transition);
  font-size: 1rem;
}

.footer-col ul li a:hover {
  color: var(--text);
}

.footer-col ul li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-contact-item .fi-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--cyan);
  opacity: 0.7;
}

.footer-contact-item a {
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition);
}

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

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(0, 229, 255, 0.06);
  padding: 20px 0;
  position: relative;
  z-index: 1;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-copyright {
  font-size: 0.82rem;
  color: var(--muted);
}

.footer-copyright span {
  color: var(--cyan);
  opacity: 0.7;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition);
}

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

/* =============================================
   TECH BADGE / PILL
   ============================================= */

.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--cyan);
  background: rgba(0, 229, 255, 0.07);
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: 50px;
  padding: 4px 12px;
  transition: all var(--transition);
}

.tech-pill:hover {
  background: rgba(0, 229, 255, 0.12);
  border-color: rgba(0, 229, 255, 0.3);
}

.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1.25rem;
}

/* =============================================
   SCROLLBAR
   ============================================= */

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 229, 255, 0.2);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 229, 255, 0.4);
}

/* =============================================
   MAIN CONTENT WRAPPER
   ============================================= */

#main {
  position: relative;
  z-index: 1;
}

/* =============================================
   WORDPRESS ALIGNMENT CLASSES
   ============================================= */

.alignleft  { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 0 auto 1rem; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--muted); text-align: center; margin-top: 0.5rem; }

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 100px 24px 60px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-strip-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-strip-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 13, 26, 0.97);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 1005;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1rem;
    padding: 12px 24px;
  }

  .nav-toggle {
    display: flex;
    z-index: 1010;
    position: relative;
  }

  .section { padding: 64px 0; }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .services-full-grid {
    grid-template-columns: 1fr;
  }

  .stat-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form {
    padding: 24px 20px;
  }

  .orb1 { width: 300px; height: 300px; opacity: 0.08; }
  .orb2 { width: 250px; height: 250px; opacity: 0.08; }
  .orb3 { width: 200px; height: 200px; opacity: 0.06; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn { width: 100%; justify-content: center; }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .stat-row {
    grid-template-columns: 1fr 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* =============================================
   PADDING & SPACING FIXES
   ============================================= */

/* Buttons after text need breathing room */
.entry-content .btn,
.about-content .btn,
p + .btn,
ul + .btn,
.check-list + .btn {
  margin-top: 2rem;
  display: inline-block;
}

/* Section spacing inside entry-content */
.entry-content > section,
.entry-content .section {
  padding-left: 0;
  padding-right: 0;
}

/* Image padding in about section */
.about-visual {
  padding: 0;
}

/* Service card icons need spacing from title */
.service-card .service-icon,
.service-full-card .service-icon {
  margin-bottom: 1rem;
  display: block;
}

/* CTA strip inner spacing */
.cta-inner,
.cta-strip-inner {
  gap: 32px;
  padding: 20px 0;
}

/* =============================================
   COMPATIBILITY: Legacy class aliases
   (content imported from old theme)
   ============================================= */

/* Fix double container: .container > .hero-inner */
.container > .hero-inner {
  max-width: none;
  margin: 0;
  padding: 60px 0;
}

/* .hero-badge = .hero-eyebrow */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--grad);
  border-radius: 1px;
  flex-shrink: 0;
}

/* .hero-actions = .hero-buttons */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 2.5rem;
}

/* .overline = .section-label */
.overline {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}

/* Stat card text fix */
.stat-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 4px;
}

/* About stat fix */
.about-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section header .section-header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--muted); font-size: 1.05rem; }
