@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,700;12..96,800&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --arc-ink: #030305;
  --arc-surface: #13131c;
  --arc-accent: #7c3aed;
  --arc-accent-light: #a78bfa;
  --arc-cyan: #06b6d4;
  --arc-violet: #c084fc;
  --arc-gold: #fbbf24;
  --arc-text: #fafafa;
  --arc-muted: #a3a3b0;
  --arc-subtle: #6b6b7b;
  --arc-border: rgba(255, 255, 255, 0.08);
}

html {
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--arc-ink);
  color: var(--arc-text);
  overflow-x: hidden;
}

.bg-mesh {
  background-image:
    radial-gradient(ellipse 90% 60% at 50% -30%, rgba(124, 58, 237, 0.28), transparent),
    radial-gradient(ellipse 70% 50% at 100% 10%, rgba(6, 182, 212, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 0% 80%, rgba(192, 132, 252, 0.12), transparent);
  overflow-x: hidden;
}

.font-display {
  font-family: "Bricolage Grotesque", sans-serif;
}

.arcnova-site {
  background: var(--arc-ink);
}

.text-gradient {
  background: linear-gradient(135deg, #fff 0%, #c084fc 40%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-accent {
  background: linear-gradient(135deg, #a78bfa, #22d3ee, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-shimmer {
  background-size: 200% auto;
  animation: gradientShimmer 6s ease-in-out infinite;
}

@keyframes gradientShimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.brand-wordmark-gradient {
  background: linear-gradient(135deg, #fff 20%, #c084fc 55%, #22d3ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(124, 58, 237, 0.25);
  background: rgba(124, 58, 237, 0.08);
  color: var(--arc-accent-light);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.glass-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--arc-border);
  backdrop-filter: blur(20px);
}

.brand-panel {
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.12), rgba(19, 19, 28, 0.95) 40%, rgba(6, 182, 212, 0.06));
  border: 1px solid var(--arc-border);
}

.brand-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(124, 58, 237, 0.04) 50%, rgba(255, 255, 255, 0.01));
  border: 1px solid var(--arc-border);
  transition: border-color 0.3s, transform 0.3s;
}

.brand-card:hover {
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateY(-2px);
}

.glow-border {
  position: relative;
  border-radius: 2rem;
  padding: 1px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.6), rgba(6, 182, 212, 0.3), rgba(251, 191, 36, 0.2));
}

.glow-border > .glow-inner {
  border-radius: calc(2rem - 1px);
  overflow: hidden;
  background: var(--arc-ink);
}

.btn-arcnova {
  background: linear-gradient(135deg, #7c3aed, #6d28d9, #0891b2);
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 4px 24px rgba(124, 58, 237, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-arcnova:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 40px rgba(124, 58, 237, 0.45);
}

.btn-ghost {
  border: 1px solid var(--arc-border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--arc-text);
  font-weight: 600;
  border-radius: 999px;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: var(--arc-text);
}

/* Navbar */
.arcnova-nav {
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.arcnova-nav.scrolled {
  background: rgba(19, 19, 28, 0.92) !important;
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--arc-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.arcnova-nav .nav-link {
  color: var(--arc-muted);
  font-size: 0.9rem;
  padding: 0.5rem 1rem !important;
  position: relative;
}

.arcnova-nav .nav-link:hover,
.arcnova-nav .nav-link.active {
  color: var(--arc-text);
}

.arcnova-nav .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 1px;
  background: linear-gradient(to right, var(--arc-accent), var(--arc-cyan));
}

.arcnova-nav-collapse {
  justify-content: flex-end;
}

.arcnova-nav-links {
  gap: 0.1rem;
}

.arcnova-nav .nav-item-cta {
  margin-top: 0.75rem;
}

.arcnova-nav .nav-contact-btn {
  white-space: nowrap;
}

.arcnova-nav .nav-contact-btn.active {
  box-shadow: 0 0 0 2px rgba(167, 139, 250, 0.45), 0 4px 24px rgba(124, 58, 237, 0.35);
}

@media (min-width: 992px) {
  .arcnova-nav .nav-item-cta {
    margin-top: 0;
  }

  .arcnova-nav .nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 1px;
    background: linear-gradient(to right, var(--arc-accent), var(--arc-cyan));
    transform: scaleX(0);
    transition: transform 0.25s ease;
  }

  .arcnova-nav .nav-link:hover::before,
  .arcnova-nav .nav-link.active::before {
    transform: scaleX(1);
  }

  .arcnova-nav .nav-link.active::after {
    display: none;
  }
}

/* Logo — text wordmark */
.brand-wordmark-link {
  color: inherit;
  text-decoration: none;
}

.brand-wordmark-link:hover {
  color: inherit;
  opacity: 0.92;
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand-wordmark-lg {
  font-size: 2rem;
  justify-content: center;
}

.brand-wordmark .nova {
  background: linear-gradient(135deg, #a78bfa, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-labs {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--arc-subtle);
  text-transform: uppercase;
}

.brand-wordmark-lg .brand-labs {
  font-size: 0.72rem;
}

/* IoT & Omnichannel focus cards */
.focus-card {
  border: 1px solid var(--arc-border);
  border-radius: 1.25rem;
  overflow: hidden;
  background: rgba(19, 19, 28, 0.5);
  height: 100%;
  transition: border-color 0.3s, transform 0.3s;
}

.focus-card:hover {
  transform: translateY(-3px);
}

.focus-card-iot:hover { border-color: rgba(6, 182, 212, 0.4); }
.focus-card-omni:hover { border-color: rgba(192, 132, 252, 0.4); }
.focus-card-health:hover { border-color: rgba(52, 211, 153, 0.4); }

.focus-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.focus-card-iot .icon-box {
  border-color: rgba(6, 182, 212, 0.25);
  background: rgba(6, 182, 212, 0.1);
  color: #22d3ee;
}

.focus-card-omni .icon-box {
  border-color: rgba(192, 132, 252, 0.25);
  background: rgba(192, 132, 252, 0.1);
  color: #c084fc;
}

.focus-card-health .icon-box {
  border-color: rgba(52, 211, 153, 0.25);
  background: rgba(52, 211, 153, 0.1);
  color: #34d399;
}

.capability-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--arc-muted);
}

.capability-list i {
  color: var(--arc-accent-light);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.connect-banner {
  border: 1px solid var(--arc-border);
  border-radius: 1rem;
  background: linear-gradient(90deg, rgba(6, 182, 212, 0.08), rgba(52, 211, 153, 0.08), rgba(124, 58, 237, 0.08), rgba(192, 132, 252, 0.08));
  padding: 1.25rem 1.5rem;
}

.expertise-pill-iot {
  border-color: rgba(6, 182, 212, 0.3);
  background: rgba(6, 182, 212, 0.08);
}

.expertise-pill-iot i { color: #22d3ee; }

.expertise-pill-omni {
  border-color: rgba(192, 132, 252, 0.3);
  background: rgba(192, 132, 252, 0.08);
}

.expertise-pill-omni i { color: #c084fc; }

.expertise-pill-health {
  border-color: rgba(52, 211, 153, 0.3);
  background: rgba(52, 211, 153, 0.08);
}

.expertise-pill-health i { color: #34d399; }

/* Realistic hero photo */
.hero-photo-wrap {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--arc-border);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.hero-photo-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.hero-photo-caption {
  padding: 1rem 1.25rem;
  background: rgba(19, 19, 28, 0.95);
  border-top: 1px solid var(--arc-border);
}

.project-card {
  border: 1px solid var(--arc-border);
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(19, 19, 28, 0.5);
  transition: transform 0.3s, border-color 0.3s;
  height: 100%;
}

.project-card:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 58, 237, 0.3);
}

.project-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.trusted-item {
  color: var(--arc-subtle);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}

.team-photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
}

.stat-box .stat-detail {
  font-size: 0.7rem;
  color: var(--arc-subtle);
  margin-top: 0.15rem;
}

/* Hero */
.hero-section {
  min-height: 100vh;
  padding-top: 7rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  top: -10%;
  left: -5%;
  background: rgba(124, 58, 237, 0.25);
}

.hero-orb-2 {
  width: 350px;
  height: 350px;
  top: 30%;
  right: -8%;
  background: rgba(6, 182, 212, 0.18);
  animation-delay: 2s;
}

.hero-orb-3 {
  width: 280px;
  height: 280px;
  bottom: 10%;
  left: 30%;
  background: rgba(192, 132, 252, 0.15);
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

/* Home page — full-screen hero with compact content */
.hero-section-compact {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding-top: 5.5rem;
  padding-bottom: 1.25rem;
}

.hero-section-compact > .container-xl,
.hero-section-compact > .hero-compact-inner {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.hero-compact-main {
  flex: 1;
  align-items: center;
}

.hero-trusted {
  padding-top: 1.25rem;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-trusted .trusted-item {
  font-size: 0.85rem;
}

.hero-title-compact {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.15;
}

.hero-lead-compact {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 36rem;
}

.hero-section-compact .expertise-pill {
  padding: 0.3rem 0.75rem;
  font-size: 0.75rem;
}

.hero-photo-wrap-compact {
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}

.hero-photo-wrap-compact img {
  height: min(280px, 32vh);
}

.hero-photo-wrap-compact .hero-photo-caption {
  padding: 0.75rem 1rem;
}

@media (min-width: 992px) {
  .hero-section-compact {
    padding-top: 6rem;
    padding-bottom: 2.5rem;
  }

  .hero-photo-wrap-compact img {
    height: min(320px, 38vh);
  }
}

.expertise-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--arc-border);
  background: rgba(19, 19, 28, 0.6);
  font-size: 0.8rem;
  color: var(--arc-muted);
  transition: all 0.25s;
}

.expertise-pill:hover {
  border-color: rgba(124, 58, 237, 0.4);
  color: var(--arc-text);
  transform: translateY(-2px);
}

.expertise-pill i {
  color: var(--arc-accent-light);
}

.hero-visual-stack {
  position: relative;
  min-height: 420px;
  padding: 0 0.5rem;
}

@media (max-width: 991px) {
  .hero-visual-stack {
    min-height: auto;
    margin-top: 1rem;
  }

  .hero-card-float {
    display: none;
  }

  .hero-section {
    min-height: auto;
    padding-bottom: 3rem;
  }

  .hero-section.hero-section-compact {
    min-height: 100vh;
    min-height: 100dvh;
    padding-bottom: 2.5rem;
  }
}

.hero-card-main {
  position: relative;
  z-index: 2;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--arc-border);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
}

.hero-card-float {
  position: absolute;
  border-radius: 1rem;
  border: 1px solid var(--arc-border);
  background: rgba(19, 19, 28, 0.85);
  backdrop-filter: blur(16px);
  padding: 1rem 1.25rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  animation: float 6s ease-in-out infinite;
}

.hero-card-float-1 {
  top: 8%;
  right: -4%;
  z-index: 3;
  animation-delay: 1s;
}

.hero-card-float-2 {
  bottom: 12%;
  left: -6%;
  z-index: 3;
  animation-delay: 3s;
}

.hero-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.stat-box {
  border: 1px solid var(--arc-border);
  background: rgba(19, 19, 28, 0.5);
  border-radius: 1rem;
  padding: 1rem;
  backdrop-filter: blur(8px);
  transition: border-color 0.3s, transform 0.3s;
}

.stat-box:hover {
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateY(-2px);
}

/* Bento grid */
.bento-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(12, 1fr);
}

.bento-item {
  border: 1px solid var(--arc-border);
  background: rgba(19, 19, 28, 0.5);
  border-radius: 1.5rem;
  padding: 1.75rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
  position: relative;
}

.bento-item:hover {
  border-color: rgba(124, 58, 237, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.12);
}

.bento-item.featured {
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.15), rgba(19, 19, 28, 0.8));
  border-color: rgba(124, 58, 237, 0.3);
}

