@import url("flaticon.css");
@import url("fontawesome-all.css");

/* Scroll Reveal Animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.visible,
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.terminal-cursor::after {
  content: '|';
  animation: blink 1s step-end infinite;
}

@keyframes blink {

  from,
  to {
    color: transparent
  }

  50% {
    color: #E3A83B
  }
}

.technical-grid {
  background-image: radial-gradient(circle at 1px 1px, rgba(18, 107, 126, 0.05) 1px, transparent 0);
  background-size: 40px 40px;
}

.gradient-border {
  position: relative;
}

.gradient-border::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.2), transparent, rgba(255, 255, 255, 0.1));
  -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;
}

/* From digital-transformation.html */

.grid-blueprint {
  background-image: radial-gradient(circle, #bec8cc 1px, transparent 1px);
  background-size: 32px 32px;
}

.terminal-header-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 229, 235, 0.5);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  transition: max-height 0.5s ease-in;
}

.accordion-item.active .arrow-icon {
  transform: rotate(180deg);
}

/* From hire-dedicated-developers.html */

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  display: inline-block;
  vertical-align: middle;
}

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

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.terminal-shadow {
  box-shadow: 0 32px 64px -16px rgba(0, 0, 0, 0.5);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

/* From index (4).html */

:root {
  --ink: #16292C;
  --slate: #54686B;
  --teal: #0E6F84;
  --teal-deep: #0A4A57;
  --teal-tint: #E4F1F3;
  --orange: #EF7E3A;
  --orange-deep: #D9611E;
  --cream: #FDEDE0;
  --paper: #FFFFFF;
  --mist: #F5F7F7;
  --line: #E4E9E9;
  --radius: 14px;
  --maxw: 1180px;
  --shadow: 0 20px 45px -25px rgba(18, 63, 72, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'IBM Plex Sans', sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1em;
  color: var(--slate);
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange-deep);
  display: flex;
  align-items: center;
  gap: .6em;
  margin-bottom: 1em;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--orange);
  display: inline-block;
}

section {
  padding: 50px 0;
}

@media (max-width:720px) {
  section {
    padding: 64px 0;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .02em;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}

.btn-primary:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -12px rgba(217, 97, 30, .55);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(22, 41, 44, .18);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

.btn-on-dark {
  border-color: rgba(255, 255, 255, .35);
  color: #fff;
}

.btn-on-dark:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .08);
}

/* ---------- NAV ---------- */
header.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: .6em;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
}

.logo .mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--teal), var(--teal-deep));
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  font-size: .95rem;
}

.logo span.sub {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 400;
  font-size: .62rem;
  letter-spacing: .1em;
  color: var(--teal);
  text-transform: uppercase;
  margin-top: 1px;
}

nav.links {
  display: flex;
  gap: 34px;
  align-items: center;
}

nav.links a {
  font-size: .92rem;
  font-weight: 500;
  color: var(--slate);
  position: relative;
  padding: 4px 0;
}

nav.links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0;
  background: var(--orange);
  transition: width .2s ease;
}

nav.links a:hover {
  color: var(--ink);
}

nav.links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  display: block;
  transition: .25s;
}

@media (max-width:900px) {
  nav.links {
    position: fixed;
    inset: 64px 0 auto 0;
    background: #fff;
    flex-direction: column;
    padding: 24px;
    gap: 0;
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform .3s ease;
    box-shadow: var(--shadow);
  }

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

  nav.links a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .burger {
    display: flex;
  }

  .nav-cta .btn-ghost {
    display: none;
  }
}

/* ---------- HERO ---------- */
.hero {
  padding: 88px 0 100px;
  background:
    radial-gradient(700px 420px at 88% -10%, rgba(29, 110, 124, .10), transparent 60%),
    var(--paper);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}

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

.hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.35rem);
  font-weight: 700;
}

.hero h1 .accent {
  color: var(--orange);
}

.hero-lead {
  font-size: 1.08rem;
  max-width: 52ch;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 28px 0 40px;
}

.stat-row {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.stat-row .stat b {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  color: var(--ink);
  display: block;
}

.stat-row .stat span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--slate);
}

/* signature console */
.console {
  background: var(--teal-deep);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .06);
}

.console-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(0, 0, 0, .16);
}

.console-bar i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.console-bar i:nth-child(1) {
  background: #EF7E3A;
}

.console-bar i:nth-child(2) {
  background: #E8C468;
}

.console-bar i:nth-child(3) {
  background: #5FBFA0;
}

.console-bar span {
  margin-left: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .72rem;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .04em;
}

.console-body {
  padding: 26px 24px 30px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .86rem;
  color: #CFE7EA;
  min-height: 230px;
}

.console-body .line {
  margin-bottom: 14px;
  opacity: 0;
  animation: fadeIn .5s ease forwards;
}

.console-body .line:nth-child(1) {
  animation-delay: .15s;
}

