/* ============================================================
   BARREL CODERS NEXTGEN — HOMEPAGE CSS
   Hero, Trust Band, Services, Why Us, Portfolio, Tech, Process
============================================================ */

/* ──── HERO SECTION ──── */
.hero {
  min-height: 80vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 120px 24px 40px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-cyan);
  padding: 8px 16px;
  border: 1px solid rgba(76, 201, 240, 0.3);
  border-radius: 100px;
  background: rgba(76, 201, 240, 0.06);
  margin-bottom: 24px;
  width: fit-content;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-cyan);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--c-text-primary);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.75;
  color: var(--c-text-muted);
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 24px 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  max-width: 560px;
}

.hero-stat {
  flex: 1;
  min-width: 80px;
  text-align: center;
  padding: 0 8px;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-plus {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-cyan);
}

.stat-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--c-border);
  flex-shrink: 0;
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 48px;
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.hero-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 80px rgba(0, 87, 255, 0.12);
  position: relative;
  z-index: 1;
}

.hero-img-glow {
  position: absolute;
  inset: -20px;
  border-radius: var(--radius-xl);
  background: radial-gradient(ellipse at center, rgba(0, 87, 255, 0.08) 0%, transparent 70%);
  z-index: 0;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(10, 16, 32, 0.95);
  border: 1px solid var(--c-border-glow);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(20px);
  z-index: 10;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.fc-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  flex-shrink: 0;
}

.fc-text strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: white;
}

.fc-text span {
  font-size: 11px;
  color: var(--c-text-muted);
}

.card-1 { top: 10%; left: -40px; animation: float1 4s ease-in-out infinite; }
.card-2 { bottom: 20%; left: -30px; animation: float2 4.5s ease-in-out infinite 0.5s; }
.card-3 { top: 35%; right: -30px; animation: float1 5s ease-in-out infinite 1s; }

@keyframes float1 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(8px); }
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--c-cyan), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ──── TRUST BAND (Partner Badges) ──── */
.trust-band {
  position: relative;
  z-index: 1;
  padding: 32px 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  background: rgba(8, 17, 34, 0.8);
  overflow: hidden;
}

.trust-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

.trust-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: 24px;
}

.logos-track {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

.logos-slide {
  display: flex;
  align-items: center;
  gap: 64px;
  animation: logos-scroll 20s linear infinite;
  width: max-content;
}

.trust-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  color: var(--c-text-muted);
  transition: var(--transition);
}

.trust-logo:hover {
  background: rgba(255,255,255,0.06);
  color: white;
  border-color: rgba(0, 87, 255, 0.3);
}

.trust-logo svg {
  color: var(--c-cyan);
}

@keyframes logos-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ──── SERVICES SECTION ──── */
.services {
  background: transparent;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: rgba(13, 21, 40, 0.8);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-blue), transparent);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  border-color: rgba(0, 87, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.service-card:hover::before { opacity: 1; }

.sc-icon-wrap {
  margin-bottom: 20px;
}

.sc-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--c-border);
  border-radius: 14px;
  transition: var(--transition);
}

.service-card:hover .sc-icon {
  background: rgba(0, 87, 255, 0.08);
  border-color: rgba(0, 87, 255, 0.2);
}

.sc-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--c-text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.sc-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-text-muted);
  margin-bottom: 20px;
}

.sc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.sc-tags span {
  font-size: 11px;
  font-weight: 500;
  color: var(--c-cyan);
  padding: 4px 10px;
  background: rgba(76, 201, 240, 0.08);
  border: 1px solid rgba(76, 201, 240, 0.15);
  border-radius: 100px;
}

.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-blue);
  transition: var(--transition);
}

.sc-link:hover { gap: 10px; color: var(--c-cyan); }

.service-card--wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.sc-wide-content {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex: 1;
}

/* ──── WHY US ──── */
.why-us {
  background: rgba(8, 17, 34, 0.6);
  position: relative;
  overflow: hidden;
}

.why-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 87, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 87, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  position: relative;
  padding: 36px 28px;
  background: rgba(13, 21, 40, 0.6);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(0, 87, 255, 0.05), transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.why-card:hover {
  border-color: rgba(0, 87, 255, 0.25);
  transform: translateY(-4px);
}

