/* ============================================================
   ORBIX LABS — Page Sections
   All non-nav, non-hero, non-footer section styles.
   ============================================================ */

/* ══════════════════════════════════════════════
   MARQUEE / SOCIAL PROOF STRIP
   ══════════════════════════════════════════════ */

.marquee-section {
  padding: var(--space-12) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
  background: var(--color-bg-surface);
}

.marquee-section__label {
  text-align: center;
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-8);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: var(--space-16);
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.55;
  transition: opacity var(--transition-base);
}

.marquee-item:hover {
  opacity: 0.85;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-border);
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ══════════════════════════════════════════════
   SERVICES OVERVIEW GRID (Home)
   ══════════════════════════════════════════════ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}


/* ══════════════════════════════════════════════
   DIFFERENTIATOR — TWO COLUMN (Home)
   ══════════════════════════════════════════════ */

.diff-section {
  padding: var(--space-section) 0;
}

.diff-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.diff-content__eyebrow {
  margin-bottom: var(--space-4);
}

.diff-content__heading {
  font-size: var(--text-4xl);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
}

.diff-content__body {
  font-size: var(--text-base);
  color: var(--color-text-body);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-8);
}

.diff-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.diff-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-body);
  line-height: var(--lh-normal);
}

.diff-feature__check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(79, 142, 247, 0.1);
  border: 1px solid rgba(79, 142, 247, 0.25);
  border-radius: 50%;
  margin-top: 1px;
}

.diff-feature__check svg {
  width: 11px;
  height: 11px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 2.5;
}


/* ══════════════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════════════ */

.stats-section {
  padding: var(--space-20) 0;
  background: var(--color-bg-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

.stat {
  text-align: center;
  padding: var(--space-4);
}

.stat__number {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--text-4xl);
  font-weight: var(--fw-bold);
  line-height: 1;
  margin-bottom: var(--space-2);
  background: var(--color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat__suffix {
  font-family: var(--font-mono);
  font-size: var(--text-2xl);
}

.stat__label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: var(--fw-medium);
}


/* ══════════════════════════════════════════════
   PROCESS STEPS (Home)
   ══════════════════════════════════════════════ */

.process-section {
  padding: var(--space-section) 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  position: relative;
}

/* Connecting line between steps */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 1px;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent-2) 100%);
  opacity: 0.25;
}


/* ══════════════════════════════════════════════
   PRICING GRID
   ══════════════════════════════════════════════ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: start;
}

.pricing-note {
  text-align: center;
  margin-top: var(--space-8);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.pricing-note a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ══════════════════════════════════════════════
   SERVICE DETAIL BLOCKS (Services Page)
   ══════════════════════════════════════════════ */

.service-block {
  padding: var(--space-section) 0;
  border-bottom: 1px solid var(--color-border);
}

.service-block:last-of-type {
  border-bottom: none;
}

.service-block__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.service-block__inner--reverse {
  direction: rtl;
}

.service-block__inner--reverse > * {
  direction: ltr;
}

.service-block__content {}

.service-block__icon-wrap {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(79,142,247,0.12), rgba(139,92,246,0.12));
  border: 1px solid rgba(79, 142, 247, 0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
}

.service-block__icon-wrap svg {
  width: 26px;
  height: 26px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-block__title {
  font-size: var(--text-3xl);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  line-height: var(--lh-snug);
  letter-spacing: -0.015em;
  margin-bottom: var(--space-4);
}

.service-block__desc {
  font-size: var(--text-base);
  color: var(--color-text-body);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-6);
}

.service-block__deliverables {
  margin-bottom: var(--space-6);
}

.service-block__deliverables-label {
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-3);
}

.service-block__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.service-block__list-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-body);
}

.service-block__list-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gradient);
  flex-shrink: 0;
}

.service-block__meta {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.service-block__meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.service-block__meta-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-text-muted);
  fill: none;
  stroke-width: 1.75;
}

.service-block__visual {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-block__visual::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(79,142,247,0.06) 0%, transparent 70%);
  pointer-events: none;
}


/* ══════════════════════════════════════════════
   TECH ECOSYSTEM
   ══════════════════════════════════════════════ */

.tech-section {
  padding: var(--space-section) 0;
  background: var(--color-bg-surface);
}

.tech-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-12);
}


/* ══════════════════════════════════════════════
   CONTACT — TWO COLUMN LAYOUT
   ══════════════════════════════════════════════ */

.contact-section {
  padding: var(--space-section) 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: var(--space-16);
  align-items: start;
}

.contact-trust {}

.contact-trust__heading {
  font-size: var(--text-xl);
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-6);
}

.contact-next-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}

.contact-step {
  display: flex;
  gap: var(--space-4);
}

.contact-step__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  color: #fff;
  flex-shrink: 0;
  font-family: var(--font-mono);
}

.contact-step__text {
  font-size: var(--text-sm);
  color: var(--color-text-body);
  line-height: var(--lh-relaxed);
  padding-top: 4px;
}

.contact-step__text strong {
  color: var(--color-text-primary);
  font-weight: var(--fw-medium);
  display: block;
  margin-bottom: 2px;
}

/* Confidentiality card */
.contact-private {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  margin-bottom: var(--space-8);
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}

.contact-private svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.75;
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-private__text {
  font-size: var(--text-xs);
  color: var(--color-text-body);
  line-height: var(--lh-relaxed);
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.contact-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-body);
  text-decoration: none;
  transition: color var(--transition-base);
}

.contact-link:hover {
  color: var(--color-accent);
}

.contact-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
}

/* Form panel */
.contact-form-panel {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-submit-note {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-align: center;
  margin-top: var(--space-2);
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-12) var(--space-8);
}

.form-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
}

.form-success__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-success);
  fill: none;
  stroke-width: 2;
}

.form-success__heading {
  font-size: var(--text-2xl);
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-3);
}

.form-success__body {
  font-size: var(--text-base);
  color: var(--color-text-body);
  margin-bottom: var(--space-8);
  line-height: var(--lh-relaxed);
}


/* ══════════════════════════════════════════════
   FEATURED CASE STUDY
   ══════════════════════════════════════════════ */

.featured-case {
  background: var(--color-bg-elevated);
  border: 1px solid rgba(79, 142, 247, 0.3);
  border-radius: var(--radius-xl);
  padding: var(--space-12);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.featured-case::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(79,142,247,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.featured-case__label {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.featured-case__heading {
  font-size: var(--text-3xl);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  line-height: var(--lh-snug);
  letter-spacing: -0.015em;
  margin-bottom: var(--space-4);
}

.featured-case__challenge {
  font-size: var(--text-base);
  color: var(--color-text-body);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-6);
}

.featured-case__stack-label {
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-3);
}

.featured-case__visual {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

/* Case study card grid (3 columns) */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