.console-body .line:nth-child(2) {
  animation-delay: .35s;
}

.console-body .prompt {
  color: #5FBFA0;
}

.console-body .path {
  color: #8FD4DC;
}

#typewrite {
  color: #fff;
  font-weight: 500;
}

.cursor {
  display: inline-block;
  width: 8px;
  height: 1.05em;
  background: var(--orange);
  margin-left: 2px;
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}

.progress-wrap {
  margin-top: 24px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: .72rem;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 8px;
}

.progress-track {
  height: 6px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .12);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 12%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--orange), #F2A15F);
  transition: width 1.4s ease;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* ---------- LOGO STRIP ---------- */
.logo-strip {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--mist);
}

.logo-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}

.logo-strip p {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate);
  margin: 0;
}

.tech-row {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: var(--ink);
  opacity: .7;
}

/* ---------- SERVICES ---------- */
.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}

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

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

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

.service-card {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  background: #fff;
}

.service-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: .4em;
}

.service-card p {
  font-size: .92rem;
  margin-bottom: 1.1em;
}

.service-card .learn {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .78rem;
  color: var(--teal);
  font-weight: 500;
}

.service-card .learn::after {
  content: " →";
  transition: margin .2s ease;
}

.service-card:hover .learn::after {
  margin-left: 4px;
}

.service-card.flagship {
  grid-column: span 1;
  background: linear-gradient(160deg, var(--teal), var(--teal-deep));
  color: #fff;
  border: none;
  position: relative;
}

.service-card.flagship:hover {
  background: linear-gradient(160deg, var(--teal), var(--teal-deep));
}

.service-card.flagship .icon {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .18);
  color: #fff;
}

.service-card.flagship h3,
.service-card.flagship p {
  color: #fff;
}

.service-card.flagship p {
  color: rgba(255, 255, 255, .82);
}

.service-card.flagship .learn {
  color: #FBD3B4;
}

.service-card.flagship .badge {
  position: absolute;
  top: 22px;
  right: 22px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .66rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .14);
  padding: 5px 10px;
  border-radius: 99px;
}

/* ---------- PROCESS ---------- */
.process-wrap {
  background: var(--paper);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

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

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

.process-step {
  background: #fff;
  padding: 32px 26px;
  position: relative;
}

.process-step .num {
  font-family: 'IBM Plex Mono', monospace;
  color: var(--orange);
  font-size: .8rem;
  margin-bottom: 14px;
  display: block;
}

.process-step h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: .5em;
}

.process-step p {
  font-size: .88rem;
  margin: 0;
}

.process-step.is-active {
  background: var(--teal-deep);
  color: #fff;
}

.process-step.is-active h4,
.process-step.is-active p {
  color: #fff;
}

.process-step.is-active p {
  color: rgba(255, 255, 255, .82);
}

.process-step.is-active .num {
  color: #FBD3B4;
}

/* ---------- WHY / STATS BAND ---------- */
.band {
  background: radial-gradient(900px 400px at 10% 0%, rgba(255, 255, 255, .06), transparent 60%), var(--teal-deep);
  color: #fff;
}

.band-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}

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

.band h2 {
  color: #fff;
}

.band p {
  color: rgba(255, 255, 255, .78);
}

.why-list {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.why-item .chk {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(239, 126, 58, .18);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-item strong {
  color: #fff;
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .98rem;
}

.why-item span {
  color: rgba(255, 255, 255, .72);
  font-size: .88rem;
}

.stat-panel {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.stat-panel .stat b {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.1rem;
  color: var(--orange);
  display: block;
}

.stat-panel .stat span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .72rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
}

/* ---------- TESTIMONIALS ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

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

.testi-card {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}

.testi-card .quote-mark {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.6rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}

.testi-card p {
  font-size: .98rem;
  color: var(--ink);
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--teal), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
}

.testi-author b {
  display: block;
  font-size: .92rem;
}

.testi-author span {
  font-size: .78rem;
  color: var(--slate);
}

/* ---------- INDUSTRIES ---------- */
.industry-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.industry-pill {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .82rem;
  padding: 12px 20px;
  border-radius: 99px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  transition: border-color .2s ease, color .2s ease;
}

.industry-pill:hover {
  border-color: var(--orange);
  color: var(--orange-deep);
}

/* ---------- FAQ ---------- */
.faq-wrap {
  max-width: 820px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 4px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.02rem;
  color: var(--ink);
}

.faq-q .plus {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform .25s ease, background .2s ease;
}

.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: .2s ease;
}

.faq-q .plus::before {
  width: 10px;
  height: 1.5px;
}

.faq-q .plus::after {
  width: 1.5px;
  height: 10px;
}

.faq-item.open .plus {
  background: var(--orange);
  border-color: var(--orange);
  transform: rotate(180deg);
}

.faq-item.open .plus::before,
.faq-item.open .plus::after {
  background: #fff;
}

.faq-item.open .plus::after {
  opacity: 0;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-a p {
  padding: 0 4px 22px;
  font-size: .94rem;
}

/* ---------- CTA BAND ---------- */
.cta-band {
  background: var(--cream);
  border-radius: 24px;
  margin: 0 24px;
  max-width: calc(var(--maxw) - 48px);
  margin-left: auto;
  margin-right: auto;
  padding: 64px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}

@media (max-width:860px) {
  .cta-band {
    grid-template-columns: 1fr;
    padding: 40px 28px;
  }
}

.cta-steps {
  display: grid;
  gap: 16px;
}

.cta-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.cta-step .n {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .78rem;
  color: var(--orange-deep);
  font-weight: 500;
  width: 26px;
  flex-shrink: 0;
  padding-top: 2px;
}

.cta-step strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .95rem;
}

.cta-step span {
  font-size: .85rem;
  color: var(--slate);
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .7);
  padding: 64px 0 28px;
}

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

