/* ============================================================
   TECHUBIT THEME — MAIN STYLESHEET
   Premium Enterprise Technology Website
   ============================================================ */

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --primary:    #0F172A;
  --secondary:  #2563EB;
  --accent:     #38BDF8;
  --success:    #22C55E;
  --bg:         #FFFFFF;
  --surface:    #F8FAFC;
  --border:     #E2E8F0;
  --text:       #0F172A;
  --text-muted: #64748B;
  --text-light: #94A3B8;

  --font-sans:  'Inter', 'Manrope', system-ui, -apple-system, sans-serif;
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.10), 0 8px 16px rgba(0,0,0,0.06);
  --shadow-blue:0 12px 40px rgba(37,99,235,0.20);

  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --container:  1240px;
  --section-py: 100px;
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ── LAYOUT ────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: var(--section-py) 0;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { line-height: 1.15; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.75rem); }
h3 { font-size: 1.25rem; font-weight: 600; }
p  { color: var(--text-muted); line-height: 1.75; }

.text-gradient {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,99,235,0.35);
}
.btn-primary:hover {
  background: #1D4ED8;
  box-shadow: 0 8px 24px rgba(37,99,235,0.45);
  transform: translateY(-1px);
}
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-lg { padding: 15px 32px; font-size: 1rem; border-radius: var(--radius-lg); }
.btn-full { width: 100%; justify-content: center; }
.btn-glow { box-shadow: 0 0 0 0 rgba(37,99,235,0.4); }
.btn-glow:hover { animation: glowPulse 1.5s infinite; }

@keyframes glowPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,99,235,0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(37,99,235,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,99,235,0); }
}

/* ── SECTION HEADER ─────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.15);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title { color: var(--primary); margin-bottom: 20px; }
.section-desc  { font-size: 1.0625rem; color: var(--text-muted); }

/* ── ANIMATE ON SCROLL ──────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].animated {
  opacity: 1;
  transform: none;
}
[data-delay="80"]  { transition-delay: 80ms; }
[data-delay="100"] { transition-delay: 100ms; }
[data-delay="120"] { transition-delay: 120ms; }
[data-delay="150"] { transition-delay: 150ms; }
[data-delay="200"] { transition-delay: 200ms; }
[data-delay="240"] { transition-delay: 240ms; }
[data-delay="300"] { transition-delay: 300ms; }
[data-delay="400"] { transition-delay: 400ms; }
[data-delay="480"] { transition-delay: 480ms; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: all var(--transition);
}
.site-header.transparent { background: transparent; }
.site-header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 40px;
}

.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.site-logo img { height: 40px; width: auto; display: block; }
.site-logo .logo-dark  { display: none; }
.site-logo .logo-white { display: block; }
.site-header.scrolled .site-logo .logo-white { display: none; }
.site-header.scrolled .site-logo .logo-dark  { display: block; }

/* Custom logo (WP generated) handling */
.site-logo .custom-logo-link img { height: 40px; width: auto; }

.primary-nav { margin-left: auto; }
.primary-nav ul {
  display: flex;
  gap: 4px;
  align-items: center;
}
.primary-nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.85);
  transition: all var(--transition);
}
.primary-nav a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.scrolled .primary-nav a { color: var(--text-muted); }
.scrolled .primary-nav a:hover { color: var(--secondary); background: rgba(37,99,235,0.06); }
.primary-nav a.active { color: var(--secondary); }

.header-cta { margin-left: 12px; }
.scrolled .header-cta { /* stays blue */ }

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.scrolled .mobile-toggle span { background: var(--primary); }
.mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--primary);
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; margin-bottom: 20px; }
.mobile-nav a {
  display: block;
  padding: 12px 16px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.mobile-nav a:hover { color: #fff; background: rgba(255,255,255,0.08); }

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  min-height: 100vh;
  background: var(--primary);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(37,99,235,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(56,189,248,0.10) 0%, transparent 70%),
    linear-gradient(180deg, #0F172A 0%, #0D1B2E 100%);
}

/* Dot grid overlay */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

/* Particles */
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.4;
  animation: particleDrift 12s ease-in-out infinite;
}
.p1 { top:15%; left:10%; animation-delay:0s; width:4px; height:4px; }
.p2 { top:30%; left:80%; animation-delay:2s; }
.p3 { top:60%; left:20%; animation-delay:4s; width:5px; height:5px; opacity:0.3; }
.p4 { top:75%; left:75%; animation-delay:6s; }
.p5 { top:45%; left:50%; animation-delay:3s; width:2px; height:2px; }
.p6 { top:85%; left:40%; animation-delay:8s; width:4px; height:4px; opacity:0.25; }

@keyframes particleDrift {
  0%,100% { transform: translate(0,0) scale(1); opacity: 0.4; }
  33%      { transform: translate(10px,-15px) scale(1.3); opacity: 0.6; }
  66%      { transform: translate(-8px,10px) scale(0.8); opacity: 0.2; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 24px;
}

/* Hero content */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.3);
  color: var(--accent);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
  animation: fadeSlideDown 0.8s ease both;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--success);
  animation: pulseDot 2s ease infinite;
}
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 4px var(--success); }
  50%      { box-shadow: 0 0 12px var(--success); }
}