.bento-span-4 { grid-column: span 12; }
.bento-span-6 { grid-column: span 12; }
.bento-span-8 { grid-column: span 12; }

@media (min-width: 768px) {
  .bento-span-4 { grid-column: span 4; }
  .bento-span-6 { grid-column: span 6; }
  .bento-span-8 { grid-column: span 8; }
}

.bento-glow {
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.15);
  filter: blur(60px);
  pointer-events: none;
}

/* Marquee */
.marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  width: max-content;
  padding: 0.25rem 0;
}

.marquee-track span {
  white-space: nowrap;
  color: var(--arc-subtle);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

/* Process connector */
.process-step {
  position: relative;
}

.process-step::after {
  content: "";
  position: absolute;
  top: 24px;
  right: -50%;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(124, 58, 237, 0.4), transparent);
  display: none;
}

@media (min-width: 992px) {
  .process-step:not(:last-child)::after {
    display: block;
  }
}

/* Testimonial enhanced */
.testimonial-card {
  position: relative;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: "Bricolage Grotesque", serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(124, 58, 237, 0.15);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--arc-accent), var(--arc-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
}

/* Fade in on scroll */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible,
.hero-section .fade-up,
.about-hero .fade-up,
.contact-hero .fade-up,
.contact-page-main .fade-up,
.portfolio-hero .fade-up,
.portfolio-list .fade-up,
.no-js .fade-up {
  opacity: 1;
  transform: translateY(0);
}

.hero-visual-card {
  border: 1px solid var(--arc-border);
  background: rgba(19, 19, 28, 0.6);
  border-radius: 1rem;
  backdrop-filter: blur(12px);
}

/* Cards */
.service-card,
.industry-card,
.work-card,
.testimonial-card {
  border: 1px solid var(--arc-border);
  background: rgba(19, 19, 28, 0.4);
  border-radius: 1.5rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  height: 100%;
}

.service-card:hover,
.industry-card:hover,
.work-card:hover,
.testimonial-card:hover {
  border-color: rgba(124, 58, 237, 0.25);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.tag-pill {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--arc-border);
  background: rgba(3, 3, 5, 0.5);
  font-size: 0.75rem;
  color: var(--arc-subtle);
}

.metric-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  background: rgba(16, 185, 129, 0.1);
  color: #34d399;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Page header */
.page-header {
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.page-header-compact {
  padding-top: 7rem;
  padding-bottom: 2rem;
}

/* Contact page — aligned with navbar logo & Contact Us button */
.contact-page-main {
  padding-top: 6.5rem;
}

.contact-page-container {
  width: 100%;
}

.contact-page-header {
  margin-bottom: 1.75rem;
  text-align: left;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  width: 100%;
}

@media (min-width: 992px) {
  .contact-page-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: stretch;
  }
}

.contact-page-grid > .contact-section {
  min-width: 0;
}

.contact-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--arc-accent-light);
}

.contact-section-title i {
  font-size: 1rem;
}

.contact-section-map .contact-map-advanced {
  margin-bottom: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-section-map .contact-map-advanced .glow-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #eef1f5;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.contact-section-info .contact-simple-card {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Advanced Leaflet map */
.contact-map-advanced {
  margin-bottom: 1.5rem;
}

.contact-map-advanced .glow-inner {
  background: #eef1f5;
}

#contactMap {
  height: 100%;
  min-height: 360px;
  width: 100%;
  z-index: 1;
  background: #e4e9ef;
}

@media (min-width: 992px) {
  #contactMap {
    min-height: 420px;
  }
}

.contact-map-directions {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #7c3aed, #6d28d9, #0891b2);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}

.contact-map-directions:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.5);
}

.contact-map-marker-wrap {
  background: none !important;
  border: none !important;
}

.contact-map-marker {
  position: relative;
  width: 40px;
  height: 40px;
}

.contact-map-marker-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(124, 58, 237, 0.35);
  animation: contact-marker-ring 2s ease-out infinite;
}

.contact-map-marker-core {
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  background: linear-gradient(145deg, #a78bfa 0%, #7c3aed 55%, #0891b2 100%);
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.45);
}

@keyframes contact-marker-ring {
  0% { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

.contact-map-popup strong {
  display: block;
  color: #7c3aed;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.contact-map-popup span {
  color: #64748b;
  font-size: 0.8rem;
  line-height: 1.5;
}

.leaflet-popup-content-wrapper {
  background: #fff !important;
  border: none !important;
  border-radius: 0.875rem !important;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.12) !important;
}

.leaflet-popup-content {
  margin: 0.85rem 1.1rem !important;
}

.leaflet-popup-tip {
  background: #fff !important;
  box-shadow: none !important;
}

.leaflet-control-zoom {
  border: none !important;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.1) !important;
  border-radius: 0.5rem !important;
  overflow: hidden;
}

.leaflet-control-zoom a {
  background: #fff !important;
  color: #334155 !important;
  border-color: #e2e8f0 !important;
  width: 32px !important;
  height: 32px !important;
  line-height: 32px !important;
}

.leaflet-control-zoom a:hover {
  background: #f8fafc !important;
  color: #7c3aed !important;
}

.leaflet-control-attribution {
  background: rgba(255, 255, 255, 0.85) !important;
  color: #94a3b8 !important;
  font-size: 0.6rem !important;
  backdrop-filter: blur(4px);
  border-radius: 0.25rem 0 0 0;
}

.leaflet-control-attribution a {
  color: #7c3aed !important;
}

/* Simple contact card */
.contact-simple-card {
  padding: 1.75rem;
  border-radius: 1.25rem;
  border: 1px solid var(--arc-border);
  background: rgba(19, 19, 28, 0.6);
  backdrop-filter: blur(16px);
}

.contact-section-info .contact-simple-item {
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--arc-border);
}

.contact-section-info .contact-simple-item:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.contact-section-info .contact-simple-actions {
  margin-top: auto;
}

.contact-simple-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-simple-item > i {
  font-size: 1.15rem;
  color: var(--arc-accent-light);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.contact-simple-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--arc-subtle);
  margin-bottom: 0.35rem;
}

.contact-simple-value {
  font-size: 0.9375rem;
  color: var(--arc-muted);
  line-height: 1.6;
}

.contact-simple-item address {
  font-style: normal;
}

.contact-simple-link {
  text-decoration: none;
  color: inherit;
  border-radius: 0.5rem;
  transition: opacity 0.2s;
}

.contact-simple-link:hover {
  color: inherit;
  opacity: 0.85;
}

.contact-simple-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--arc-border);
}

.contact-map-embed .glow-inner {
  background: var(--arc-ink);
  min-height: 420px;
}

.contact-map-embed iframe {
  flex: 1;
  display: block;
  filter: grayscale(20%) contrast(1.05);
}

.contact-map-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem 1.25rem;
  border-top: 1px solid var(--arc-border);
  background: rgba(19, 19, 28, 0.95);
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  border-radius: 1.5rem;
  border: 1px solid var(--arc-border);
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.08) 0%, rgba(19, 19, 28, 0.95) 45%, rgba(6, 182, 212, 0.05) 100%);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

@media (min-width: 992px) {
  .contact-info-panel {
    padding: 2rem;
  }
}

.contact-info-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--arc-border);
}

.contact-info-block:first-child {
  padding-top: 0;
}

.contact-info-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-icon-address {
  background: rgba(124, 58, 237, 0.15);
  color: var(--arc-accent-light);
  border: 1px solid rgba(124, 58, 237, 0.25);
}

.contact-info-icon-email {
  background: rgba(6, 182, 212, 0.12);
  color: #22d3ee;
  border: 1px solid rgba(6, 182, 212, 0.25);
}

.contact-info-icon-phone {
  background: rgba(192, 132, 252, 0.12);
  color: #c084fc;
  border: 1px solid rgba(192, 132, 252, 0.25);
}

.contact-info-icon-hours {
  background: rgba(251, 191, 36, 0.12);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.25);
}

.contact-info-block address {
  font-style: normal;
  line-height: 1.65;
}

.contact-info-link {
  text-decoration: none;
  color: inherit;
  transition: background 0.25s;
  margin: 0 -0.75rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  border-radius: 0.75rem;
}

.contact-info-link:hover {
  background: rgba(124, 58, 237, 0.06);
  color: inherit;
}

.contact-info-arrow {
  color: var(--arc-subtle);
  font-size: 0.9rem;
  margin-top: 0.25rem;
  transition: color 0.25s, transform 0.25s;
}

.contact-info-link:hover .contact-info-arrow {
  color: var(--arc-accent-light);
  transform: translate(2px, -2px);
}

.contact-info-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact-info-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--arc-border);
}

.contact-page-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--arc-border);
}

.contact-hero {
  position: relative;
  padding-top: 7.5rem;
  padding-bottom: 4rem;
  overflow: hidden;
}

.contact-hero .hero-orb-1 {
  width: 420px;
  height: 420px;
  top: -5%;
  right: -5%;
  left: auto;
  background: rgba(124, 58, 237, 0.24);
}

.contact-hero .hero-orb-2 {
  width: 320px;
  height: 320px;
  bottom: -15%;
  left: 0;
  top: auto;
  background: rgba(6, 182, 212, 0.18);
  animation-delay: -3s;
}

.contact-hero-orb-3 {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 45%;
  background: rgba(251, 191, 36, 0.12);
  animation-delay: -6s;
}

.contact-hero-visual .glow-inner {
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.12) 0%, rgba(19, 19, 28, 0.98) 50%, rgba(6, 182, 212, 0.08) 100%);
}

.contact-hero-visual-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-hero-visual-icon {
  width: 3rem;
  height: 3rem;
  font-size: 1.25rem;
  background: rgba(124, 58, 237, 0.2);
  border-color: rgba(167, 139, 250, 0.3);
}

.contact-hero-stat {
  padding: 1rem;
  border-radius: 0.875rem;
  border: 1px solid var(--arc-border);
  background: rgba(3, 3, 5, 0.45);
  text-align: center;
}

.contact-hero-stat-value {
  font-size: 1.35rem;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.contact-hero-email-strip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 0.875rem;
  border: 1px solid rgba(124, 58, 237, 0.25);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(6, 182, 212, 0.08));
  color: var(--arc-text);
  text-decoration: none;
  font-weight: 600;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.contact-hero-email-strip:hover {
  border-color: rgba(124, 58, 237, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.15);
  color: var(--arc-text);
}

.contact-hero-email-strip i:first-child {
  color: var(--arc-accent-light);
  font-size: 1.1rem;
}