.why-card:hover::after { opacity: 1; }

.why-num {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 800;
  color: rgba(0, 87, 255, 0.06);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px;
  letter-spacing: -0.04em;
  z-index: 0;
  transition: var(--transition);
}

.why-card:hover .why-num {
  color: rgba(0, 87, 255, 0.1);
}

.why-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: rgba(0, 87, 255, 0.08);
  border-color: rgba(0, 87, 255, 0.2);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--c-text-primary);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.why-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-text-muted);
  position: relative;
  z-index: 1;
}

/* ──── ENTERPRISE SOCIAL PROOF STRIP ──── */
.social-proof-strip {
  background: rgba(5, 8, 22, 0.8);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: 40px 0;
  position: relative;
  z-index: 1;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.proof-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--c-border);
  border-radius: 50%;
  color: var(--c-blue-light);
}

.proof-item strong {
  font-size: 14px;
  color: white;
}

.proof-item span {
  font-size: 12px;
  color: var(--c-text-muted);
}

/* ──── PORTFOLIO ──── */
.portfolio { background: transparent; }

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.portfolio-card {
  background: rgba(13, 21, 40, 0.8);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.portfolio-card:hover {
  border-color: rgba(0, 87, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.portfolio-card--large {
  grid-column: 1 / -1;
}

.pc-visual {
  position: relative;
  overflow: hidden;
}

.pc-svg {
  width: 100%;
  height: auto;
  display: block;
}

.pc-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
}

.pc-category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-cyan);
  padding: 5px 12px;
  background: rgba(76, 201, 240, 0.1);
  border: 1px solid rgba(76, 201, 240, 0.2);
  border-radius: 100px;
}

.pc-info {
  padding: 24px 28px 28px;
}

.pc-info h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--c-text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.pc-info p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-text-muted);
  margin-bottom: 16px;
}

.pc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pc-meta span {
  font-size: 11px;
  font-weight: 500;
  color: var(--c-purple);
  padding: 4px 10px;
  background: rgba(123, 97, 255, 0.08);
  border: 1px solid rgba(123, 97, 255, 0.15);
  border-radius: 100px;
}

.portfolio-cta {
  text-align: center;
  margin-top: 48px;
}

/* ──── TECHNOLOGY ──── */
.tech-section {
  background: rgba(8, 17, 34, 0.6);
}

.tech-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}

.tech-tab {
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-text-muted);
  border: 1px solid var(--c-border);
  border-radius: 100px;
  background: rgba(255,255,255,0.02);
  transition: var(--transition);
  cursor: pointer;
}

.tech-tab:hover {
  color: var(--c-text-secondary);
  border-color: rgba(0, 87, 255, 0.3);
}

.tech-tab.active {
  background: rgba(0, 87, 255, 0.12);
  border-color: rgba(0, 87, 255, 0.4);
  color: white;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  background: rgba(13, 21, 40, 0.8);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: default;
  text-align: center;
}

.tech-item:hover {
  border-color: rgba(0, 87, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.tech-icon {
  font-size: 28px;
  line-height: 1;
}

.tech-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--c-text-muted);
}

.tech-item:hover .tech-name { color: var(--c-text-secondary); }

/* ──── PROCESS ──── */
.process-section {
  position: relative;
  overflow: hidden;
}

.process-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(0, 87, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
  max-width: 960px;
  margin: 0 auto;
}

.process-line {
  position: absolute;
  top: 40px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--c-blue), var(--c-purple), var(--c-cyan));
  opacity: 0.2;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.ps-node {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 21, 40, 0.9);
  border: 1px solid rgba(0, 87, 255, 0.3);
  border-radius: 50%;
  position: relative;
  z-index: 1;
  transition: var(--transition);
  flex-shrink: 0;
}

.process-step:hover .ps-node {
  background: rgba(0, 87, 255, 0.1);
  border-color: var(--c-blue);
  box-shadow: 0 0 24px rgba(0, 87, 255, 0.2);
}

.ps-num {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--c-cyan), var(--c-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ps-content {
  flex: 1;
}

.ps-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  margin-bottom: 12px;
  transition: var(--transition);
}