.hero-headline {
  color: #fff;
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeSlideUp 0.8s ease 0.15s both;
}

.hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 520px;
  animation: fadeSlideUp 0.8s ease 0.3s both;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeSlideUp 0.8s ease 0.45s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: fadeSlideUp 0.8s ease 0.6s both;
}
.stat { text-align: left; }
.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-num + span { color: var(--accent); font-size: 1.5rem; font-weight: 800; }
.stat-label { display: block; font-size: 0.8125rem; color: rgba(255,255,255,0.5); margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.12); }

/* Hero illustration */
.hero-visual { animation: fadeSlideUp 0.9s ease 0.3s both; }
.hero-illustration { position: relative; }
.tech-illustration { width: 100%; max-width: 560px; filter: drop-shadow(0 0 40px rgba(37,99,235,0.3)); }

/* Animated rings */
.pulse-ring  { animation: pulseRing 3s ease-in-out infinite; }
.pulse-ring-2{ animation: pulseRing 3s ease-in-out 1s infinite; }
@keyframes pulseRing {
  0%   { transform-origin:50% 50%; transform:scale(0.9); opacity:0.5; }
  50%  { transform:scale(1.1); opacity:0.15; }
  100% { transform:scale(0.9); opacity:0.5; }
}
@keyframes floatBadge {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1.2s both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: scaleY(1); opacity:0.5; }
  50%      { transform: scaleY(1.3); opacity:1; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: var(--surface); }

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

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  cursor: default;
}
.service-card:hover {
  border-color: rgba(37,99,235,0.25);
  box-shadow: 0 8px 32px rgba(37,99,235,0.10);
  transform: translateY(-4px);
}

.service-icon {
  width: 52px; height: 52px;
  background: rgba(37,99,235,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--secondary);
  transition: all var(--transition);
}
.service-icon svg { width: 24px; height: 24px; }
.service-card:hover .service-icon {
  background: var(--secondary);
  color: #fff;
}