.contact-quick-section {
  margin-top: 0;
}

.contact-quick-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid var(--arc-border);
  background: rgba(19, 19, 28, 0.65);
  backdrop-filter: blur(12px);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.contact-quick-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 1.25rem 1.25rem 0 0;
  opacity: 0.85;
}

.contact-quick-card-address::before {
  background: linear-gradient(90deg, #7c3aed, #a78bfa);
}

.contact-quick-card-email::before {
  background: linear-gradient(90deg, #06b6d4, #22d3ee);
}

.contact-quick-card-phone::before {
  background: linear-gradient(90deg, #c084fc, #e879f9);
}

.contact-quick-card-hours::before {
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
}

.contact-quick-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.contact-quick-card-address:hover { border-color: rgba(124, 58, 237, 0.35); }
.contact-quick-card-email:hover { border-color: rgba(6, 182, 212, 0.35); }
.contact-quick-card-phone:hover { border-color: rgba(192, 132, 252, 0.35); }
.contact-quick-card-hours:hover { border-color: rgba(251, 191, 36, 0.35); }

.contact-quick-card-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.contact-quick-card-address .contact-quick-card-icon {
  background: rgba(124, 58, 237, 0.15);
  color: var(--arc-accent-light);
  border: 1px solid rgba(124, 58, 237, 0.25);
}

.contact-quick-card-email .contact-quick-card-icon {
  background: rgba(6, 182, 212, 0.12);
  color: #22d3ee;
  border: 1px solid rgba(6, 182, 212, 0.25);
}

.contact-quick-card-phone .contact-quick-card-icon {
  background: rgba(192, 132, 252, 0.12);
  color: #c084fc;
  border: 1px solid rgba(192, 132, 252, 0.25);
}

.contact-quick-card-hours .contact-quick-card-icon {
  background: rgba(251, 191, 36, 0.12);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.25);
}

.contact-quick-card address {
  font-style: normal;
  line-height: 1.65;
}

.contact-quick-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.contact-quick-link:hover {
  color: inherit;
}

.contact-quick-arrow {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  color: var(--arc-subtle);
  font-size: 0.9rem;
  transition: color 0.3s, transform 0.3s;
}

.contact-quick-link:hover .contact-quick-arrow {
  color: var(--arc-accent-light);
  transform: translate(2px, -2px);
}

.contact-map-panel {
  position: relative;
  min-height: 380px;
  border-radius: 1.5rem;
  border: 1px solid var(--arc-border);
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(124, 58, 237, 0.18), transparent),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(6, 182, 212, 0.12), transparent),
    linear-gradient(180deg, rgba(19, 19, 28, 0.95), rgba(3, 3, 5, 0.98));
  overflow: hidden;
}

.contact-map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 45%, black 20%, transparent 80%);
}

.contact-map-pin {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -100%);
  z-index: 2;
}

.contact-map-pin-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #06b6d4);
  border: 3px solid #fff;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.5);
  position: relative;
  z-index: 2;
}

.contact-map-pin-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  margin: -24px 0 0 -24px;
  border-radius: 50%;
  border: 2px solid rgba(124, 58, 237, 0.4);
  animation: contact-pin-pulse 2s ease-out infinite;
}

@keyframes contact-pin-pulse {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.contact-map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  background: linear-gradient(to top, rgba(3, 3, 5, 0.95) 0%, rgba(3, 3, 5, 0.7) 70%, transparent);
  z-index: 3;
}

.contact-map-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-map-label i {
  font-size: 1.25rem;
}

.contact-office-panel .glow-inner {
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.06) 0%, rgba(19, 19, 28, 0.98) 40%, rgba(6, 182, 212, 0.04) 100%);
}

.contact-office-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-office-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--arc-border);
}

.contact-office-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.contact-office-row .icon-box {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-office-row address {
  font-style: normal;
  line-height: 1.65;
}

.contact-social-block {
  border-top: 1px solid var(--arc-border);
}

.contact-cta-glow {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.45), transparent);
  filter: blur(60px);
}

.contact-perks {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-perk {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.25rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--arc-border);
  background: rgba(19, 19, 28, 0.55);
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.contact-perk:hover {
  border-color: rgba(124, 58, 237, 0.25);
  background: rgba(124, 58, 237, 0.06);
  transform: translateY(-2px);
}

.contact-perk .icon-box {
  width: 2.25rem;
  height: 2.25rem;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.contact-intro-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 520px;
}

.contact-form-panel {
  height: 100%;
}

.contact-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.contact-trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--arc-border);
  background: rgba(19, 19, 28, 0.6);
  color: var(--arc-muted);
  font-size: 0.75rem;
  font-weight: 500;
}

.contact-trust-chip i {
  color: var(--arc-accent-light);
  font-size: 0.8rem;
}

.contact-simple-wrap {
  max-width: 520px;
  margin: 0 auto;
}

.contact-email-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(124, 58, 237, 0.2);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.14), rgba(6, 182, 212, 0.08));
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.contact-email-card:hover {
  border-color: rgba(124, 58, 237, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.15);
  color: inherit;
}

.contact-email-card .icon-box {
  background: rgba(124, 58, 237, 0.2);
  border-color: rgba(167, 139, 250, 0.25);
}

.contact-note {
  font-size: 0.875rem;
  color: var(--arc-subtle);
}

.contact-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--arc-subtle);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 1.5rem 0;
}

.contact-divider::before,
.contact-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--arc-border);
}

/* About page */
.about-hero {
  position: relative;
  padding-top: 7.5rem;
  padding-bottom: 3rem;
  overflow: hidden;
}

.about-hero .hero-orb-1 {
  width: 360px;
  height: 360px;
  top: -5%;
  right: -5%;
  left: auto;
  background: rgba(124, 58, 237, 0.22);
}

.about-hero .hero-orb-2 {
  width: 300px;
  height: 300px;
  bottom: -15%;
  left: 0;
  top: auto;
  background: rgba(6, 182, 212, 0.16);
  animation-delay: -4s;
}

.about-hero-photo {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--arc-border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.about-hero-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.about-hero-photo-caption {
  padding: 1rem 1.25rem;
  background: rgba(19, 19, 28, 0.95);
  border-top: 1px solid var(--arc-border);
}

.about-stat-card {
  border: 1px solid var(--arc-border);
  border-radius: 1rem;
  padding: 1.25rem 1rem;
  background: rgba(19, 19, 28, 0.55);
  text-align: center;
  height: 100%;
  transition: border-color 0.3s, transform 0.3s;
}

.about-stat-card:hover {
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateY(-3px);
}

.about-mission-panel .glow-inner {
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.07) 0%, rgba(19, 19, 28, 0.98) 50%, rgba(6, 182, 212, 0.05) 100%);
  padding: 2rem;
}

@media (min-width: 992px) {
  .about-mission-panel .glow-inner {
    padding: 2.5rem 3rem;
  }
}

.about-photo-grid img {
  width: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
  border: 1px solid var(--arc-border);
  display: block;
  background: rgba(19, 19, 28, 0.8);
}

.about-photo-grid .about-photo-tall {
  height: 160px;
}

.about-photo-grid .about-photo-wide {
  height: 140px;
}

/* Form */
.form-arcnova .form-control,
.form-arcnova .form-select {
  background: rgba(3, 3, 5, 0.6);
  border: 1px solid var(--arc-border);
  color: var(--arc-text);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
}

.form-arcnova .form-control:focus,
.form-arcnova .form-select:focus {
  background: rgba(3, 3, 5, 0.8);
  border-color: rgba(124, 58, 237, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.15);
  color: var(--arc-text);
}

.form-arcnova .form-control::placeholder {
  color: var(--arc-subtle);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--arc-border);
  background: rgba(8, 8, 15, 0.6);
}

.social-link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  border: 1px solid var(--arc-border);
  background: rgba(19, 19, 28, 0.5);
  color: var(--arc-subtle);
  transition: all 0.2s;
}

.social-link:hover {
  border-color: rgba(124, 58, 237, 0.3);
  background: rgba(124, 58, 237, 0.1);
  color: var(--arc-accent-light);
}

/* Timeline */
.timeline-line {
  position: absolute;
  left: 1.5rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, rgba(124, 58, 237, 0.4), rgba(6, 182, 212, 0.2), transparent);
}

.timeline-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(124, 58, 237, 0.3);
  background: #08080f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--arc-accent-light);
  flex-shrink: 0;
}

.text-muted-arc {
  color: var(--arc-muted) !important;
}

.text-subtle-arc {
  color: var(--arc-subtle) !important;
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  border: 1px solid rgba(124, 58, 237, 0.2);
  background: rgba(124, 58, 237, 0.1);
  color: var(--arc-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-section {
  border-radius: 2.5rem;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.25), rgba(192, 132, 252, 0.15), rgba(6, 182, 212, 0.1));
  border: 1px solid var(--arc-border);
  overflow: hidden;
  position: relative;
}

.trust-pill {
  border: 1px solid var(--arc-border);
  background: rgba(19, 19, 28, 0.4);
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  color: var(--arc-muted);
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--arc-muted);
  text-decoration: none;
}

.contact-info-item:hover {
  color: var(--arc-text);
}

.office-card {
  border: 1px solid var(--arc-border);
  background: rgba(3, 3, 5, 0.3);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
}

.industry-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.work-img {
  height: 192px;
  object-fit: cover;
  width: 100%;
}

@media (min-width: 992px) {
  .timeline-line {
    left: 50%;
    transform: translateX(-50%);
  }

  .py-lg-6 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .pb-6 {
    padding-bottom: 5rem !important;
  }
}

/* Portfolio page — classic editorial, advanced polish */
.portfolio-page {
  overflow-x: hidden;
  --portfolio-gold: #d4af6a;
  --portfolio-gold-soft: rgba(212, 175, 106, 0.35);
}

.portfolio-serif {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, #f5e6c8 0%, var(--portfolio-gold) 45%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.portfolio-hero {
  position: relative;
  padding-top: 7rem;
  padding-bottom: 2rem;
  overflow: hidden;
}

.portfolio-hero-classic {
  padding-bottom: 3.5rem;
}

.portfolio-hero .hero-orb-1 {
  width: 420px;
  height: 420px;
  top: -12%;
  right: 10%;
  left: auto;
  background: rgba(124, 58, 237, 0.15);
}

.portfolio-hero .hero-orb-2 {
  width: 300px;
  height: 300px;
  bottom: 5%;
  left: 5%;
  top: auto;
  background: rgba(212, 175, 106, 0.08);
  animation-delay: -3s;
}

.portfolio-eyebrow {
  margin-bottom: 1.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--portfolio-gold);
}

.portfolio-hero-title {
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.portfolio-hero-lead {
  max-width: 32rem;
  font-size: 1.0625rem;
  line-height: 1.7;
}

.portfolio-hero-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto 2rem;
  max-width: 280px;
}

.portfolio-hero-rule::before,
.portfolio-hero-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--portfolio-gold-soft), transparent);
}

.portfolio-hero-rule span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--portfolio-gold);
  box-shadow: 0 0 12px var(--portfolio-gold-soft);
}