.process-step:hover .ps-icon {
  background: rgba(0, 87, 255, 0.06);
  border-color: rgba(0, 87, 255, 0.2);
}

.ps-content h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--c-text-primary);
  margin-bottom: 10px;
}

.ps-content p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--c-text-muted);
}

/* ──── INDUSTRIES ──── */
.industries { background: rgba(8, 17, 34, 0.5); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.industry-card {
  padding: 28px 24px;
  background: rgba(13, 21, 40, 0.7);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-align: center;
}

.industry-card:hover {
  border-color: rgba(0, 87, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.ind-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--c-border);
  border-radius: 14px;
  margin: 0 auto 16px;
  transition: var(--transition);
}

.industry-card:hover .ind-icon {
  background: rgba(0, 87, 255, 0.07);
  border-color: rgba(0, 87, 255, 0.2);
}

.industry-card h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--c-text-primary);
  margin-bottom: 8px;
}

.industry-card p {
  font-size: 12px;
  line-height: 1.6;
  color: var(--c-text-muted);
}

/* ──── TESTIMONIALS ──── */
.testimonials { background: transparent; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  padding: 32px;
  background: rgba(13, 21, 40, 0.8);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.testi-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--c-blue), var(--c-purple));
  border-radius: 0 2px 2px 0;
}

.testi-card:hover {
  border-color: rgba(0, 87, 255, 0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.testi-rating { margin-bottom: 20px; color: #FFB800; font-size: 14px; }

.testi-text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--c-text-secondary);
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-meta strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: white;
}

.testi-meta span {
  font-size: 12px;
  color: var(--c-text-muted);
}

/* ──── INSIGHTS / BLOG PREVIEW ──── */
.insights-preview {
  background: rgba(8, 17, 34, 0.6);
  position: relative;
  z-index: 1;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.insight-card {
  background: rgba(13, 21, 40, 0.8);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.insight-card:hover {
  border-color: rgba(0, 87, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.ic-visual {
  height: 200px;
  background: rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ic-visual svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ic-content {
  padding: 24px;
}

.ic-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--c-text-muted);
  margin-bottom: 12px;
}

.ic-tag {
  color: var(--c-cyan);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ic-content h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: white;
  line-height: 1.4;
  margin-bottom: 12px;
  transition: var(--transition);
}

.insight-card:hover h3 {
  color: var(--c-blue-light);
}

.ic-content p {
  font-size: 14px;
  color: var(--c-text-muted);
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ic-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: white;
  transition: var(--transition);
}

.ic-link svg { transition: var(--transition); }

.insight-card:hover .ic-link { color: var(--c-cyan); }
.insight-card:hover .ic-link svg { transform: translateX(4px); }

/* ──── CTA SECTION ──── */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: rgba(5, 8, 22, 0.9);
  border-top: 1px solid var(--c-border);
  z-index: 1;
}

#cta-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.cta-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.cta-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-cyan);
  padding: 6px 14px;
  border: 1px solid rgba(76, 201, 240, 0.25);
  border-radius: 100px;
  background: rgba(76, 201, 240, 0.05);
  margin-bottom: 20px;
}

.cta-headline {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 17px;
  color: var(--c-text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 56px;
}

/* CONTACT FORM */
.contact-form {
  background: rgba(13, 21, 40, 0.8);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(10px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group--full {
  grid-column: 1 / -1;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  color: var(--c-text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--c-text-muted);
  font-size: 13px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(0, 87, 255, 0.4);
  background: rgba(0, 87, 255, 0.04);
  box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.08);
}

.form-group select option {
  background: var(--c-bg-card);
  color: var(--c-text-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--c-blue) 0%, #1E6DFF 100%);
  color: white;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 87, 255, 0.3);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 87, 255, 0.5);
}

.form-note {
  font-size: 12px;
  color: var(--c-text-muted);
}

.contact-direct {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cd-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cd-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  flex-shrink: 0;
}

.cd-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: 3px;
}

.cd-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text-secondary);
  transition: var(--transition);
}

.cd-value:hover { color: var(--c-cyan); }


