﻿/* PureLine Cloud & Digital Solutions +óÔé¼ÔÇ£ Global Styles */
:root {
  --color-bg: #0b0d0f;
  --color-surface: #111827;
  --color-panel: #1f2937;
  --color-primary: #6366f1;
  --color-primary-soft: rgba(99, 102, 241, 0.12);
  --color-secondary: #22d3ee;
  --color-accent: #f97316;
  --color-text: #f9fafb;
  --color-subtext: #cbd5f5;
  --color-border: rgba(148, 163, 184, 0.18);
  --shadow-elevated: 0 24px 48px rgba(15, 23, 42, 0.45);
  --max-width: 1180px;
  --header-height: 84px;
}

/* Prevent accidental horizontal scroll from off-canvas visual elements */
html,
body {
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .scroll-drift {
    display: none !important;
  }

  .case-highlight__chart-container {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }

  .case-pie {
    transform: none !important;
    opacity: 1 !important;
  }

  .case-pie__label {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(92vw, var(--max-width));
  margin: 0 auto;

}

main {
  padding-top: var(--header-height);
  position: relative;
  z-index: 1;
}
 

.section {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.section--tight {
  padding: clamp(3rem, 6vw, 4rem) 0;
}

.grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 960px) {
  .grid--two,
  .grid--three,
  .grid--four {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

h1,
h2,
h3,
h4 {
  font-family: inherit;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 1rem;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-secondary);
  margin-bottom: 0.75rem;
}

.body-muted {
  color: var(--color-subtext);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  background: var(--color-primary);
  color: var(--color-text);
  box-shadow: var(--shadow-elevated);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 32px rgba(99, 102, 241, 0.35);
}

.btn--outline {
  background: transparent;
  border-color: rgba(99, 102, 241, 0.6);
  color: var(--color-text);
  box-shadow: none;
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background: rgba(99, 102, 241, 0.12);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(99, 102, 241, 0.4);
  color: var(--color-subtext);
  font-size: 0.78rem;
}

/* Header & Navigation */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  backdrop-filter: blur(14px);
  background: rgba(11, 13, 15, 0.78);
  border-bottom: 1px solid rgba(99, 102, 241, 0.12);
  z-index: 1000;
}

.topbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand img {
  width: clamp(44px, 10vw, 64px);
  height: auto;
}

.brand__text {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-subtext);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 500;
  color: var(--color-subtext);
}

.nav a {
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s ease;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: var(--color-secondary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.nav a:hover,
.nav a.is-active {
  color: var(--color-text);
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--color-subtext);
  cursor: pointer;
  margin-right: 1rem;
  margin-left: auto;
}

.lang-toggle button {
  border: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-weight: 600;
}

.lang-toggle button.active {
  color: var(--color-text);
}

.topbar__cta {
  text-align: right;
  gap: 1.25rem;
}

.mobile-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  background: rgba(99, 102, 241, 0.16);
  border: 1px solid rgba(99, 102, 241, 0.35);
  color: var(--color-text);
  padding: 0.65rem;
  border-radius: 10px;
  cursor: pointer;
  transition: border 0.3s ease, background 0.3s ease;
}

.mobile-nav-toggle:hover {
  border-color: rgba(99, 102, 241, 0.55);
  background: rgba(99, 102, 241, 0.24);
}

.mobile-nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background-color: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-nav-toggle__bar + .mobile-nav-toggle__bar {
  margin-top: 4px;
}