.portfolio-metrics-classic {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

.portfolio-metrics-classic li {
  position: relative;
  padding: 0 2rem;
  text-align: center;
}

.portfolio-metrics-classic li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 2.5rem;
  transform: translateY(-50%);
  background: linear-gradient(to bottom, transparent, var(--portfolio-gold-soft), transparent);
}

.portfolio-metrics-classic strong {
  display: block;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  color: var(--arc-text);
  margin-bottom: 0.35rem;
}

.portfolio-metrics-classic span {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--arc-subtle);
}

.portfolio-hero-media {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

.portfolio-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 3, 5, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.portfolio-hero-media img {
  display: block;
  width: 100%;
  min-height: 260px;
  max-height: 420px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-hero-media:hover img {
  transform: scale(1.02);
}

@media (min-width: 992px) {
  .portfolio-hero-media img {
    min-height: 340px;
    max-height: 480px;
  }
}

.portfolio-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(212, 175, 106, 0.12);
}

.portfolio-section-title {
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.portfolio-subsection-head {
  margin-top: 1rem;
  margin-bottom: 2.5rem;
  padding-top: 3rem;
}

.portfolio-subsection-head::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 2.5rem;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 106, 0.22) 50%, transparent);
}

.portfolio-stack {
  display: flex;
  flex-direction: column;
}

.portfolio-list {
  padding-top: 1rem;
}

.portfolio-item {
  position: relative;
  padding: 4rem 0;
}

.portfolio-item + .portfolio-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 106, 0.2) 50%, transparent);
}

@media (min-width: 992px) {
  .portfolio-item {
    padding: 5rem 0;
  }
}

.portfolio-media {
  position: relative;
  border-radius: 0.375rem;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.32);
  aspect-ratio: 16 / 10;
  background: #13131c;
}

.portfolio-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.15);
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.portfolio-item:hover .portfolio-media::after {
  opacity: 0.5;
}

.portfolio-media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.04) saturate(1.08);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s ease;
}

.portfolio-item:hover .portfolio-media img {
  transform: scale(1.03);
  filter: contrast(1.06) saturate(1.12) brightness(1.03);
}

.portfolio-copy {
  position: relative;
  padding: 1rem 0;
}

@media (min-width: 992px) {
  .portfolio-copy {
    padding: 1.5rem 0 1.5rem 2rem;
  }

  .portfolio-item-alt .portfolio-copy {
    padding: 1.5rem 2rem 1.5rem 0;
  }
}

.portfolio-num {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 4.5rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(212, 175, 106, 0.15);
  margin-bottom: -0.5rem;
  margin-left: -0.15rem;
  user-select: none;
}

@media (min-width: 992px) {
  .portfolio-num {
    font-size: 5.5rem;
    margin-bottom: -1rem;
  }
}

.portfolio-meta {
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--portfolio-gold);
  border-bottom: 1px solid rgba(212, 175, 106, 0.15);
  max-width: 12rem;
}

.portfolio-copy h2 {
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.portfolio-copy p {
  line-height: 1.75;
  font-size: 0.975rem;
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
  color: var(--arc-text);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: gap 0.3s ease, color 0.3s ease;
}

.portfolio-link i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.portfolio-link:hover {
  color: var(--portfolio-gold);
  gap: 0.75rem;
}

.portfolio-link:hover i {
  transform: translate(2px, -2px);
}

.portfolio-link-muted {
  color: var(--arc-muted);
}

.portfolio-link-muted:hover {
  color: var(--arc-text);
}

.portfolio-link-muted:hover i {
  transform: translateX(3px);
}

.portfolio-cta-section {
  padding-top: 2rem;
}

.portfolio-cta-panel {
  padding: 3rem 0 1rem;
}

.portfolio-cta-rule {
  margin-bottom: 2rem;
}

.portfolio-cta-text {
  max-width: 480px;
  line-height: 1.75;
}

@media (max-width: 991.98px) {
  .portfolio-section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .portfolio-metrics-classic li {
    padding: 0.75rem 1.25rem;
  }

  .portfolio-metrics-classic li + li::before {
    height: 1.5rem;
  }

  .portfolio-num {
    font-size: 3.5rem;
  }

  .portfolio-item {
    padding: 2.75rem 0;
  }
}

/* ============================================================
   Home page — premium visual polish
   ============================================================ */

.home-page .hero-trusted {
  border-top: none;
  padding-top: 0.75rem;
}

.home-page .hero-grid-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black, transparent);
}

.home-page .hero-photo-wrap-compact {
  position: relative;
}

.home-page .hero-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(124, 58, 237, 0.2) 0%,
    transparent 40%,
    rgba(6, 182, 212, 0.15) 100%
  );
  pointer-events: none;
}

.home-page .hero-photo-wrap-compact img {
  transition: transform 8s ease;
}

.home-page .hero-photo-wrap-compact:hover img {
  transform: scale(1.04);
}

.home-page .hero-float-chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(19, 19, 28, 0.82);
  backdrop-filter: blur(12px);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--arc-text);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  animation: float 5s ease-in-out infinite;
}

.home-page .hero-float-chip i {
  font-size: 0.85rem;
}

.home-page .hero-float-chip-1 {
  top: 12%;
  left: 8%;
  border-color: rgba(52, 211, 153, 0.35);
}

.home-page .hero-float-chip-1 i {
  color: #34d399;
}

.home-page .hero-float-chip-2 {
  bottom: 28%;
  right: 6%;
  animation-delay: 1.5s;
  border-color: rgba(192, 132, 252, 0.35);
}

.home-page .hero-float-chip-2 i {
  color: #c084fc;
}

.home-page .hero-photo-caption {
  position: relative;
  z-index: 2;
}

.home-page .hero-trusted-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(19, 19, 28, 0.6));
  backdrop-filter: blur(16px);
}

.home-page .hero-trusted-label {
  flex-shrink: 0;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-page .hero-trusted-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex: 1;
}

.home-page .trusted-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--arc-border);
  background: rgba(19, 19, 28, 0.5);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--arc-muted);
  transition: border-color 0.25s, color 0.25s, transform 0.25s;
}

.home-page .trusted-chip:hover {
  transform: translateY(-1px);
  color: var(--arc-text);
}

.home-page .trusted-chip-health {
  border-color: rgba(52, 211, 153, 0.25);
  background: rgba(52, 211, 153, 0.06);
}

.home-page .trusted-chip-health i { color: #34d399; }

.home-page .trusted-chip-omni {
  border-color: rgba(192, 132, 252, 0.25);
  background: rgba(192, 132, 252, 0.06);
}

.home-page .trusted-chip-omni i { color: #c084fc; }

.home-page .trusted-chip-iot {
  border-color: rgba(6, 182, 212, 0.25);
  background: rgba(6, 182, 212, 0.06);
}

.home-page .trusted-chip-iot i { color: #22d3ee; }

.home-page .trusted-chip-access {
  border-color: rgba(251, 191, 36, 0.25);
  background: rgba(251, 191, 36, 0.06);
}

.home-page .trusted-chip-access i { color: #fbbf24; }

/* Section rhythm */
.home-page .home-section-muted {
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.05) 0%, rgba(6, 182, 212, 0.03) 50%, transparent 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.home-page .home-section-spec {
  position: relative;
}

.home-page .home-section-spec::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(52, 211, 153, 0.06), transparent);
}

.home-page .home-section-spec > .container-xl {
  position: relative;
}

/* Project cards */
.home-page .project-card-premium {
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(19, 19, 28, 0.6));
}

.home-page .project-card-img-wrap {
  overflow: hidden;
  position: relative;
}

.home-page .project-card-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19, 19, 28, 0.5), transparent 50%);
  pointer-events: none;
}

.home-page .project-card-premium img {
  height: 200px;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.home-page .project-card-premium:hover {
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  transform: translateY(-4px);
}

.home-page .project-card-premium:hover img {
  transform: scale(1.07);
}

/* Focus cards */
.home-page .focus-card-premium img {
  transition: transform 0.55s ease;
}

.home-page .focus-card-premium:hover img {
  transform: scale(1.05);
}

.home-page .focus-card-premium:hover {
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
}

/* Highlight stats */
.home-page .home-stat-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(124, 58, 237, 0.06));
  backdrop-filter: blur(8px);
}

.home-page .home-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.12);
}

/* Brand pillars */
.home-page .brand-card-pillar {
  position: relative;
  overflow: hidden;
}

.home-page .brand-card-pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 1.5rem 1.5rem 0 0;
}

.home-page .brand-card-health::before {
  background: linear-gradient(90deg, #34d399, transparent);
}

.home-page .brand-card-iot::before {
  background: linear-gradient(90deg, #22d3ee, transparent);
}

.home-page .brand-card-omni::before {
  background: linear-gradient(90deg, #c084fc, transparent);
}

.home-page .brand-card-health .icon-box {
  border-color: rgba(52, 211, 153, 0.25);
  background: rgba(52, 211, 153, 0.1);
  color: #34d399;
}

.home-page .brand-card-iot .icon-box {
  border-color: rgba(6, 182, 212, 0.25);
  background: rgba(6, 182, 212, 0.1);
  color: #22d3ee;
}

.home-page .brand-card-omni .icon-box {
  border-color: rgba(192, 132, 252, 0.25);
  background: rgba(192, 132, 252, 0.1);
  color: #c084fc;
}

/* Testimonials */
.home-page .testimonial-card-accent {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(19, 19, 28, 0.55));
  border-top: 3px solid transparent;
}

.home-page .testimonial-accent-omni {
  border-top-color: rgba(192, 132, 252, 0.5);
}

.home-page .testimonial-accent-iot {
  border-top-color: rgba(6, 182, 212, 0.5);
}

.home-page .testimonial-accent-health {
  border-top-color: rgba(52, 211, 153, 0.5);
}

.home-page .testimonial-card-accent::before {
  color: rgba(124, 58, 237, 0.2);
  font-size: 5rem;
}

.home-page .testimonial-card-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

/* CTA */
.home-page .cta-section-premium {
  border: 1px solid rgba(124, 58, 237, 0.25);
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.14), rgba(19, 19, 28, 0.95) 45%, rgba(6, 182, 212, 0.1));
  box-shadow: 0 24px 64px rgba(124, 58, 237, 0.15);
}

.home-page .cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.home-page .cta-orb-1 {
  width: 280px;
  height: 280px;
  top: -20%;
  right: -5%;
  background: rgba(124, 58, 237, 0.35);
}

.home-page .cta-orb-2 {
  width: 220px;
  height: 220px;
  bottom: -15%;
  left: -5%;
  background: rgba(6, 182, 212, 0.25);
}