/* ──── BACK TO TOP ──── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: rgba(0, 87, 255, 0.9);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 900;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  box-shadow: 0 4px 16px rgba(0, 87, 255, 0.4);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--c-blue-light);
  transform: translateY(-3px);
}

/* ──── RESPONSIVE HOMEPAGE ──── */
@media (max-width: 1100px) {
  .tech-grid { grid-template-columns: repeat(4, 1fr); }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 968px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 140px;
  }
  .hero-content { order: 1; display: flex; flex-direction: column; align-items: center; }
  .hero-visual { order: 2; display: none; }
  .hero-badge, .hero-actions { align-self: center; }
  .hero-stats { justify-content: center; max-width: 100%; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card--wide { flex-direction: column; }
  .sc-wide-content { flex-direction: column; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card--large { grid-column: 1; }
  .process-timeline { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr 1fr; }
  .tech-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .hero-headline { font-size: 36px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; }
  .process-line { display: none; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-submit { flex-direction: column; align-items: flex-start; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .card-1, .card-2, .card-3 { display: none; }
  .contact-form { padding: 24px; }
  .cta-sub { font-size: 15px; }
}
/* ============================================================
   THE DIFFERENCE SECTION
============================================================ */
.difference-section {
  position: relative;
  background: var(--c-bg-dark);
  overflow: hidden;
}

.diff-bg-particles {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(rgba(0, 87, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
  animation: bgPan 40s linear infinite;
}

@keyframes bgPan {
  from { background-position: 0 0; }
  to { background-position: -60px -60px; }
}

.difference-section .container {
  position: relative;
  z-index: 1;
}

/* ──── COMPARISON TABLE (DESKTOP) ──── */
.diff-table-container {
  margin: 60px 0;
  background: rgba(13, 21, 40, 0.4);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.diff-table {
  display: flex;
  flex-direction: column;
}

.diff-table-header {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid var(--c-border);
}

.diff-col {
  padding: 24px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--c-text-secondary);
  text-align: center;
  position: relative;
}

.diff-col-feature {
  text-align: left;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.diff-col-bc {
  color: white;
  font-size: 18px;
  z-index: 2;
}

.bc-glow-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 87, 255, 0.15) 0%, rgba(0, 87, 255, 0) 100%);
  border-top: 2px solid var(--c-blue);
  z-index: -1;
}

.bc-header-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.diff-table-body {
  display: flex;
  flex-direction: column;
}

.diff-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  position: relative;
}

.diff-row:last-child {
  border-bottom: none;
}

.diff-row:hover {
  background: rgba(255, 255, 255, 0.03);
}

/* Mouse spotlight effect container */
.diff-row::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle 200px at var(--mouse-x, -999px) var(--mouse-y, -999px), rgba(76, 201, 240, 0.08), transparent);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}
.diff-row:hover::before { opacity: 1; }