.mobile-nav-toggle.is-active .mobile-nav-toggle__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-nav-toggle.is-active .mobile-nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.is-active .mobile-nav-toggle__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 1040px) {
  .nav {
    position: fixed;
    inset: var(--header-height) 0 0 0;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2.5rem;
    background: rgba(11, 13, 15, 0.97);
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    transform: translateY(-100%);
    transition: transform 0.36s cubic-bezier(.2,.9,.2,1), background-color 0.25s ease, opacity 0.3s ease;
    z-index: 1090;
    width: 100%;
    left: 0;
    right: 0;
  }

  .nav.is-open {
    transform: translateY(0);
  }

  .mobile-nav-toggle {
    display: inline-flex;
    z-index: 1110;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(99, 102, 241, 0.25);
    padding: 0.5rem;
    border-radius: 10px;
    margin-left: auto;
  }

  .topbar__inner {
    gap: 1rem;
  }

  /* hide the regular nav links visually (they will be shown via .nav when open) */
  header.topbar .container.topbar__inner > nav.nav {
    display: none !important;
    transform: translateY(-120%) !important;
    visibility: hidden !important;
  }

  /* ensure the mobile toggle is on top and visible */
  .mobile-nav-toggle {
    z-index: 1100;
  }

  /* reduce topbar cta content on smaller screens to make space for toggle */
  .topbar__cta .tag,
  .topbar__cta .lang-toggle--desktop,
  .topbar__cta .btn--outline {
    
  }

  /* when nav is open, show the mobile nav block */
  header.topbar .container.topbar__inner > nav.nav.is-open {
    display: flex !important;
    transform: translateY(0) !important;
    visibility: visible !important;
    left: 0;
    right: 0;
    /* solid dark background so underlying content doesn't show through */
    background: #000 !important;
    backdrop-filter: none !important;
    opacity: 1 !important;
    top: var(--header-height);
    bottom: 0;
    height: calc(100vh - var(--header-height));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

/* Tech showcase icon normalization */
.tech-showcase__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.tech-card {
  background: rgba(15, 23, 42, 0.45);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--color-border);
}

.tech-card__logo {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
  background: linear-gradient(180deg, rgba(99,102,241,0.06), rgba(15,23,42,0.12));
  border-radius: 12px;
}

.tech-card__logo img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}

@media (max-width: 640px) {
  .tech-card__logo {
    width: 56px;
    height: 56px;
  }

  .tech-card__logo img {
    width: 40px;
    height: 40px;
  }
}

  /* ensure nav links are visible on the dark background */
  header.topbar .container.topbar__inner > nav.nav.is-open a {
    color: var(--color-text) !important;
  }

  /* animate SVG bars into an X when active */
  .mobile-nav-toggle svg .mobile-nav-toggle__bar {
    transform-origin: center;
    transition: transform 0.28s cubic-bezier(.2,.9,.2,1), opacity 0.2s ease;
  }

  .mobile-nav-toggle.is-active svg .mobile-nav-toggle__bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .mobile-nav-toggle.is-active svg .mobile-nav-toggle__bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.8);
  }
  .mobile-nav-toggle.is-active svg .mobile-nav-toggle__bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* Ensure gallery media cannot overflow on small viewports */
.media-gallery__viewer img {
  max-width: 100%;
  box-sizing: border-box;
}

/* Reduce hero padding on small screens to avoid overflow */
@media (max-width: 620px) {
  .hero {
    padding: clamp(3rem, 8vw, 4.5rem) 0 clamp(2rem, 6vw, 3rem);
  }
  .brand img {
    width: 48px;
  }
  .brand__text {
    font-size: 0.85rem;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(6rem, 12vw, 10rem) 0 clamp(5rem, 10vw, 8rem);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.45), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(14, 165, 233, 0.35), transparent 45%);
  opacity: 0.9;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  filter: brightness(0.6);
  will-change: transform;
  transition: transform 0.6s ease;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero__headline {
  font-size: clamp(3.5rem, 6vw, 3.5rem);
  margin-bottom: 1rem;
}

.hero__subheadline {
  font-size: clamp(1.15rem, 3vw, 1.35rem);
  color: var(--color-subtext);
  margin-bottom: 2rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.5rem;
}

.hero__stat {
  min-width: 140px;
}

.hero__stat h3 {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}

.hero__stat p {
  margin: 0;
  color: var(--color-subtext);
  font-size: 0.9rem;
}

/* Cards */
.card {
  background: rgba(17, 24, 39, 0.88);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  box-shadow: 0 18px 36px rgba(8, 16, 28, 0.35);
  transition: transform 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(34, 211, 238, 0.12));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 28px 44px rgba(15, 23, 42, 0.5);
}