/* Staggered scroll reveals */
.home-page .connect-banner {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

@media (max-width: 991.98px) {
  .home-page .hero-trusted-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-page .hero-float-chip {
    display: none;
  }

  .home-page .hero-trusted-chips {
    width: 100%;
  }
}

/* Home — extra polish (v2) */
.home-page .bg-mesh {
  background-image:
    radial-gradient(ellipse 90% 60% at 50% -30%, rgba(124, 58, 237, 0.32), transparent),
    radial-gradient(ellipse 70% 50% at 100% 10%, rgba(6, 182, 212, 0.18), transparent),
    radial-gradient(ellipse 60% 40% at 0% 80%, rgba(192, 132, 252, 0.14), transparent),
    radial-gradient(ellipse 50% 35% at 80% 90%, rgba(52, 211, 153, 0.08), transparent);
}

.home-page .hero-photo-frame {
  position: relative;
}

.home-page .hero-photo-glow {
  position: absolute;
  inset: -8%;
  border-radius: 2rem;
  background: conic-gradient(from 200deg, rgba(124, 58, 237, 0.35), rgba(52, 211, 153, 0.2), rgba(6, 182, 212, 0.3), rgba(192, 132, 252, 0.25), rgba(124, 58, 237, 0.35));
  filter: blur(40px);
  opacity: 0.7;
  animation: glowPulse 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.55; transform: scale(0.98); }
  50% { opacity: 0.85; transform: scale(1.02); }
}

.home-page .hero-photo-frame .hero-photo-wrap-compact {
  position: relative;
  z-index: 1;
}

.home-page .btn-arcnova {
  position: relative;
  overflow: hidden;
}

.home-page .btn-arcnova::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.home-page .btn-arcnova:hover::after {
  left: 120%;
}

.home-page .connect-banner-rich {
  position: relative;
  padding: 1.5rem 1.75rem;
  border-radius: 1.25rem;
  overflow: hidden;
}

.home-page .connect-banner-icons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.home-page .connect-banner-icons span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid var(--arc-border);
  background: rgba(19, 19, 28, 0.6);
  font-size: 0.9rem;
}

.home-page .connect-banner-icons span:nth-child(1) i { color: #c084fc; }
.home-page .connect-banner-icons span:nth-child(2) i { color: #34d399; }
.home-page .connect-banner-icons span:nth-child(3) i { color: #22d3ee; }

.home-page .focus-card-premium {
  position: relative;
}

.home-page .focus-card-num {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  z-index: 2;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.home-page .home-section-process {
  position: relative;
}

.home-page .home-section-process .process-step {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(19, 19, 28, 0.55));
  border-color: rgba(124, 58, 237, 0.15);
}

.home-page .home-section-process .timeline-dot {
  background: linear-gradient(135deg, var(--arc-accent), var(--arc-cyan));
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

.home-page .bento-item.featured {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.home-page .bento-item.featured:hover {
  transform: translateY(-6px);
}

/* Services section — photo cards */
.home-page .service-bento-photo.bento-item.featured {
  background: rgba(19, 19, 28, 0.55);
}

.home-page .service-bento-photo,
.home-page .service-card-photo {
  padding: 0;
  overflow: hidden;
}

.home-page .service-card-img-wrap {
  overflow: hidden;
  position: relative;
}

.home-page .service-card-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19, 19, 28, 0.45), transparent 55%);
  pointer-events: none;
}

.home-page .service-bento-photo .service-card-img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.home-page .service-card-photo .service-card-img-wrap img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.home-page .service-bento-photo:hover .service-card-img-wrap img,
.home-page .service-card-photo:hover .service-card-img-wrap img {
  transform: scale(1.06);
}

.home-page .service-bento-photo.focus-card-health:hover {
  border-color: rgba(52, 211, 153, 0.4);
}

.home-page .service-bento-photo.focus-card-omni:hover {
  border-color: rgba(192, 132, 252, 0.4);
}

.home-page .service-bento-photo.focus-card-iot:hover {
  border-color: rgba(6, 182, 212, 0.4);
}

.home-page .section-label {
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.12);
}

.home-page .site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, transparent, rgba(19, 19, 28, 0.5));
}

/* Meaningful content sections */
.home-page .home-section-lead {
  max-width: 640px;
}

.home-page .home-section-audience {
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.04) 0%, transparent 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.home-page .audience-card {
  border: 1px solid var(--arc-border);
  border-radius: 1.25rem;
  padding: 1.75rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(19, 19, 28, 0.55));
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.home-page .audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.home-page .audience-card-health:hover { border-color: rgba(52, 211, 153, 0.35); }
.home-page .audience-card-iot:hover { border-color: rgba(6, 182, 212, 0.35); }
.home-page .audience-card-omni:hover { border-color: rgba(192, 132, 252, 0.35); }

.home-page .audience-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 1rem;
  border: 1px solid var(--arc-border);
}

.home-page .audience-card-health .audience-icon {
  background: rgba(52, 211, 153, 0.1);
  border-color: rgba(52, 211, 153, 0.25);
  color: #34d399;
}

.home-page .audience-card-iot .audience-icon {
  background: rgba(6, 182, 212, 0.1);
  border-color: rgba(6, 182, 212, 0.25);
  color: #22d3ee;
}

.home-page .audience-card-omni .audience-icon {
  background: rgba(192, 132, 252, 0.1);
  border-color: rgba(192, 132, 252, 0.25);
  color: #c084fc;
}

.home-page .audience-outcomes li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
  color: var(--arc-muted);
}

.home-page .audience-outcomes i {
  color: var(--arc-accent-light);
  font-size: 0.75rem;
}

.home-page .home-case-problem {
  font-style: italic;
  letter-spacing: 0.01em;
}

.home-page .solve-when {
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.home-page .home-section-partner .brand-panel {
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.1), rgba(19, 19, 28, 0.95) 50%, rgba(52, 211, 153, 0.05));
}

.home-page .partner-point {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(19, 19, 28, 0.45);
  height: 100%;
}

.home-page .partner-point i {
  color: var(--arc-accent-light);
  font-size: 1.1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.home-page .home-deliverables {
  border: 1px solid rgba(52, 211, 153, 0.2);
  background: linear-gradient(160deg, rgba(52, 211, 153, 0.08), rgba(19, 19, 28, 0.7));
}

.home-page .home-deliverables-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
  color: var(--arc-muted);
  line-height: 1.5;
}

.home-page .home-deliverables-list li:last-child {
  margin-bottom: 0;
}

.home-page .home-deliverables-list i {
  color: #34d399;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.home-page .home-also-bar {
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--arc-border);
  background: rgba(19, 19, 28, 0.55);
}

.home-page .home-section-work {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ============================================================
   Home — simple advanced animations
   ============================================================ */

.home-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 1100;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.04);
}

.home-scroll-progress-bar {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--arc-accent), var(--arc-cyan), #34d399);
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.5);
  transition: width 0.12s linear;
}

