/* ============================================
   PowerMany — Modern Design System 2026
   ============================================ */

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

/* --- CSS Custom Properties --- */
:root {
  --bg: #080d1a;
  --bg-secondary: #0c1530;
  --surface: rgba(255,255,255,0.06);
  --surface-elevated: rgba(255,255,255,0.10);
  --surface-glass: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.10);
  --border-light: rgba(255,255,255,0.18);
  --text: #f5f6f8;
  --text-secondary: #a0aabb;
  --text-muted: #6b7a90;
  --accent: #3b82f6;
  --accent-light: #60a5fa;
  --accent-glow: rgba(59,130,246,0.25);
  --accent-2: #06b6d4;
  --accent-3: #8b5cf6;
  --gradient-primary: linear-gradient(135deg, #3b82f6, #06b6d4);
  --gradient-warm: linear-gradient(135deg, #f59e0b, #ef4444);
  --gradient-cool: linear-gradient(135deg, #8b5cf6, #3b82f6);
  --gradient-mesh: radial-gradient(at 20% 80%, rgba(59,130,246,0.15) 0%, transparent 50%),
                   radial-gradient(at 80% 20%, rgba(6,182,212,0.1) 0%, transparent 50%),
                   radial-gradient(at 50% 50%, rgba(139,92,246,0.08) 0%, transparent 50%);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 40px rgba(59,130,246,0.2);
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  --header-h: 72px;
  --container-max: 1280px;
  --container-narrow: 960px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; color: inherit; border: none; background: none; outline: none; }

/* --- Utility --- */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 32px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-cool {
  background: var(--gradient-cool);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Background Effects --- */
.mesh-bg {
  position: fixed;
  inset: 0;
  background: var(--gradient-mesh);
  pointer-events: none;
  z-index: 0;
}
.noise-overlay {
  position: fixed;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 256px;
  pointer-events: none;
  z-index: 0;
}
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
  color: var(--accent-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}
.section-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 640px;
  line-height: 1.7;
}

/* --- Header / Nav --- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  transition: var(--transition-base);
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5,10,20,0.7);
  backdrop-filter: saturate(1.4) blur(20px);
  -webkit-backdrop-filter: saturate(1.4) blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition-base);
}
.site-header.scrolled::before {
  background: rgba(5,10,20,0.9);
  border-bottom-color: var(--border-light);
}
.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  z-index: 1;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}
.logo img {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}
.logo span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: var(--surface-elevated);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}
.nav-cta {
  padding: 8px 20px !important;
  background: var(--gradient-primary) !important;
  color: #fff !important;
  font-weight: 600 !important;
  box-shadow: 0 2px 12px var(--accent-glow);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px var(--accent-glow) !important; }

/* Mobile nav */
.mobile-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--surface-elevated);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mobile-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--text);
  position: relative;
  transition: var(--transition-fast);
}
.mobile-toggle span::before,
.mobile-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%; height: 100%;
  background: var(--text);
  transition: var(--transition-fast);
}
.mobile-toggle span::before { top: -6px; }
.mobile-toggle span::after { top: 6px; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 16px var(--accent-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: var(--transition-fast);
}
.btn-primary:hover::after { opacity: 1; }
.btn-secondary {
  background: var(--surface-elevated);
  color: var(--text);
  border: 1px solid var(--border-light);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-1px);
}
.btn-ghost {
  color: var(--accent-light);
  padding: 8px 0;
}
.btn-ghost:hover { color: #fff; }
.btn-ghost svg { transition: var(--transition-fast); }
.btn-ghost:hover svg { transform: translateX(4px); }
.btn-icon {
  width: 48px; height: 48px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* --- Cards --- */
.card {
  background: rgba(15,22,42,0.8);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-base);
}
.card:hover {
  border-color: rgba(255,255,255,0.25);
  background: rgba(20,30,55,0.9);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card-glass {
  background: var(--surface-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.card-glow {
  position: relative;
}
.card-glow::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition-base);
  z-index: -1;
}
.card-glow:hover::before { opacity: 0.3; filter: blur(8px); }

/* --- Image treatment --- */
.img-wrapper {
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
}
.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.img-wrapper:hover img { transform: scale(1.05); }
.img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5,10,20,0.8) 100%);
}
.img-overlay-full {
  position: absolute;
  inset: 0;
  background: rgba(5,10,20,0.4);
}

/* --- Sections --- */
.section {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}
.section-lg { padding: 160px 0; }
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  margin: 0 auto;
  max-width: 800px;
}

/* --- Stats / Counters --- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item {
  text-align: center;
  padding: 32px 16px;
  border-radius: var(--radius-lg);
  background: rgba(15,22,42,0.8);
  border: 1px solid var(--border-light);
  transition: var(--transition-base);
}
.stat-item:hover { border-color: var(--accent); box-shadow: var(--shadow-glow); }
.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { color: var(--text-secondary); font-size: 0.9rem; }

/* --- Feature Grid --- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  padding: 32px;
}
.feature-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.15);
}
.feature-card h3 { margin-bottom: 10px; color: var(--text); }
.feature-card p { color: var(--text-secondary); font-size: 0.95rem; }

/* --- Bento Grid --- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.bento-item { border-radius: var(--radius-lg); overflow: hidden; }
.bento-item.span-8 { grid-column: span 8; }
.bento-item.span-6 { grid-column: span 6; }
.bento-item.span-4 { grid-column: span 4; }
.bento-item.span-3 { grid-column: span 3; }
.bento-item.row-2 { grid-row: span 2; }

/* --- Service Cards --- */
.service-card {
  padding: 0;
  position: relative;
}
.service-card .service-img {
  height: 220px;
  overflow: hidden;
}
.service-card .service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.service-card:hover .service-img img { transform: scale(1.08); }
.service-card .service-body {
  padding: 28px;
}
.service-card .service-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(59,130,246,0.1);
  color: var(--accent-light);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 16px; }