.card:hover::after {
  opacity: 1;
}

.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--color-secondary);
  font-size: 1.35rem;
}

.card__icon svg {
  width: 28px;
  height: 28px;
}

.card__title {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.scroll-drift {
  position: fixed;
  inset: -40vh 0 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 120% at 20% 20%, rgba(99, 102, 241, 0.18), transparent 55%),
    radial-gradient(120% 120% at 80% 10%, rgba(34, 211, 238, 0.16), transparent 50%),
    radial-gradient(140% 140% at 50% 80%, rgba(249, 115, 22, 0.12), transparent 60%);
  opacity: 0.9;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.6s ease;
}

.project-cta {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.project-cta::before {
  content: '';
  position: absolute;
  inset: 10% -30% -10%;
  background: radial-gradient(50% 70% at 20% 20%, rgba(249, 115, 22, 0.25), transparent 70%);
  opacity: 0.5;
  filter: blur(90px);
  pointer-events: none;
}

.project-cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  padding: clamp(2.75rem, 5vw, 4rem);
  border-radius: 28px;
  background: rgba(17, 24, 39, 0.92);
  border: 1px solid rgba(249, 115, 22, 0.2);
  box-shadow: 0 28px 60px rgba(8, 16, 32, 0.35);
  overflow: hidden;
}

.project-cta__content {
  display: grid;
  gap: 1.5rem;
  align-content: center;
}

.project-cta__content .btn {
  justify-self: flex-start;
}

.project-cta__highlights {
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: rgba(99, 102, 241, 0.14);
  border: 1px solid rgba(99, 102, 241, 0.28);
  border-radius: 22px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: inset 0 0 32px rgba(99, 102, 241, 0.15);
}

.project-cta__highlights h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.project-cta__highlights ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.project-cta__highlights li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--color-subtext);
  font-weight: 500;
}

.project-cta__highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.85), rgba(34, 211, 238, 0.75));
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
}

.media-gallery {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.media-gallery__card {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  border-radius: 28px;
  border: 1px solid rgba(99, 102, 241, 0.22);
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(8, 12, 25, 0.95));
  box-shadow: 0 28px 60px rgba(5, 10, 25, 0.55);
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  gap: clamp(1.75rem, 3vw, 2.5rem);
  text-align: center;
}

.media-gallery__copy {
  display: grid;
  gap: 1.25rem;
  margin: 0 auto;
  max-width: 760px;
}