.service-card h3 {
  color: var(--primary);
  font-size: 1.0625rem;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary);
  margin-top: 16px;
  transition: gap var(--transition);
}
.service-card:hover .service-link { gap: 10px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { background: var(--surface); }

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

.about-content .section-label { text-align: left; }
.about-content .section-title { text-align: left; }
.about-text {
  color: var(--text-muted);
  font-size: 1.0rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0 36px;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.pillar:hover { border-color: var(--secondary); box-shadow: var(--shadow-sm); }
.pillar-icon {
  width: 44px; height: 44px;
  background: rgba(37,99,235,0.07);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  flex-shrink: 0;
}
.pillar > div { display: flex; flex-direction: column; gap: 2px; }
.pillar strong { font-size: 0.9375rem; color: var(--primary); }
.pillar span   { font-size: 0.8125rem; color: var(--text-muted); }

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-placeholder { border-radius: var(--radius-xl); overflow: hidden; }
.about-placeholder svg { border-radius: var(--radius-xl); }

.about-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(15,23,42,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.about-badge svg { color: var(--accent); flex-shrink: 0; }
.about-badge strong { display: block; font-size: 0.875rem; }
.about-badge span   { font-size: 0.75rem; color: rgba(255,255,255,0.55); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--bg); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.why-card:hover {
  background: #fff;
  border-color: rgba(37,99,235,0.15);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.why-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--icon-color,#2563EB) 10%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--icon-color, var(--secondary));
  margin-bottom: 20px;
  transition: all var(--transition);
}
.why-icon svg { width: 24px; height: 24px; }
.why-card:hover .why-icon {
  background: var(--icon-color, var(--secondary));
  color: #fff;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--icon-color,#2563EB) 40%, transparent);
}

.why-card h3 { color: var(--primary); margin-bottom: 10px; font-size: 1.0625rem; }
.why-card p  { font-size: 0.9rem; color: var(--text-muted); }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries-section { background: var(--surface); }

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

.industry-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  cursor: default;
  transition: transform var(--transition);
}
.industry-card:hover { transform: translateY(-6px); }
.industry-bg {
  position: absolute;
  inset: 0;
  background: var(--card-bg, var(--card-thumb, linear-gradient(135deg,#1E293B,#0F172A)));
  background-size: cover;
  background-position: center;
  transition: transform var(--transition);
}
.industry-card:hover .industry-bg { transform: scale(1.04); }
/* Overlay */
.industry-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.9) 0%, rgba(15,23,42,0.3) 60%, transparent 100%);
}
.industry-content {
  position: relative;
  z-index: 2;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}
.industry-icon {
  width: 44px; height: 44px;
  background: rgba(37,99,235,0.25);
  border: 1px solid rgba(37,99,235,0.4);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: auto;
}
.industry-icon svg { width: 22px; height: 22px; }
.industry-content h3 { color: #fff; font-size: 1.1875rem; margin-bottom: 8px; }
.industry-content p  { color: rgba(255,255,255,0.65); font-size: 0.875rem; line-height: 1.6; }
.industry-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-section { background: var(--bg); }

.process-track {
  position: relative;
  display: flex;
  gap: 0;
  counter-reset: step;
}

.process-line {
  position: absolute;
  top: 32px;
  left: calc(16px + 32px);
  right: calc(16px + 32px);
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  opacity: 0.25;
}

.process-step {
  flex: 1;
  padding: 0 16px;
  text-align: center;
}

.step-number-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.step-number {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border);
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all var(--transition);
  letter-spacing: 0.05em;
}
.process-step:hover .step-number,
.process-step.active .step-number {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37,99,235,0.4);
  transform: scale(1.1);
}

.step-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  opacity: 0.3;
}