.diff-cell {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.diff-feature {
  justify-content: flex-start;
  font-weight: 500;
  color: white;
}

.diff-bc {
  background: rgba(0, 87, 255, 0.03);
  border-left: 1px solid rgba(0, 87, 255, 0.1);
  border-right: 1px solid rgba(0, 87, 255, 0.1);
}

.diff-row:last-child .diff-bc {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(30, 58, 138, 0.1);
  color: #1E3A8A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

.partial-icon {
  color: var(--c-text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.cross-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.1);
  color: #1E3A8A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 12px;
}


/* ──── MOBILE STACKED CARDS ──── */
.diff-mobile-cards {
  display: none;
  flex-direction: column;
  gap: 16px;
  margin: 40px 0;
}

.diff-mobile-card {
  background: rgba(13, 21, 40, 0.6);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.dmc-header {
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: white;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--c-border);
}

.dmc-body {
  padding: 12px 20px;
}

.dmc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dmc-row:last-child {
  border-bottom: none;
}

.dmc-label {
  font-size: 14px;
  color: var(--c-text-secondary);
}

.dmc-val {
  display: flex;
  align-items: center;
}

.dmc-val.dmc-bc .dmc-label {
  color: white;
  font-weight: 600;
}

/* ──── ENTERPRISE SCORE PANEL ──── */
.score-panel {
  background: rgba(13, 21, 40, 0.4);
  border: 1px solid rgba(0, 87, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.score-panel::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%; right: -50%; bottom: -50%;
  background: conic-gradient(from 0deg at 50% 50%, rgba(0,0,0,0) 0%, rgba(0,87,255,0.1) 25%, rgba(0,0,0,0) 50%);
  animation: rotateGlow 10s linear infinite;
  z-index: 0;
}

@keyframes rotateGlow {
  100% { transform: rotate(360deg); }
}

.score-panel-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.score-header h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: white;
  margin-bottom: 16px;
}

.score-header p {
  color: var(--c-text-secondary);
  line-height: 1.7;
}

.progress-bars {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.progress-item {
  width: 100%;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: white;
}

.progress-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  width: 0; /* Animated via JS */
  background: linear-gradient(90deg, var(--c-blue), var(--c-purple));
  border-radius: 4px;
  position: relative;
  transition: width 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.progress-glow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 10px var(--c-cyan), 0 0 20px var(--c-blue);
  opacity: 0;
  transition: opacity 0.5s ease 1s;
}

.progress-fill.filled .progress-glow {
  opacity: 1;
}

/* ──── MICROCOPY & CTA ──── */
.diff-footer {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.diff-trust-statement {
  font-size: 20px;
  font-weight: 500;
  color: white;
  line-height: 1.6;
  margin-bottom: 40px;
  font-style: italic;
}

.diff-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}


/* ──── MOBILE RESPONSIVENESS ──── */
@media (max-width: 968px) {
  .diff-table-container { display: none; }
  .diff-mobile-cards { display: flex; }
  .score-panel-inner { grid-template-columns: 1fr; gap: 32px; }
  .diff-actions { flex-direction: column; align-items: stretch; }
  .diff-trust-statement { font-size: 18px; }
}


/* --- WHITE PILL NAVBAR --- */
.navbar.white-pill-navbar {
  background: #ffffff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07) !important;
  box-shadow: 0 1px 0 rgba(255,255,255,0.9), 0 4px 24px rgba(0, 0, 0, 0.06) !important;
  border-radius: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  top: 0 !important;
  padding: 12px 20px !important;
}
.white-pill-navbar .nav-container { max-width: 1400px !important; margin: 0 auto !important; padding: 0 20px !important; }
.white-pill-navbar .nav-link, .white-pill-navbar .logo-text {
  color: #000000 !important;
}
.white-pill-navbar .nav-link {
  padding: 8px 16px !important;
  border-radius: 100px;
  font-size: 16px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease;
}
.white-pill-navbar .nav-link svg {
  stroke: #000000 !important;
}
.white-pill-navbar .logo-accent {
  color: #255bbd !important;
}
.white-pill-navbar .nav-link:hover, .white-pill-navbar .nav-link.active {
  color: #000000 !important;
  background: rgba(0, 87, 255, 0.05) !important;
  border-radius: 100px;
  padding: 8px 16px !important;
}
.white-pill-navbar .btn-primary,
.white-pill-navbar #nav-cta-btn {
  background: #255bbd !important;
  color: #FFFFFF !important;
  border-radius: 8px !important;
}
.white-pill-navbar .btn-primary:hover,
.white-pill-navbar #nav-cta-btn:hover {
  background: #1e4a9e !important;
  box-shadow: 0 8px 24px rgba(37, 91, 189, 0.35) !important;
}
.navbar.white-pill-navbar.scrolled {
  background: #ffffff !important;
  box-shadow: 0 1px 0 rgba(255,255,255,0.9), 0 4px 24px rgba(0, 0, 0, 0.08) !important;
}
@media (max-width: 1000px) {
  .navbar.white-pill-navbar {
    margin: 0 !important;
    width: 100% !important;
    top: 0 !important;
    padding: 10px 20px !important;
    border-radius: 0 !important;
  }
}
@media (max-width: 640px) {
  .navbar.white-pill-navbar {
    margin: 0 !important;
    width: 100% !important;
    top: 0 !important;
    border-radius: 0 !important;
  }
}




.white-pill-navbar .nav-link::after {
  background: #0046cc !important;
}