.device-stack {
  position: relative;
  min-height: 600px;
  width: min(100%, 2500px);
  margin: 0 auto;
  border-radius: 32px;
  border: 1px solid rgba(99, 102, 241, 0.22);
  background: radial-gradient(circle at 30% 20%, rgba(79, 70, 229, 0.35), transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(14, 165, 233, 0.25), transparent 55%),
    rgba(7, 10, 18, 0.95);
  box-shadow: 0 32px 70px rgba(5, 10, 30, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.device-stack .device {
  position: absolute;
  transition: transform 0.85s ease, opacity 0.85s ease, filter 0.85s ease;
  opacity: 0.2;
  filter: grayscale(0.95) brightness(0.55);
  transform: translate3d(0, 40px, -40px) scale(0.85);
}

.device--laptop {
  max-width: clamp(600px, 80vw, 760px);
  z-index: 2;
}

.device--mobile {
  max-width: clamp(120px, 8vw, 150px);
  z-index: 3;
}

.device--tablet {
  max-width: clamp(300px, 24vw, 380px);
  z-index: 3;
}

.device-stack.is-active .device {
  opacity: 1;
  filter: none;
}

.device-stack.is-active [data-device-laptop] {
  transform: translate3d(0, 0, 0) scale(1);
}

.device-stack.is-active [data-device-mobile] {
  transform: translate3d(-340px, -20px, 150px) rotateY(30deg) scale(0.95);
}

.device-stack.is-active [data-device-tablet] {
  transform: translate3d(460px, -20px, 20px) rotateY(-35deg) scale(0.97);
}

.media-gallery__notes {
  list-style: none;
  margin: clamp(1.5rem, 3vw, 2.5rem) auto 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  color: var(--color-subtext);
  font-size: 1rem;
  max-width: 960px;
  text-align: center;
  line-height: 1.55;
}

@media (max-width: 1024px) {
  .device-stack {
    min-height: 560px;
  }
  .device-stack.is-active [data-device-mobile] {
    transform: translate3d(-200px, 35px, 0) rotateY(-10deg);
  }

  .device-stack.is-active [data-device-tablet] {
    transform: translate3d(200px, 35px, 0) rotateY(10deg);
  }
}

@media (max-width: 720px) {
  .device-stack {
    min-height: 320px !important; /* Make container smaller */
  }
  .device-stack.is-active [data-device-mobile] {
    transform: translate3d(-150%, 0, 0) rotateY(40deg) scale(0.85) !important;
  }

  .device-stack.is-active [data-device-tablet] {
    transform: translate3d(100px, 0, 0) rotateY(-40deg) scale(0.85) !important;
  }

  .device--laptop {
    max-width: 70vw !important; /* Control laptop size on mobile */
  }
  .device--tablet {
    max-width: 45vw !important; /* Control tablet size on mobile */
  }
  .device--mobile {
    max-width: 20vw !important; /* Control mobile size on mobile */
  }
}























.tech-showcase {
  position: relative;
}

.tech-showcase__header {
  max-width: 680px;
  margin: 0 auto 3rem;
  text-align: center;
  display: grid;
  gap: 1rem;
}

.tech-showcase__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.tech-card {
  --tech-color: var(--color-secondary);
  position: relative;
  padding: clamp(1.75rem, 3vw, 2.25rem);
  border-radius: 22px;
  background: rgba(17, 24, 39, 0.9);
  border: 1px solid rgba(99, 102, 241, 0.18);
  display: grid;
  gap: 1.25rem;
  transition: transform 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.tech-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(34, 211, 238, 0.18));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.tech-card:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 26px 44px rgba(9, 18, 35, 0.45);
}

.tech-card:hover::after {
  opacity: 0.35;
}

.tech-card__logo {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: rgba(99, 102, 241, 0.14);
  border: 1px solid rgba(99, 102, 241, 0.28);
  box-shadow: inset 0 0 22px rgba(99, 102, 241, 0.12);
  position: relative;
  z-index: 1;
}

.tech-card svg {
  width: 54px;
  height: 54px;
}

.tech-card h3 {
  margin: 0;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.tech-card p {
  margin: 0;
  position: relative;
  z-index: 1;
}

.tech-card--react {
  --tech-color: #61dafb;
}

.tech-card--angular {
  --tech-color: #dd0031;
}

.tech-card--node {
  --tech-color: #68a063;
}

.tech-card--laravel {
  --tech-color: #ef3b2d;
}

.tech-card--flutter {
  --tech-color: #027dfd;
}

.tech-card--react-native {
  --tech-color: #61dafb;
}

.tech-card--postgres {
  --tech-color: #336791;
}

.tech-card--aws {
  --tech-color: #ff9900;
}

.tech-card--azure {
  --tech-color: #0078d4;
}

.tech-card--gcp {
  --tech-color: #4285f4;
}

.tech-card--cicd {
  --tech-color: #f97316;
}

.tech-card--aws .tech-card__logo {
  background: rgba(255, 153, 0, 0.12);
  border-color: rgba(255, 153, 0, 0.3);
}

.tech-card--gcp .tech-card__logo {
  background: rgba(66, 133, 244, 0.12);
  border-color: rgba(66, 133, 244, 0.28);
}

.tech-card--cicd .tech-card__logo {
  background: rgba(249, 115, 22, 0.12);
  border-color: rgba(249, 115, 22, 0.28);
}

@media (max-width: 1180px) {
  .project-cta__inner {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .project-cta__highlights {
    justify-content: flex-start;
  }

  .media-gallery__layout {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .media-gallery__copy {
    text-align: center;
    justify-items: center;
  }

  

  .tech-showcase__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .project-cta__content {
    text-align: center;
  }

  .project-cta__content .btn {
    justify-self: center;
  }

  .project-cta__highlights {
    text-align: left;
  }

  

  .tech-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .project-cta__highlights {
    padding: 1.5rem;
  }

  

  

  .tech-card__logo {
    width: 64px;
    height: 64px;
  }

  .tech-showcase__grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.card__body {
  color: var(--color-subtext);
  font-size: 0.95rem;
  margin: 0;
}

.card__footer {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--color-secondary);
}

/* Technology ribbon */
/* Case study */
.case-highlight {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.case-highlight__media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 500px;
  height: 100%;
  background: rgba(17, 24, 39, 0.8);
  border: 1px solid rgba(79, 70, 229, 0.3);
  box-shadow: var(--shadow-elevated);
  display: flex;
}

.case-highlight__description {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 500px;
  background: rgba(17, 24, 39, 0.8);
  border: 1px solid rgba(79, 70, 229, 0.3);
  box-shadow: var(--shadow-elevated);
  padding: clamp(2.4rem, 5vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.2rem;
}

.case-highlight__description .btn-group {
  margin-top: auto;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.case-highlight__description .btn-group .btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

.case-highlight__media-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  filter: saturate(0.85);
}

.case-highlight__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(11, 13, 15, 0.85), rgba(17, 24, 39, 0.2) 70%);
  padding: clamp(2.2rem, 5vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 1.5rem;
  text-align: left;
}

.case-highlight__overlay h3 {
  margin: 0.35rem 0 0.75rem;
}

.case-highlight__chart-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  width: min(420px, 100%);
  margin: 0 auto;
  opacity: 0;
  transform: perspective(900px) rotateX(45deg) scale(0.75);
  filter: blur(6px);
  transition: transform 0.9s cubic-bezier(0.21, 0.85, 0.33, 0.99), opacity 0.6s ease-out, filter 0.6s ease-out;
}

.case-pie {
  width: 300px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.12), transparent 65%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 18px 32px rgba(15, 23, 42, 0.45);
  transform: rotateX(55deg) scale(0.82);
  transform-style: preserve-3d;
  opacity: 0;
  transition: transform 0.95s cubic-bezier(0.21, 0.85, 0.33, 0.99), box-shadow 0.6s ease-out, opacity 0.45s ease-out;
}

.case-pie__labels {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.65rem;
  width: 100%;
}

.case-pie__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--color-subtext);
  padding: 0.5rem 0.85rem;
  background: rgba(17, 24, 39, 0.65);
  border-radius: 999px;
  border: 1px solid rgba(99, 102, 241, 0.18);
  min-width: 0;
  width: 100%;
  text-align: center;
  white-space: normal;
  line-height: 1.25;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
}