.step-body h3 { color: var(--primary); font-size: 1rem; margin-bottom: 8px; }
.step-body p  { font-size: 0.875rem; color: var(--text-muted); }

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
  position: relative;
  background: var(--primary);
  padding: var(--section-py) 0;
  overflow: hidden;
  text-align: center;
}
.cta-bg { position: absolute; inset: 0; }
.cta-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(37,99,235,0.15) 0%, transparent 70%),
    linear-gradient(180deg, #0F172A, #0D1B35 100%);
}
.cta-decoration {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.cta-icon {
  width: 72px; height: 72px;
  margin: 0 auto 28px;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.3);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.cta-section h2 { color: #fff; margin-bottom: 20px; }
.cta-section p  { color: rgba(255,255,255,0.65); font-size: 1.0625rem; margin-bottom: 44px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--surface); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-label { text-align: left; }
.contact-info .section-title { text-align: left; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.contact-info > p { margin-bottom: 40px; }

.contact-cards { display: flex; flex-direction: column; gap: 16px; }

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.contact-card:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.cc-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(37,99,235,0.07);
  color: var(--secondary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cc-green { background: rgba(34,197,94,0.08); color: #16a34a; }
.cc-blue  { background: rgba(37,99,235,0.08); color: var(--secondary); }
.contact-card div { display: flex; flex-direction: column; gap: 2px; }
.contact-card strong { font-size: 0.9375rem; color: var(--primary); }
.contact-card span  { font-size: 0.875rem; color: var(--text-muted); }

/* Form */
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-md);
}
.form-card h3 {
  font-size: 1.375rem;
  color: var(--primary);
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: 0.875rem; font-weight: 600; color: var(--primary); }
.form-group label span { color: var(--secondary); }

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  color: var(--primary);
  background: var(--surface);
  transition: all var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--secondary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 40px; }

.form-status {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 16px;
  display: none;
}
.form-status.success { background: rgba(34,197,94,0.08); color: #166534; border: 1px solid rgba(34,197,94,0.2); display: block; }
.form-status.error   { background: rgba(239,68,68,0.08); color: #991b1b; border: 1px solid rgba(239,68,68,0.2); display: block; }

@keyframes spin {
  to { transform: rotate(360deg); }
}
.spin { animation: spin 1s linear infinite; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #080F1E; }

.footer-top { padding: 80px 0 60px; }

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

.footer-brand img { margin-bottom: 20px; }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.9rem; line-height: 1.7; margin-bottom: 28px; }

.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}
.social-links a:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-col a:hover { color: #fff; }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
  line-height: 1.6;
}
.footer-contact svg { flex-shrink: 0; margin-top: 2px; color: rgba(255,255,255,0.3); }
.footer-contact a { color: rgba(255,255,255,0.45); }
.footer-contact a:hover { color: #fff; }
.footer-contact span { color: rgba(255,255,255,0.45); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   SHARED ANIMATIONS
   ============================================================ */
@keyframes fadeIn         { from { opacity:0; } to { opacity:1; } }
@keyframes fadeSlideUp    { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:none; } }
@keyframes fadeSlideDown  { from { opacity:0; transform:translateY(-16px); } to { opacity:1; transform:none; } }


/* ============================================================
   HERO TRUST BADGES
   ============================================================ */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.trust-item svg {
  color: #22C55E;
  flex-shrink: 0;
}

/* ============================================================
   STATS / FEATURES SECTION
   ============================================================ */
.stats-section { background: var(--surface); }

.stats-features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.stat-feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
}
.stat-feature:hover {
  border-color: rgba(37,99,235,0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.stat-feature-icon {
  width: 52px; height: 52px;
  background: rgba(37,99,235,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--secondary);
  transition: all var(--transition);
}
.stat-feature-icon svg { width: 22px; height: 22px; }
.stat-feature:hover .stat-feature-icon {
  background: var(--secondary);
  color: #fff;
}
.stat-feature h3 {
  font-size: 0.9375rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.stat-feature p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================================
   PROCESS SECTION (redesigned)
   ============================================================ */
.process-section { background: var(--bg); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.step-number {
  width: 60px; height: 60px;
  background: var(--secondary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}
.process-step:hover .step-number {
  background: var(--primary);
  transform: scale(1.08);
}

.step-connector {
  position: absolute;
  top: 30px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), rgba(37,99,235,0.2));
  z-index: 0;
}

.process-step h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid     { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stats-features-grid { grid-template-columns: repeat(3, 1fr); }
  .process-steps     { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .why-grid          { grid-template-columns: repeat(2, 1fr); }
  .industries-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-inner        { gap: 48px; }
}

@media (max-width: 900px) {
  :root { --section-py: 72px; }
  .hero-inner        { grid-template-columns: 1fr; padding: 60px 24px; }
  .hero-visual       { display: none; }
  .about-inner       { grid-template-columns: 1fr; gap: 48px; }
  .contact-inner     { grid-template-columns: 1fr; gap: 48px; }
  .process-track     { flex-direction: column; gap: 24px; }
  .process-line      { display: none; }
  .process-step      { text-align: left; display: flex; gap: 20px; align-items: flex-start; }
  .step-number-wrap  { flex-direction: row; margin-bottom: 0; }
  .step-dot          { display: none; }
  .about-visual      { order: -1; }
}

@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.75rem; }
  .primary-nav, .header-cta { display: none; }
  .mobile-toggle { display: flex; }
  .services-grid    { grid-template-columns: 1fr; }
  .why-grid         { grid-template-columns: 1fr; }
  .industries-grid  { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr; gap: 32px; }
  .form-row         { grid-template-columns: 1fr; }
  .form-card        { padding: 28px 20px; }
  .hero-stats       { flex-wrap: wrap; gap: 20px; }
  .stat-divider     { display: none; }
  .hero-ctas        { flex-direction: column; }
  .hero-trust       { gap: 12px; }
  .stats-features-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps    { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .step-connector   { display: none; }
  .cta-actions      { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .container        { padding: 0 16px; }
  .service-card     { padding: 24px 20px; }
  .services-grid    { grid-template-columns: 1fr; }
  .section-header   { margin-bottom: 48px; }
  .stats-features-grid { grid-template-columns: 1fr; }
  .process-steps    { grid-template-columns: 1fr; }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
  border-radius: 4px;
}
.skip-link {
  position: absolute;
  top: -40px; left: 16px;
  background: var(--secondary);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 8px; }

/* Print */
@media print {
  .site-header, .hero-particles, .mobile-nav { display: none; }
  body { color: #000; }
}