@media (prefers-reduced-motion: reduce) {
  .home-scroll-progress {
    display: none;
  }

  .home-page .hero-reveal,
  .home-page .hero-chip-reveal,
  .home-page .reveal-group > [class*="col-"],
  .home-page .pill-pop,
  .home-page .anim-block,
  .home-page .fade-up-blur {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
    filter: none !important;
  }

  .home-page .arcnova-nav {
    animation: none !important;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .home-page .hero-reveal {
    opacity: 0;
    transform: translateY(18px);
    animation: homeRevealUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .home-page .hero-reveal-right {
    transform: translateX(28px);
    animation-name: homeRevealRight;
  }

  .home-page .hero-reveal-d1 { animation-delay: 0.08s; }
  .home-page .hero-reveal-d2 { animation-delay: 0.18s; }
  .home-page .hero-reveal-d3 { animation-delay: 0.28s; }
  .home-page .hero-reveal-d4 { animation-delay: 0.38s; }
  .home-page .hero-reveal-d5 { animation-delay: 0.48s; }
  .home-page .hero-reveal-d6 { animation-delay: 0.62s; }

  .home-page .hero-chip-reveal {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
    animation: homeChipIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(0.72s + var(--chip-i, 0) * 0.08s);
  }

  @keyframes homeRevealUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes homeRevealRight {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes homeChipIn {
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  .home-page .fade-up {
    opacity: 0;
    transform: translateY(26px);
    transition:
      opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .home-page .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .home-page .reveal-group > [class*="col-"] {
    opacity: 0;
    transform: translateY(22px);
    transition:
      opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .home-page .reveal-group.is-visible > [class*="col-"] {
    opacity: 1;
    transform: translateY(0);
  }

  .home-page .reveal-group.is-visible > [class*="col-"]:nth-child(1) { transition-delay: 0.04s; }
  .home-page .reveal-group.is-visible > [class*="col-"]:nth-child(2) { transition-delay: 0.12s; }
  .home-page .reveal-group.is-visible > [class*="col-"]:nth-child(3) { transition-delay: 0.2s; }
  .home-page .reveal-group.is-visible > [class*="col-"]:nth-child(4) { transition-delay: 0.28s; }
  .home-page .reveal-group.is-visible > [class*="col-"]:nth-child(5) { transition-delay: 0.36s; }
  .home-page .reveal-group.is-visible > [class*="col-"]:nth-child(6) { transition-delay: 0.44s; }

  .home-page .process-step-anim .timeline-dot {
    transform: scale(0.6);
    opacity: 0;
    transition:
      transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
      opacity 0.45s ease;
  }

  .home-page .reveal-group.is-visible .process-step-anim .timeline-dot {
    transform: scale(1);
    opacity: 1;
  }

  .home-page .hero-photo-frame {
    will-change: transform;
  }

  .home-page .hero-grid-pattern {
    animation: gridDrift 24s linear infinite;
  }

  @keyframes gridDrift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(48px, 48px); }
  }

  .home-page .audience-card,
  .home-page .project-card-premium,
  .home-page .focus-card-premium,
  .home-page .testimonial-card-accent,
  .home-page .service-card {
    transition:
      transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.35s ease,
      border-color 0.35s ease;
  }

  .home-page .audience-card:hover,
  .home-page .project-card-premium:hover,
  .home-page .focus-card-premium:hover,
  .home-page .service-card:hover {
    transform: translateY(-6px);
  }

  .home-page .testimonial-card-accent:hover {
    transform: translateY(-4px);
  }

  .home-page .btn-arcnova,
  .home-page .btn-ghost {
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease,
      border-color 0.25s ease,
      background 0.25s ease;
  }

  .home-page .btn-arcnova:active,
  .home-page .btn-ghost:active {
    transform: scale(0.98);
  }

  .home-page .expertise-pill {
    transition: transform 0.25s ease, border-color 0.25s ease;
  }

  .home-page .expertise-pill:hover {
    transform: translateY(-2px);
  }

  .home-page .cta-section-premium {
    animation: ctaGlow 6s ease-in-out infinite alternate;
  }

  @keyframes ctaGlow {
    from { box-shadow: 0 24px 64px rgba(124, 58, 237, 0.12); }
    to { box-shadow: 0 28px 72px rgba(6, 182, 212, 0.18); }
  }

  /* Extra motion — still lightweight */
  .home-page .fade-up-blur {
    filter: blur(6px);
    transition:
      opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
      filter 0.7s ease;
  }

  .home-page .fade-up-blur.visible {
    filter: blur(0);
  }

  .home-page .section-label-anim {
    position: relative;
    animation: labelGlow 3s ease-in-out infinite alternate;
  }

  @keyframes labelGlow {
    from { box-shadow: 0 0 12px rgba(124, 58, 237, 0.08); }
    to { box-shadow: 0 0 22px rgba(6, 182, 212, 0.18); }
  }

  .home-page .pill-pop {
    opacity: 0;
    transform: scale(0.85);
    animation: pillPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: calc(0.52s + var(--pill-i, 0) * 0.1s);
  }

  @keyframes pillPop {
    to { opacity: 1; transform: scale(1); }
  }

  .home-page .hero-orb-4 {
    width: 220px;
    height: 220px;
    bottom: 5%;
    right: 20%;
    background: rgba(52, 211, 153, 0.12);
    animation-delay: 5s;
  }

  .home-page .hero-orbs-parallax {
    transition: transform 0.15s ease-out;
  }

  .home-page .hero-float-chip-3 {
    top: 48%;
    right: 10%;
    animation-delay: 2.5s;
    border-color: rgba(6, 182, 212, 0.35);
  }

  .home-page .hero-float-chip-3 i {
    color: #22d3ee;
  }

  .home-page .glow-border-anim {
    background-size: 200% 200%;
    animation: borderShift 8s ease infinite;
  }

  @keyframes borderShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }

  .home-page .anim-block {
    opacity: 0;
    transform: translateY(20px);
    transition:
      opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .home-page .anim-block.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .home-page .anim-stagger-list .partner-point,
  .home-page .anim-stagger-list > li {
    opacity: 0;
    transform: translateX(-16px);
    transition:
      opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .home-page .anim-stagger-list.is-visible .partner-point,
  .home-page .anim-stagger-list.is-visible > li {
    opacity: 1;
    transform: translateX(0);
    transition-delay: calc(var(--item-i, 0) * 0.1s);
  }

  .home-page .reveal-group.is-visible .audience-icon {
    animation: iconBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
  }

  .home-page .reveal-group.is-visible .col-md-4:nth-child(1) .audience-icon { animation-delay: 0.15s; }
  .home-page .reveal-group.is-visible .col-md-4:nth-child(2) .audience-icon { animation-delay: 0.25s; }
  .home-page .reveal-group.is-visible .col-md-4:nth-child(3) .audience-icon { animation-delay: 0.35s; }

  @keyframes iconBounce {
    0% { opacity: 0; transform: scale(0.5) rotate(-8deg); }
    100% { opacity: 1; transform: scale(1) rotate(0); }
  }

  .home-page .project-card-premium {
    position: relative;
    overflow: hidden;
  }

  .home-page .project-card-premium::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.06) 50%, transparent 60%);
    transform: translateX(-120%);
    transition: transform 0.65s ease;
    pointer-events: none;
    z-index: 2;
  }

  .home-page .project-card-premium:hover::after {
    transform: translateX(120%);
  }

  .home-page .project-card-premium:hover .project-card-img-wrap img {
    transform: scale(1.1);
  }

  .home-page .focus-card-premium::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.4), rgba(52, 211, 153, 0.3), rgba(6, 182, 212, 0.4));
    background-size: 200% 200%;
    animation: cardBorderFlow 6s linear infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 3;
  }

  .home-page .focus-card-premium:hover::before {
    opacity: 1;
  }

  @keyframes cardBorderFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
  }

  .home-page .reveal-group.is-visible .metric-badge {
    animation: badgePop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
    animation-delay: 0.35s;
  }

  @keyframes badgePop {
    0% { opacity: 0; transform: scale(0.7); }
    100% { opacity: 1; transform: scale(1); }
  }

  .home-page .reveal-group.is-visible .process-step-anim {
    animation: stepLift 0.55s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  }

  .home-page .reveal-group.is-visible .col-sm-6:nth-child(1) .process-step-anim { animation-delay: 0.1s; }
  .home-page .reveal-group.is-visible .col-sm-6:nth-child(2) .process-step-anim { animation-delay: 0.2s; }
  .home-page .reveal-group.is-visible .col-sm-6:nth-child(3) .process-step-anim { animation-delay: 0.3s; }
  .home-page .reveal-group.is-visible .col-sm-6:nth-child(4) .process-step-anim { animation-delay: 0.4s; }

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

  .home-page .testimonial-card-accent.is-card-visible .testimonial-avatar {
    animation: avatarRing 0.6s ease backwards;
  }

  @keyframes avatarRing {
    0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.5); transform: scale(0.8); }
    70% { box-shadow: 0 0 0 12px rgba(124, 58, 237, 0); transform: scale(1.05); }
    100% { transform: scale(1); }
  }

  .home-page .cta-anim-pulse.is-visible {
    animation: ctaGlow 6s ease-in-out infinite alternate, ctaPulse 3s ease-in-out infinite;
  }

  @keyframes ctaPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.008); }
  }

  .home-page .btn-ghost:hover .bi-arrow-right,
  .home-page .btn-arcnova:hover .bi-arrow-right {
    animation: arrowNudge 0.6s ease infinite alternate;
  }

  @keyframes arrowNudge {
    from { transform: translateX(0); }
    to { transform: translateX(4px); }
  }

  .home-page .arcnova-nav {
    animation: navSlideDown 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  @keyframes navSlideDown {
    from { opacity: 0; transform: translateY(-12px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .home-page .anim-section.in-view {
    /* marker class for JS optional effects */
  }

  .home-page .trusted-chip:hover {
    transform: translateY(-2px) scale(1.02);
  }

  .home-page .trusted-chip {
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  }

  .home-page .trusted-chip:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }
}

/* ============================================================
   About page — advanced layout & motion
   ============================================================ */

.about-page .bg-mesh {
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(124, 58, 237, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(6, 182, 212, 0.06), transparent);
}

/* Editorial hero — distinct from home */
.about-hero-editorial,
.about-hero-premium {
  position: relative;
  padding-top: 6.5rem;
  padding-bottom: 3rem;
  overflow: hidden;
}

.about-hero-title {
  font-size: clamp(1.75rem, 3.2vw, 2.45rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.about-hero-lead {
  font-size: 1rem;
  line-height: 1.65;
  max-width: 34rem;
}

.about-hero-text {
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 34rem;
  color: var(--arc-subtle);
}

.about-hero-premium .section-label {
  font-size: 0.72rem;
  margin-bottom: 1rem !important;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  transition: transform 0.15s ease-out;
}

.about-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: aboutOrbFloat 14s ease-in-out infinite alternate;
}

.about-hero-orb-1 {
  width: 380px;
  height: 380px;
  top: -8%;
  right: -5%;
  background: rgba(124, 58, 237, 0.2);
}

.about-hero-orb-2 {
  width: 300px;
  height: 300px;
  bottom: -12%;
  left: -5%;
  background: rgba(6, 182, 212, 0.14);
  animation-delay: -5s;
}

.about-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, black, transparent);
  animation: aboutGridDrift 28s linear infinite;
}

@keyframes aboutOrbFloat {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(20px, -16px) scale(1.06); }
}

@keyframes aboutGridDrift {
  from { transform: translate(0, 0); }
  to { transform: translate(44px, 44px); }
}

.about-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 1100;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.03);
}

.about-scroll-progress-bar {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #34d399, var(--arc-accent), var(--arc-cyan));
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.35);
  transition: width 0.12s linear;
}

.about-label-glow {
  animation: aboutLabelGlow 3.5s ease-in-out infinite alternate;
}

@keyframes aboutLabelGlow {
  from { box-shadow: 0 0 10px rgba(124, 58, 237, 0.1); }
  to { box-shadow: 0 0 20px rgba(6, 182, 212, 0.16); }
}

.about-hero-visual {
  position: relative;
  will-change: transform;
}

.about-hero-visual-glow {
  position: absolute;
  inset: -15%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.22), transparent 68%);
  filter: blur(36px);
  z-index: 0;
  pointer-events: none;
}

.about-hero-editorial-photo {
  margin: 0;
  position: relative;
  z-index: 1;
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid rgba(124, 58, 237, 0.22);
  background: rgba(19, 19, 28, 0.6);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-hero-visual:hover .about-hero-editorial-photo {
  box-shadow: 0 28px 70px rgba(124, 58, 237, 0.15);
}

.about-hero-editorial-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.about-hero-visual:hover .about-hero-editorial-photo img {
  transform: scale(1.03);
}

.about-hero-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(19, 19, 28, 0.88);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  animation: aboutBadgeFloat 5s ease-in-out infinite;
}

.about-hero-badge-1 {
  top: 10%;
  left: 6%;
  border-color: rgba(52, 211, 153, 0.35);
  color: #34d399;
}

.about-hero-badge-2 {
  bottom: 22%;
  right: 5%;
  animation-delay: 1.4s;
  border-color: rgba(192, 132, 252, 0.35);
  color: #c084fc;
}

@keyframes aboutBadgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.about-hero-editorial-caption {
  position: relative;
  z-index: 1;
  margin-top: 0;
  display: block;
  padding: 1rem 1.25rem;
  border: 1px solid var(--arc-border);
  border-top: none;
  border-radius: 0 0 1.1rem 1.1rem;
  background: rgba(19, 19, 28, 0.94);
}

.about-caption-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.about-caption-text {
  display: block;
  font-size: 0.8rem;
  color: var(--arc-subtle);
}

.about-trust-panel-glow {
  border: 1px solid rgba(124, 58, 237, 0.18);
  background: linear-gradient(165deg, rgba(124, 58, 237, 0.06), rgba(19, 19, 28, 0.72));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.about-trust-item-accent {
  padding: 1.1rem 1.15rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(3, 3, 5, 0.45);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-trust-item-accent:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 58, 237, 0.28);
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.1);
}

.about-trust-icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(124, 58, 237, 0.25);
  background: rgba(124, 58, 237, 0.12);
  color: #a78bfa;
  font-size: 1rem;
}

.about-trust-item-accent {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  height: 100%;
}

.about-section-story {
  position: relative;
}

.about-story-gallery-premium {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.85rem;
}

.about-story-frame {
  position: relative;
  overflow: hidden;
  border-radius: 0.9rem;
  border: 1px solid var(--arc-border);
}

.about-story-frame-main {
  grid-row: span 2;
}

.about-story-frame .about-story-img {
  width: 100%;
  height: 100%;
  min-height: 140px;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.about-story-frame-main .about-story-img {
  min-height: 300px;
}

.about-story-frame:hover .about-story-img {
  transform: scale(1.05);
}

.about-story-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19, 19, 28, 0.55), transparent 45%);
  pointer-events: none;
}

.about-story-tag {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  z-index: 1;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(19, 19, 28, 0.75);
  backdrop-filter: blur(8px);
}

.about-engagement-list-premium .about-engagement-step {
  padding: 1.35rem 1.25rem;
  margin-bottom: 0.75rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(19, 19, 28, 0.45);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.about-engagement-list-premium .about-engagement-step:hover {
  transform: translateX(6px);
  border-color: rgba(124, 58, 237, 0.28);
  box-shadow: 0 12px 36px rgba(124, 58, 237, 0.1);
}

.about-engagement-list-premium::before {
  left: 1.85rem;
}

.about-engagement-list-premium .about-engagement-step {
  border-bottom: none;
}

.about-engagement-list-premium .about-engagement-step:last-child {
  margin-bottom: 0;
}

.about-engagement-body {
  flex: 1;
}

.about-engagement-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.55rem;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
  border: 1px solid rgba(124, 58, 237, 0.25);
  background: rgba(124, 58, 237, 0.1);
  color: #a78bfa;
}