.case-pie__swatch {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08), 0 6px 12px rgba(0, 0, 0, 0.35);
}

.case-pie__swatch--modernization {
  background: rgba(99, 102, 241, 1);
}

.case-pie__swatch--automation {
  background: rgba(34, 211, 238, 1);
}

.case-pie__swatch--services {
  background: rgba(249, 115, 22, 1);
}

.case-highlight__sources {
  font-size: 0.85rem;
  color: var(--color-subtext);
}

.case-highlight__notes {
  font-size: 0.78rem;
  color: var(--color-subtext);
  margin-top: 0.35rem;
}

.case-highlight__chart-container.is-visible {
  opacity: 1;
  transform: perspective(1000px) rotateX(0deg) scale(1);
  filter: none;
}

.case-highlight__chart-container.is-visible .case-pie {
  transform: rotateX(0deg) scale(1);
  box-shadow: inset 0 12px 24px rgba(15, 23, 42, 0.35), 0 12px 32px rgba(15, 23, 42, 0.4);
  opacity: 1;
}

.case-highlight__chart-container.is-visible .case-pie__label {
  animation: casePieLabelPop 0.85s cubic-bezier(0.28, 0.84, 0.42, 1.26) forwards;
}

.case-highlight__chart-container.is-visible .case-pie__label:nth-child(1) {
  animation-delay: 0.35s;
}