.service-card ul { margin-bottom: 20px; }
.service-card li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}
.service-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* --- Testimonial --- */
.testimonial-card {
  padding: 40px;
  position: relative;
}
.testimonial-card .quote-mark {
  font-size: 4rem;
  line-height: 1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.testimonial-card blockquote {
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-card .author { display: flex; align-items: center; gap: 12px; }
.testimonial-card .author-info .name { font-weight: 600; }
.testimonial-card .author-info .role { color: var(--text-secondary); font-size: 0.85rem; }

/* --- Process / Timeline --- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 36px; right: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
  opacity: 0.3;
}
.process-step { text-align: center; position: relative; }
.step-number {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--bg);
  border: 2px solid var(--accent);
  color: var(--accent-light);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 24px var(--accent-glow);
}
.process-step h3 { margin-bottom: 8px; font-size: 1.1rem; }
.process-step p { color: var(--text-secondary); font-size: 0.9rem; }

/* --- Map Section --- */
.map-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 21/9;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
}
.map-visual img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.map-dots {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.map-dot {
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent-glow);
  animation: pulse-dot 2s ease-in-out infinite;
}
.map-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  animation: pulse-ring 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.2); } }
@keyframes pulse-ring { 0%, 100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(2); opacity: 0; } }

/* --- Trade Lanes --- */
.lane-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: var(--transition-fast);
}
.lane-row:hover { border-color: var(--accent); background: var(--surface-elevated); }
.lane-flag { font-size: 1.5rem; }
.lane-arrow { color: var(--accent); font-size: 0.8rem; }
.lane-info { flex: 1; }
.lane-info .route { font-weight: 600; font-size: 0.95rem; }
.lane-info .modes { color: var(--text-secondary); font-size: 0.8rem; }

/* --- Contact Form --- */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.form-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}
.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  background: var(--surface-elevated);
}
.form-input::placeholder { color: var(--text-muted); }
textarea.form-input { min-height: 140px; resize: vertical; border-radius: var(--radius-md); }

/* --- Footer --- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
  background: var(--bg-secondary);
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { color: var(--text-secondary); font-size: 0.9rem; margin-top: 16px; max-width: 300px; }
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  padding: 4px 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}
.footer-col a:hover { color: var(--accent-light); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
}
.footer-offices {
  display: flex;
  gap: 24px;
}
.footer-offices span { display: flex; align-items: center; gap: 6px; }

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Marquee --- */
.marquee-wrap {
  overflow: hidden;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
}
.marquee-item .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Hero specific --- */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--header-h);
  overflow: hidden;
}
.hero-section .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-section .hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.15;
}
.hero-section .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(5,10,20,0.6) 40%, var(--bg) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-content h1 { margin-bottom: 24px; }
.hero-content h1 .line { display: block; }
.hero-content .subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.85rem;
}
.hero-badge .icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.hero-visual {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  z-index: 1;
}
.hero-visual .hero-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.hero-visual .hero-img-wrap img {
  width: 100%; height: auto;
  display: block;
}
.hero-float-card {
  position: absolute;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(5,10,20,0.7);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  animation: float 6s ease-in-out infinite;
}
.hero-float-card.card-1 { bottom: 10%; left: -10%; animation-delay: 0s; }
.hero-float-card.card-2 { top: 15%; right: -5%; animation-delay: 2s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.float-stat { font-size: 1.5rem; font-weight: 800; color: var(--accent-light); }
.float-label { font-size: 0.8rem; color: var(--text-secondary); }

/* --- Page Hero (for inner pages) --- */
.page-hero {
  padding: 160px 0 100px;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(59,130,246,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { margin-bottom: 20px; position: relative; }
.page-hero .section-desc { margin: 0 auto; position: relative; }

/* --- Accordion --- */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  overflow: hidden;
  transition: var(--transition-base);
}
.accordion-item:hover { border-color: var(--border-light); }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  background: var(--surface);
  transition: var(--transition-fast);
  text-align: left;
}
.accordion-trigger:hover { background: var(--surface-elevated); }
.accordion-trigger .icon { transition: var(--transition-base); }
.accordion-item.open .accordion-trigger .icon { transform: rotate(45deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.accordion-item.open .accordion-body { max-height: 500px; }
.accordion-body-inner { padding: 0 24px 20px; color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }

/* --- CTA Banner --- */
.cta-banner {
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
}
.cta-banner h2 { color: #fff; margin-bottom: 16px; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 32px; font-size: 1.1rem; position: relative; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-banner .btn { position: relative; background: #fff; color: var(--accent); font-weight: 700; }
.cta-banner .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }

/* --- Industries Grid --- */
.industry-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}
.industry-tag:hover { border-color: var(--accent); color: var(--accent-light); background: var(--surface-elevated); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .bento-item.span-8, .bento-item.span-6, .bento-item.span-4, .bento-item.span-3 { grid-column: span 6; }
}
@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }
  .section-lg { padding: 100px 0; }
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(5,10,20,0.95);
    backdrop-filter: blur(20px);
    padding: 16px;
    border-bottom: 1px solid var(--border);
  }
  .feature-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-offices { flex-wrap: wrap; justify-content: center; }
  .bento-item.span-8, .bento-item.span-6, .bento-item.span-4, .bento-item.span-3 { grid-column: span 12; }
  .page-hero { padding: 120px 0 80px; }
  .cta-banner { padding: 48px 24px; }
  .hero-badges { flex-direction: column; gap: 12px; }
  h1 { font-size: clamp(2rem, 8vw, 3rem); }
}