.about-commit-panel-glow {
  border: 1px solid rgba(124, 58, 237, 0.15);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.04), rgba(19, 19, 28, 0.8));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.about-commit-col {
  padding: 1.75rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(3, 3, 5, 0.35);
}

.about-commit-col-yes {
  border-top: 3px solid rgba(52, 211, 153, 0.6);
}

.about-commit-col-no {
  border-top: 3px solid rgba(248, 113, 113, 0.5);
}

.about-culture-grid-premium .about-culture-item {
  padding: 1.35rem 1.4rem;
  position: relative;
  overflow: hidden;
}

.about-culture-grid-premium .about-culture-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--arc-accent), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-culture-grid-premium .about-culture-item:hover::before {
  opacity: 1;
}

.about-culture-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.6rem;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(124, 58, 237, 0.22);
  background: rgba(124, 58, 237, 0.1);
  color: #a78bfa;
  font-size: 1rem;
}

.about-approach-panel-glow {
  border: 1px solid rgba(124, 58, 237, 0.18);
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.05), rgba(19, 19, 28, 0.85));
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.3);
}

.about-approach-item {
  position: relative;
  overflow: hidden;
}

.about-approach-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}

.about-approach-app::before { background: linear-gradient(90deg, #a78bfa, transparent); }
.about-approach-data::before { background: linear-gradient(90deg, #22d3ee, transparent); }
.about-approach-infra::before { background: linear-gradient(90deg, #34d399, transparent); }
.about-approach-security::before { background: linear-gradient(90deg, #fbbf24, transparent); }

.about-approach-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.55rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--arc-text);
}

.about-approach-app .about-approach-icon { color: #a78bfa; border-color: rgba(167, 139, 250, 0.3); }
.about-approach-data .about-approach-icon { color: #22d3ee; border-color: rgba(34, 211, 238, 0.3); }
.about-approach-infra .about-approach-icon { color: #34d399; border-color: rgba(52, 211, 153, 0.3); }
.about-approach-security .about-approach-icon { color: #fbbf24; border-color: rgba(251, 191, 36, 0.3); }

.about-approach-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

.about-cta-premium {
  border: 1px solid rgba(124, 58, 237, 0.28);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(19, 19, 28, 0.95));
  box-shadow: 0 24px 64px rgba(124, 58, 237, 0.12);
  animation: aboutCtaGlow 7s ease-in-out infinite alternate;
}

@keyframes aboutCtaGlow {
  from { box-shadow: 0 24px 64px rgba(124, 58, 237, 0.1); }
  to { box-shadow: 0 28px 72px rgba(6, 182, 212, 0.16); }
}

.about-cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(55px);
  pointer-events: none;
}

.about-cta-orb-1 {
  width: 260px;
  height: 260px;
  top: -30%;
  right: -5%;
  background: rgba(124, 58, 237, 0.3);
}

.about-cta-orb-2 {
  width: 200px;
  height: 200px;
  bottom: -35%;
  left: 8%;
  background: rgba(52, 211, 153, 0.15);
}

.about-story-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0.75rem;
  align-items: stretch;
}

.about-story-img {
  width: 100%;
  object-fit: cover;
  border-radius: 0.85rem;
  border: 1px solid var(--arc-border);
  display: block;
}

.about-story-img-main {
  height: 100%;
  min-height: 280px;
  grid-row: span 2;
}

.about-story-img-side {
  height: 132px;
}

.about-engagement-list {
  position: relative;
  padding-left: 0;
}

.about-engagement-list::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 1px;
  background: linear-gradient(to bottom, rgba(124, 58, 237, 0.5), rgba(6, 182, 212, 0.25));
}

.about-engagement-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.about-engagement-step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.about-engagement-num {
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display, inherit);
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(124, 58, 237, 0.35);
  background: rgba(124, 58, 237, 0.12);
  color: #c4b5fd;
  position: relative;
  z-index: 1;
}

.about-commit-panel {
  border: 1px solid var(--arc-border);
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.03), rgba(19, 19, 28, 0.75));
}

@media (min-width: 992px) {
  .about-commit-panel {
    padding: 2.5rem 2.75rem;
  }
}

.about-commit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.55rem 0;
  color: var(--arc-subtle);
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.about-commit-list li:last-child {
  border-bottom: none;
}

.about-commit-list i {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: #34d399;
}

.about-commit-list-muted i {
  color: #f87171;
}

.about-culture-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .about-culture-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-culture-item {
  padding: 1.25rem 1.35rem;
  border-radius: 0.85rem;
  border: 1px solid var(--arc-border);
  background: rgba(19, 19, 28, 0.45);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.about-culture-item:hover {
  border-color: rgba(124, 58, 237, 0.28);
  transform: translateY(-2px);
}

.about-approach-panel {
  border: 1px solid var(--arc-border);
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  background: rgba(19, 19, 28, 0.5);
}

@media (min-width: 992px) {
  .about-approach-panel {
    padding: 2.25rem 2.5rem;
  }
}

.about-approach-item {
  padding: 1.15rem 1.25rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(3, 3, 5, 0.35);
  transition: border-color 0.3s ease;
}

.about-approach-item:hover {
  border-color: rgba(124, 58, 237, 0.22);
}

.about-cta-panel {
  border: 1px solid rgba(124, 58, 237, 0.22);
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(19, 19, 28, 0.9));
}

@media (min-width: 992px) {
  .about-cta-panel {
    padding: 2.25rem 2.5rem;
  }
}

.about-hero-advanced {
  position: relative;
  padding-top: 7.5rem;
  padding-bottom: 3.5rem;
  overflow: hidden;
}

.about-hero-advanced .hero-orb-1 {
  width: 360px;
  height: 360px;
  top: -5%;
  right: -5%;
  left: auto;
  background: rgba(124, 58, 237, 0.22);
}

.about-hero-advanced .hero-orb-2 {
  width: 300px;
  height: 300px;
  bottom: -15%;
  left: 0;
  top: auto;
  background: rgba(6, 182, 212, 0.16);
  animation-delay: -4s;
}

.about-hero-advanced .hero-orb-3 {
  width: 240px;
  height: 240px;
  top: 40%;
  left: 35%;
  background: rgba(52, 211, 153, 0.1);
  animation-delay: -2s;
}

.about-page .hero-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
  pointer-events: none;
}

.about-hero-frame {
  position: relative;
  will-change: transform;
}

.about-page .hero-photo-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.25), transparent 65%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.about-hero-photo-premium {
  position: relative;
  z-index: 1;
}

.about-hero-photo-premium img {
  height: 340px;
}

.about-page .hero-float-chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(19, 19, 28, 0.82);
  backdrop-filter: blur(12px);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--arc-text);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  animation: float 5s ease-in-out infinite;
}

.about-page .hero-float-chip-1 {
  top: 12%;
  left: 8%;
  border-color: rgba(52, 211, 153, 0.35);
}

.about-page .hero-float-chip-1 i { color: #34d399; }

.about-page .hero-float-chip-2 {
  bottom: 28%;
  right: 6%;
  animation-delay: 1.5s;
  border-color: rgba(192, 132, 252, 0.35);
}

.about-page .hero-float-chip-2 i { color: #c084fc; }

.about-trust-panel {
  border: 1px solid var(--arc-border);
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.03), rgba(19, 19, 28, 0.65));
}

@media (min-width: 992px) {
  .about-trust-panel {
    padding: 2rem 2.25rem;
  }

  .about-trust-intro {
    max-width: 720px;
  }
}

.about-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  height: 100%;
  padding: 1rem 1.1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(3, 3, 5, 0.35);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.about-trust-item:hover {
  border-color: rgba(124, 58, 237, 0.25);
  transform: translateY(-2px);
}

.about-trust-item > i {
  font-size: 1.15rem;
  color: var(--arc-accent);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.about-section-muted {
  background: rgba(255, 255, 255, 0.015);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.about-section-lead {
  max-width: 560px;
}

.about-stat-premium {
  text-align: left;
  padding: 1.35rem 1.25rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(19, 19, 28, 0.6));
}

.about-stat-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(124, 58, 237, 0.25);
  background: rgba(124, 58, 237, 0.1);
  color: #a78bfa;
  font-size: 1rem;
}

.about-mission-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.about-mission-list i {
  color: #34d399;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.about-photo-grid-premium img {
  transition: transform 0.45s ease, border-color 0.3s ease;
}

.about-photo-grid-premium img:hover {
  transform: scale(1.02);
  border-color: rgba(124, 58, 237, 0.3);
}

.about-photo-grid .about-photo-tall {
  height: 180px;
}

.about-photo-grid .about-photo-wide {
  height: 160px;
}

.about-focus-card {
  border: 1px solid var(--arc-border);
  border-radius: 1.25rem;
  overflow: hidden;
  background: rgba(19, 19, 28, 0.55);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.about-focus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
}

.about-focus-health:hover { border-color: rgba(52, 211, 153, 0.35); }
.about-focus-iot:hover { border-color: rgba(6, 182, 212, 0.35); }
.about-focus-omni:hover { border-color: rgba(192, 132, 252, 0.35); }

.about-focus-img-wrap {
  overflow: hidden;
  position: relative;
}

.about-focus-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19, 19, 28, 0.45), transparent 55%);
  pointer-events: none;
}

.about-focus-img-wrap img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.about-focus-card:hover .about-focus-img-wrap img {
  transform: scale(1.06);
}

.about-focus-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.about-focus-health .about-focus-icon {
  border: 1px solid rgba(52, 211, 153, 0.25);
  background: rgba(52, 211, 153, 0.1);
  color: #34d399;
}

.about-focus-iot .about-focus-icon {
  border: 1px solid rgba(6, 182, 212, 0.25);
  background: rgba(6, 182, 212, 0.1);
  color: #22d3ee;
}

.about-focus-omni .about-focus-icon {
  border: 1px solid rgba(192, 132, 252, 0.25);
  background: rgba(192, 132, 252, 0.1);
  color: #c084fc;
}

.about-focus-list li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--arc-subtle);
  margin-bottom: 0.35rem;
}

.about-focus-list i {
  color: var(--arc-accent);
  font-size: 0.75rem;
}

.about-page .brand-card-pillar {
  position: relative;
  overflow: hidden;
}

.about-page .brand-card-pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 1.5rem 1.5rem 0 0;
}

.about-page .brand-card-health::before {
  background: linear-gradient(90deg, #34d399, transparent);
}

.about-page .brand-card-iot::before {
  background: linear-gradient(90deg, #22d3ee, transparent);
}

.about-page .brand-card-omni::before {
  background: linear-gradient(90deg, #c084fc, transparent);
}

.about-page .brand-card-health .icon-box {
  border-color: rgba(52, 211, 153, 0.25);
  background: rgba(52, 211, 153, 0.1);
  color: #34d399;
}

.about-page .brand-card-iot .icon-box {
  border-color: rgba(6, 182, 212, 0.25);
  background: rgba(6, 182, 212, 0.1);
  color: #22d3ee;
}

.about-page .brand-card-omni .icon-box {
  border-color: rgba(192, 132, 252, 0.25);
  background: rgba(192, 132, 252, 0.1);
  color: #c084fc;
}

.about-page .partner-point {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid var(--arc-border);
  background: rgba(3, 3, 5, 0.35);
  height: 100%;
}

.about-page .partner-point i {
  font-size: 1.1rem;
  color: var(--arc-accent);
  margin-top: 0.1rem;
}

.about-deliverables {
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.08), rgba(19, 19, 28, 0.85));
  border: 1px solid rgba(124, 58, 237, 0.2);
}

.about-page .home-deliverables-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--arc-subtle);
  font-size: 0.9rem;
}