.case-highlight__chart-container.is-visible .case-pie__label:nth-child(2) {
  animation-delay: 0.5s;
}

.case-highlight__chart-container.is-visible .case-pie__label:nth-child(3) {
  animation-delay: 0.65s;
}

@keyframes casePieLabelPop {
  0% {
    transform: translateY(24px) scale(0.85);
    opacity: 0;
  }
  45% {
    transform: translateY(-8px) scale(1.05);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@media (max-width: 520px) {
  .case-highlight__chart-container {
    width: 100%;
  }

  .case-pie {
    width: 150px;
    height: 150px;
  }

  .case-pie__labels {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

.case-study-header {
  text-align: center;
  margin-bottom: 2rem;
}

@media (max-width: 960px) {
  .case-highlight {
    grid-template-columns: 1fr;
  }
}

/* Testimonials */
.testimonial-slider {
  background: rgba(12, 16, 24, 0.82);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}

.testimonial-slider::before {
  content: '';
  position: absolute;
  top: -220px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.35), transparent 65%);
  opacity: 0.6;
  pointer-events: none;
}

.testimonial {
  font-size: 1rem;
  color: var(--color-subtext);
}

.testimonial__quote {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial__quote::before {
  content: '+óÔé¼+ô';
  font-size: 3rem;
  color: rgba(99, 102, 241, 0.4);
  position: absolute;
  top: -1rem;
  left: -1rem;
}

.testimonial__author {
  font-weight: 600;
  color: var(--color-text);
}

.testimonial__role {
  font-size: 0.9rem;
  color: var(--color-subtext);
}

/* Blog cards */
.blog-card {
  display: grid;
  gap: 1.25rem;
  padding: 1.75rem;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(99, 102, 241, 0.18);
  transition: transform 0.3s ease, border 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(99, 102, 241, 0.35);
}

.blog-card__meta {
  display: flex;
  gap: 0.75rem;
  color: var(--color-secondary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.blog-card__title {
  font-size: 1.25rem;
  margin: 0;
}

.blog-card__excerpt {
  color: var(--color-subtext);
  margin: 0;
}

/* Contact section */
.contact-card {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: rgba(15, 23, 42, 0.85);
  border-radius: 28px;
  border: 1px solid rgba(99, 102, 241, 0.25);
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: var(--shadow-elevated);
}

.contact-card__details {
  display: grid;
  gap: 1.5rem;
}

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

.contact-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
}

.contact-item__icon svg {
  width: 24px;
  height: 24px;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.input {
  border-radius: 12px;
  border: 1px solid rgba(99, 102, 241, 0.24);
  background: rgba(12, 16, 24, 0.7);
  padding: 0.85rem 1rem;
  color: var(--color-text);
  font-size: 1rem;
  font-family: inherit;
}

.input:focus {
  border-color: rgba(34, 211, 238, 0.6);
  outline: none;
  box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.15);
}

.select-wrapper {
  position: relative;
}

.select-wrapper select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: none;
  border-radius: 12px;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.select-wrapper::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 0.6rem;
  height: 0.6rem;
  border-right: 2px solid rgba(148, 163, 184, 0.7);
  border-bottom: 2px solid rgba(148, 163, 184, 0.7);
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}

.input--textarea {
  min-height: 160px;
  resize: vertical;
}

@media (max-width: 860px) {
  .contact-card {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.site-footer {
  background: #050608;
  border-top: 1px solid rgba(99, 102, 241, 0.15);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.footer__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.footer__col h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--color-subtext);
}

.footer__links a:hover {
  color: var(--color-text);
}

.footer__cta {
  display: grid;
  gap: 1rem;
}

.footer__subtext {
  color: var(--color-subtext);
  font-size: 0.9rem;
}

.footer__bottom {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(99, 102, 241, 0.12);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(148, 163, 184, 0.65);
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

/* Language helper */
.lang {
  display: none;
}

body.lang-fr .lang-fr,
body.lang-en .lang-en {
  display: inline;
}

body:not(.lang-fr) .lang-en {
  display: inline;
}

/* Utility */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.24);
  color: var(--color-text);
  font-size: 0.85rem;
}

.stats-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1.5rem 2rem;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(79, 70, 229, 0.2);
}

.stat-block h3 {
  margin: 0 0 0.3rem;
  font-size: 1.6rem;
}

.stat-block p {
  margin: 0;
  color: var(--color-subtext);
  font-size: 0.9rem;
}

.pill-nav {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.pill-nav a {
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: var(--color-subtext);
  transition: all 0.3s ease;
}

.pill-nav a:hover,
.pill-nav a[aria-current="true"] {
  background: rgba(99, 102, 241, 0.22);
  color: var(--color-text);
}

.process {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process__step {
  border-left: 2px solid rgba(99, 102, 241, 0.35);
  padding-left: 1.25rem;
}

.process__step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 960px) {
  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .process {
    grid-template-columns: 1fr;
  }
}

.faq {
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 20px;
  overflow: hidden;
}

.faq__item {
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  padding: 1.25rem 1.5rem;
  background: rgba(15, 23, 42, 0.78);
}

.faq__item:last-child {
  border-bottom: none;
}

.faq__question {
  font-weight: 600;
  margin-bottom: .5rem;
}

.faq__answer {
  color: var(--color-subtext);
  margin: 0;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0.75rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.5), rgba(14, 165, 233, 0.45));
}

.timeline__item {
  position: relative;
  padding: 1rem 0 1rem 0.5rem;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -1.15rem;
  top: 1.25rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-secondary);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.2);
}