@media (max-width:860px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 36px;
  }
}

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

footer h5 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}

footer .flogo {
  display: flex;
  align-items: center;
  gap: .6em;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

footer p.desc {
  font-size: .88rem;
  max-width: 34ch;
}

footer ul li {
  margin-bottom: 11px;
  font-size: .88rem;
}

footer ul li a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: .8rem;
}

.social-row {
  display: flex;
  gap: 12px;
}

.social-row a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s ease;
}

.social-row a:hover {
  background: var(--orange);
  border-color: var(--orange);
}

/* reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

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

  html {
    scroll-behavior: auto;
  }
}

/* From offshore-development-center.html */

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.technical-grid {
  background-image: radial-gradient(circle at 1px 1px, rgba(0, 82, 97, 0.05) 1px, transparent 0);
  background-size: 40px 40px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 229, 235, 0.5);
}

.hero-terminal {
  box-shadow: 0 32px 64px -16px rgba(0, 0, 0, 0.5);
}

.terminal-cursor::after {
  content: '|';
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* From saas-software-development.html */

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.technical-grid-pattern {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.terminal-shadow {
  box-shadow: 0 32px 64px -16px rgba(0, 0, 0, 0.5);
}

/* From white-label-software-development.html */

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.technical-grid {
  background-image:
    radial-gradient(circle at 1px 1px, rgba(18, 107, 126, 0.15) 1px, transparent 0);
  background-size: 32px 32px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 82, 97, 0.1);
}

.terminal-header-dots::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5f56;
  box-shadow: 18px 0 0 #ffbd2e, 36px 0 0 #27c93f;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Footer Background Color */
footer,
footer.bg-navy-alt,
.bg-navy-alt,
.main-footer {
  background-color: #162e38 !important;
}

@media (min-width: 640px) {
  .sm\:text-base {
    font-size: 1.19rem !important;
    line-height: 1.6rem;
  }
}

/* Universal Button Font Size Override: 1.19rem */
button,
input[type="submit"],
input[type="button"],
input[type="reset"],
.btn,
.btn-theme,
.text-button,
.font-button,
a.btn,
a.btn-theme,
a[class*="rounded-full"],
a[class*="rounded-xl"],
a[class*="rounded-lg"],
button[class*="rounded-"] {
  font-size: 1.19rem !important;
}

@media (min-width: 640px) {
  .sm\:text-\[10px\] {
    font-size: 14px !important;
  }
}

.text-xl {
  font-size: 1.55rem !important;
  line-height: 1.75rem;
}

.text-sm {
  font-size: 1rem !important;
  line-height: 1.25rem;
}

/* All Pages Footer Text White */
footer,
footer p,
footer span,
footer li,
footer a,
footer h5,
footer div {
  color: #ffffff !important;
}

footer a:hover {
  color: #f6763c !important;
}

/* Card Icon Box Hover Fix */
.card-icon-box {
  background-color: #ffffff;
  color: #126b7e;
  border: 1px solid #E2E5EB;
  transition: all 0.3s ease;
}

.group:hover .card-icon-box {
  background-color: #126b7e !important;
  color: #ffffff !important;
  border-color: #126b7e !important;
}

.group:hover .card-icon-box .material-symbols-outlined,
.group:hover .card-icon-box i,
.group:hover .card-icon-box svg,
.group:hover .card-icon-box span {
  color: #ffffff !important;
}

/* Tailwind group-hover fallback rules */
.group:hover .group-hover\:bg-primary,
.group:hover .group-hover\:bg-\[\#126b7e\] {
  background-color: #126b7e !important;
}

.group:hover .group-hover\:bg-brand-orange,
.group:hover .group-hover\:bg-\[\#f6763c\] {
  background-color: #f6763c !important;
}

.group:hover .group-hover\:text-white,
.group:hover .group-hover\:text-white * {
  color: #ffffff !important;
}