.about-page .home-deliverables-list li:last-child {
  border-bottom: none;
}

.about-page .home-deliverables-list i {
  color: #34d399;
  margin-top: 0.15rem;
}

.about-value-card {
  border: 1px solid var(--arc-border);
  border-radius: 1.25rem;
  padding: 1.5rem 1.25rem;
  text-align: center;
  background: rgba(19, 19, 28, 0.45);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.about-value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.1);
}

.about-value-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border: 1px solid rgba(124, 58, 237, 0.25);
  background: rgba(124, 58, 237, 0.1);
  color: #a78bfa;
  font-size: 1.15rem;
}

.about-tech-panel {
  border: 1px solid var(--arc-border);
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(19, 19, 28, 0.7));
}

.about-tech-tags .tag-pill {
  font-size: 0.8rem;
  padding: 0.35rem 0.75rem;
}

.about-page .cta-section-premium {
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.12), rgba(19, 19, 28, 0.95));
  border: 1px solid rgba(124, 58, 237, 0.25);
}

.about-page .cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.about-page .cta-orb-1 {
  width: 280px;
  height: 280px;
  top: -20%;
  right: -5%;
  background: rgba(124, 58, 237, 0.35);
}

.about-page .cta-orb-2 {
  width: 220px;
  height: 220px;
  bottom: -25%;
  left: 5%;
  background: rgba(6, 182, 212, 0.2);
}

.about-cta-lead {
  max-width: 520px;
}

@media (prefers-reduced-motion: reduce) {
  .about-scroll-progress { display: none; }

  .about-page .about-reveal,
  .about-page .reveal-group > [class*="col-"],
  .about-page .anim-block,
  .about-page .fade-up-blur {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
    filter: none !important;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .about-page .about-reveal {
    opacity: 0;
    transform: translateY(18px);
    animation: homeRevealUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .about-page .about-reveal-right {
    transform: translateX(28px);
    animation-name: homeRevealRight;
  }

  .about-page .about-reveal-d1 { animation-delay: 0.08s; }
  .about-page .about-reveal-d2 { animation-delay: 0.18s; }
  .about-page .about-reveal-d3 { animation-delay: 0.28s; }
  .about-page .about-reveal-d4 { animation-delay: 0.38s; }
  .about-page .about-reveal-d5 { animation-delay: 0.48s; }

  .about-page .anim-section.in-view {
    /* marker for optional section effects */
  }

  .about-page .btn-arcnova,
  .about-page .btn-ghost {
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease,
      border-color 0.25s ease,
      background 0.25s ease;
  }

  .about-page .btn-arcnova:active,
  .about-page .btn-ghost:active {
    transform: scale(0.98);
  }

  .about-page .about-engagement-step,
  .about-page .about-culture-item,
  .about-page .about-approach-item,
  .about-page .about-trust-item {
    transition:
      transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.35s ease,
      border-color 0.35s ease;
  }

  .about-page .fade-up {
    opacity: 0;
    transform: translateY(26px);
    transition:
      opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .about-page .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .about-page .fade-up-blur {
    filter: blur(6px);
    transition:
      opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
      filter 0.7s ease;
  }

  .about-page .fade-up-blur.visible {
    filter: blur(0);
  }

  .about-page .reveal-group > [class*="col-"] {
    opacity: 0;
    transform: translateY(22px);
    transition:
      opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .about-page .reveal-group.is-visible > [class*="col-"] {
    opacity: 1;
    transform: translateY(0);
  }

  .about-page .reveal-group.is-visible > [class*="col-"],
  .about-page .reveal-group.is-visible > li,
  .about-page .reveal-group.is-visible .about-culture-item,
  .about-page .reveal-group.is-visible .about-approach-item {
    opacity: 1;
    transform: translateY(0);
  }

  .about-page .reveal-group > li,
  .about-page .reveal-group .about-culture-item,
  .about-page .reveal-group .about-approach-item {
    opacity: 0;
    transform: translateY(22px);
    transition:
      opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .about-page .reveal-group.is-visible > li:nth-child(1),
  .about-page .reveal-group.is-visible .about-culture-item:nth-child(1),
  .about-page .reveal-group.is-visible .about-approach-item:nth-child(1) { transition-delay: 0.04s; }

  .about-page .reveal-group.is-visible > li:nth-child(2),
  .about-page .reveal-group.is-visible .about-culture-item:nth-child(2),
  .about-page .reveal-group.is-visible .about-approach-item:nth-child(2) { transition-delay: 0.12s; }

  .about-page .reveal-group.is-visible > li:nth-child(3),
  .about-page .reveal-group.is-visible .about-culture-item:nth-child(3),
  .about-page .reveal-group.is-visible .about-approach-item:nth-child(3) { transition-delay: 0.2s; }

  .about-page .reveal-group.is-visible > li:nth-child(4),
  .about-page .reveal-group.is-visible .about-culture-item:nth-child(4),
  .about-page .reveal-group.is-visible .about-approach-item:nth-child(4) { transition-delay: 0.28s; }

  .about-page .reveal-group.is-visible > [class*="col-"]:nth-child(1) { transition-delay: 0.04s; }
  .about-page .reveal-group.is-visible > [class*="col-"]:nth-child(2) { transition-delay: 0.12s; }
  .about-page .reveal-group.is-visible > [class*="col-"]:nth-child(3) { transition-delay: 0.2s; }
  .about-page .reveal-group.is-visible > [class*="col-"]:nth-child(4) { transition-delay: 0.28s; }

  .about-page .anim-block {
    opacity: 0;
    transform: translateY(20px);
    transition:
      opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .about-page .anim-block.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .about-page .anim-stagger-list .partner-point,
  .about-page .anim-stagger-list > li {
    opacity: 0;
    transform: translateX(-16px);
    transition:
      opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .about-page .anim-stagger-list.is-visible .partner-point,
  .about-page .anim-stagger-list.is-visible > li {
    opacity: 1;
    transform: translateX(0);
    transition-delay: calc(var(--item-i, 0) * 0.1s);
  }

  .about-page .glow-border-anim {
    background-size: 200% 200%;
    animation: borderShift 8s ease infinite;
  }

  .about-page .hero-grid-pattern {
    animation: gridDrift 24s linear infinite;
  }

  .about-page .hero-orbs-parallax {
    transition: transform 0.15s ease-out;
  }

  .about-page .section-label-anim {
    animation: labelGlow 3s ease-in-out infinite alternate;
  }

  .about-page .cta-section-premium {
    animation: ctaGlow 6s ease-in-out infinite alternate;
  }

  .about-page .about-engagement-step,
  .about-page .about-culture-item,
  .about-page .about-approach-item,
  .about-page .about-trust-item {
    transition:
      transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.35s ease,
      border-color 0.35s ease;
  }

  .about-page .brand-card-pillar:hover {
    transform: translateY(-4px);
  }

  .about-page .about-engagement-step:hover {
    transform: translateX(4px);
  }

  .about-page .expertise-pill {
    transition: transform 0.25s ease, border-color 0.25s ease;
  }

  .about-page .expertise-pill:hover {
    transform: translateY(-2px);
  }

  .about-page .arcnova-nav {
    animation: navSlideDown 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
}

/* Services page */
.services-page .bg-mesh {
  background-image:
    radial-gradient(ellipse 90% 60% at 50% -30%, rgba(124, 58, 237, 0.28), transparent),
    radial-gradient(ellipse 70% 50% at 100% 10%, rgba(6, 182, 212, 0.16), transparent),
    radial-gradient(ellipse 60% 40% at 0% 80%, rgba(192, 132, 252, 0.12), transparent);
}

.services-page-header {
  padding-bottom: 3rem;
}

.services-page-title {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.services-page-lead {
  max-width: 640px;
}

.services-section-muted {
  background: rgba(19, 19, 28, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.services-badge-health {
  border: 1px solid rgba(52, 211, 153, 0.25);
  background: rgba(52, 211, 153, 0.1);
  color: #34d399;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
}

.services-badge-omni {
  border: 1px solid rgba(192, 132, 252, 0.25);
  background: rgba(192, 132, 252, 0.1);
  color: #c084fc;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
}

.services-badge-iot {
  border: 1px solid rgba(6, 182, 212, 0.25);
  background: rgba(6, 182, 212, 0.1);
  color: #22d3ee;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
}

.services-page .connect-banner {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.services-page .connect-banner-rich {
  position: relative;
  padding: 1.5rem 1.75rem;
  border-radius: 1.25rem;
  overflow: hidden;
}

.services-page .connect-banner-icons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.services-page .connect-banner-icons span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid var(--arc-border);
  background: rgba(19, 19, 28, 0.6);
  font-size: 0.9rem;
}

.services-page .connect-banner-icons span:nth-child(1) i { color: #34d399; }
.services-page .connect-banner-icons span:nth-child(2) i { color: #22d3ee; }
.services-page .connect-banner-icons span:nth-child(3) i { color: #c084fc; }

.services-page .bento-item.featured {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.services-page .bento-item.featured:hover {
  transform: translateY(-6px);
}

.services-page .service-bento-photo.bento-item.featured {
  background: rgba(19, 19, 28, 0.55);
}

.services-page .service-bento-photo,
.services-page .service-card-photo {
  padding: 0;
  overflow: hidden;
}

.services-page .service-card-img-wrap {
  overflow: hidden;
  position: relative;
}

.services-page .service-card-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19, 19, 28, 0.45), transparent 55%);
  pointer-events: none;
}

.services-page .service-bento-photo .service-card-img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.services-page .service-card-photo .service-card-img-wrap img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.services-page .service-bento-photo:hover .service-card-img-wrap img,
.services-page .service-card-photo:hover .service-card-img-wrap img {
  transform: scale(1.06);
}

.services-page .service-bento-photo.focus-card-health:hover {
  border-color: rgba(52, 211, 153, 0.4);
}

.services-page .service-bento-photo.focus-card-omni:hover {
  border-color: rgba(192, 132, 252, 0.4);
}

.services-page .service-bento-photo.focus-card-iot:hover {
  border-color: rgba(6, 182, 212, 0.4);
}

.services-page .cta-section-premium {
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(19, 19, 28, 0.85));
}

.services-page .cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.services-page .cta-orb-1 {
  width: 280px;
  height: 280px;
  top: -20%;
  right: -5%;
  background: rgba(124, 58, 237, 0.35);
}

.services-page .cta-orb-2 {
  width: 220px;
  height: 220px;
  bottom: -15%;
  left: -5%;
  background: rgba(6, 182, 212, 0.25);
}

.services-page .site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, transparent, rgba(19, 19, 28, 0.5));
}