.timeline__title {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.timeline__text {
  margin: 0;
  color: var(--color-subtext);
}

/* Mobile App CTA */
.mobile-app-cta {
  position: relative;
  background: radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.45), transparent 55%),
  radial-gradient(circle at 80% 0%, rgba(14, 165, 233, 0.35), transparent 45%);
  opacity: 0.9;
  mix-blend-mode: screen;
  pointer-events: none;
  /*background-color: var(--color-surface);*/
  padding: 2rem 0; /* Reduced padding */
}

.mobile-app-cta .cta-banner {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.85), rgba(99, 102, 241, 0.85), rgba(14, 165, 233, 0.75));
  border-radius: 28px;
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  gap: 1.5rem;
  align-items: center;
  box-shadow: var(--shadow-elevated);
  text-align: center;
}

.mobile-app-cta .cta-banner__actions {
  justify-content: center;
}

.mobile-app-animation-container {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.mobile-app-animation {
  position: relative;
  width: 250px;
  height: 500px;
  transform-style: preserve-3d;
  transform: rotateY(0deg);
}

.mobile-app-animation img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.mobile-app-animation img.active {
  opacity: 1;
}


.cta-banner {
  background: linear-gradient(140deg, rgba(17, 24, 39, 0.94), rgba(73, 21, 86, 0.78), rgba(8, 75, 86, 0.6));
  border-radius: 28px;
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  gap: 1.5rem;
  align-items: center;
  box-shadow: var(--shadow-elevated);
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 720px) {
  .cta-banner {
  text-align: center;
  }

  .cta-banner__actions {
    justify-content: center;
  }
}

.cta-section {
  padding-top: clamp(2rem, 5vw, 3rem);
  padding-bottom: clamp(2rem, 5vw, 3rem);
}

.team-section {
  position: relative;
  padding-top: clamp(3rem, 6vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.team-panel {
  position: relative;
  padding: clamp(2.75rem, 6vw, 3.5rem);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(17, 24, 39, 0.88));
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: var(--shadow-elevated);
  display: grid;
  gap: clamp(2.5rem, 5vw, 3.5rem);
  overflow: hidden;
}

.team-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 14% 18%, rgba(99, 102, 241, 0.25), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(34, 211, 238, 0.2), transparent 48%);
  mix-blend-mode: screen;
  pointer-events: none;
  opacity: 0.9;
}

.team-intro {
  position: relative;
  z-index: 1;
  max-width: 540px;
  display: grid;
  gap: 1rem;
}

.team-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.team-card {
  position: relative;
  padding: clamp(1.75rem, 3vw, 2.25rem);
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(79, 70, 229, 0.28);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(34, 211, 238, 0.65);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.5);
}

.team-card__media {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(17, 24, 39, 0.6);
  max-height: 340px;
  transition: max-height 0.45s ease, opacity 0.45s ease, transform 0.45s ease;
}

.team-card__media img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.team-card:hover .team-card__media {
  opacity: 0;
  transform: translateY(-24px);
  max-height: 0;
}

.team-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
  transition: transform 0.45s ease;
}

.team-card:hover .team-card__content {
  transform: translateY(-12px);
}

.team-card__content h3 {
  margin: 0;
  font-size: 1.25rem;
}

.team-card__role {
  margin: 0.25rem 0 0;
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 0.95rem;
}

.team-card__details {
  color: var(--color-subtext);
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(12px);
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s, max-height 0.45s ease;
}

.team-card:hover .team-card__details {
  opacity: 1;
  transform: translateY(0);
  max-height: 220px;
}

@media (max-width: 768px) {
  .team-panel {
    padding: clamp(2rem, 8vw, 2.75rem);
  }

  .team-card {
    text-align: center;
  }

  .team-card__content {
    align-items: center;
  }
}

#contact.section {
  padding-top: clamp(2rem, 5vw, 3.25rem);
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  align-items: center;
  color: rgba(148, 163, 184, 0.7);
}

.logo-strip img {
  max-height: 36px;
  opacity: 0.7;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.metric-card {
  padding: 2rem;
  border-radius: 20px;
  background: rgba(17, 24, 39, 0.82);
  border: 1px solid rgba(79, 70, 229, 0.2);
  text-align: center;
}

.metric-card h3 {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.metric-card p {
  margin: 0;
  color: var(--color-subtext);
}

@media (max-width: 960px) {
  .metrics {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.service-detail {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  gap: 1.5rem;
}

.service-detail__header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.service-detail__stack {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Tables & matrices */
.matrix {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}

.matrix thead {
  background: rgba(30, 41, 59, 0.8);
}

.matrix th,
.matrix td {
  border: 1px solid rgba(99, 102, 241, 0.18);
  padding: 1rem;
  text-align: left;
  color: var(--color-subtext);
}

.matrix th {
  color: var(--color-text);
  font-weight: 600;
}

/* Insights cards */
.insight-card {
  padding: 2rem;
  border-radius: 20px;
  background: rgba(17, 24, 39, 0.82);
  border: 1px solid rgba(79, 70, 229, 0.25);
  display: grid;
  gap: 1rem;
}

.insight-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--color-secondary);
  font-size: 0.8rem;
}

.insight-card__title {
  font-size: 1.35rem;
  margin: 0;
}

.insight-card__excerpt {
  color: var(--color-subtext);
  margin: 0;
}

.insight-card__cta {
  color: var(--color-secondary);
  font-weight: 600;
}

/* Language ribbons */
.lang-badge {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.18);
  color: var(--color-secondary);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.map-embed {
  border: 0;
  width: 100%;
  min-height: 240px;
  border-radius: 16px;
  filter: grayscale(0.3) invert(0.85);
  opacity: 0.8;
}
/* Mobile App Layout */
.mobile-app-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  min-height: 500px; /* Match animation container height */
}

.mobile-app-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

@media (max-width: 960px) {
  .mobile-app-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .mobile-app-content {
    align-items: center;
  }
}

/* Mobile App Animation */

select, .select-wrapper select option { color: #0b0d0f; background-color: #f9f9fb; }










.mobile-app-stage.is-active .device-stack .device { opacity: 1; filter: none; }
.mobile-app-stage.is-active [data-device-laptop] { transform: translate3d(0, 0, 0) scale(1); }
.mobile-app-stage.is-active [data-device-mobile] { transform: translate3d(-180px, 20px, 0) rotateY(-10deg); }
.mobile-app-stage.is-active [data-device-tablet] { transform: translate3d(180px, 20px, 0) rotateY(8deg); }
.mobile-app-stage .device-stack .device { transform: translate3d(0, 10px, -20px) scale(0.9); }
