/* Base visual system */
:root {
  --color-white: #ffffff;
  --color-smoke: #f8f9fa;
  --color-accent: #0d6efd;
  --color-accent-dark: #084298;
  --color-dark: #212529;
  --color-text: #495057;
  --color-muted: #6c757d;
  --color-border: #dee2e6;
  --color-line: rgba(13, 110, 253, 0.16);
  --shadow-sm: 0 8px 24px rgba(33, 37, 41, 0.08);
  --shadow-md: 0 18px 48px rgba(33, 37, 41, 0.13);
  --radius: 8px;
  --nav-height: 72px;
  --section-space: 4.5rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 1rem);
}

body {
  margin: 0;
  background: var(--color-white);
  color: var(--color-text);
  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  color: var(--color-dark);
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.12;
}

h1 {
  font-size: 2.6rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.15rem;
}

p {
  margin-bottom: 0;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

a:hover {
  color: var(--color-accent-dark);
}

img,
svg {
  max-width: 100%;
  height: auto;
}

::selection {
  background: rgba(13, 110, 253, 0.18);
}

:focus-visible {
  outline: 3px solid rgba(13, 110, 253, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1100;
  transform: translateY(-150%);
  border-radius: var(--radius);
  background: var(--color-dark);
  color: var(--color-white);
  font-weight: 700;
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  transform: translateY(0);
  color: var(--color-white);
}

/* Navigation */
.site-navbar {
  min-height: var(--nav-height);
  border-bottom: 1px solid rgba(222, 226, 230, 0.75);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease, background-color 220ms ease;
}

.site-navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 32px rgba(33, 37, 41, 0.08);
}

.navbar-toggler {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.55rem 0.65rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.18);
}

.site-navbar .nav-link {
  position: relative;
  border-radius: var(--radius);
  color: var(--color-dark);
  font-weight: 700;
  letter-spacing: 0;
  padding: 0.7rem 0.85rem;
}

.site-navbar .nav-link::after {
  position: absolute;
  right: 0.85rem;
  bottom: 0.45rem;
  left: 0.85rem;
  height: 2px;
  border-radius: 999px;
  background: var(--color-accent);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
  color: var(--color-accent);
}

.site-navbar .nav-link:hover::after,
.site-navbar .nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  border-radius: var(--radius);
  font-weight: 800;
  letter-spacing: 0;
  white-space: normal;
}

.btn {
  padding-right: 1.15rem;
  padding-left: 1.15rem;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.btn-primary {
  box-shadow: 0 12px 28px rgba(13, 110, 253, 0.25);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-outline-light:hover {
  color: var(--color-dark);
}

/* Shared layout */
.section {
  padding: var(--section-space) 0;
}

.section-compact {
  padding: 2.3rem 0;
}

.section-soft {
  background: var(--color-smoke);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2.3rem;
  text-align: center;
}

.section-heading p:not(.eyebrow),
.section-copy {
  color: var(--color-muted);
  font-size: 1.05rem;
  margin-top: 1rem;
}

.eyebrow {
  color: var(--color-accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

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

.card-lift {
  border: 1px solid rgba(222, 226, 230, 0.75);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.card-lift:hover {
  border-color: var(--color-line);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.icon-badge {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(13, 110, 253, 0.18);
  border-radius: var(--radius);
  background: rgba(13, 110, 253, 0.09);
  color: var(--color-accent);
  font-size: 1.35rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-accent);
  font-weight: 800;
}

.link-arrow i {
  transition: transform 180ms ease;
}

.link-arrow:hover i {
  transform: translateX(4px);
}

/* Home hero */
.hero {
  position: relative;
  display: flex;
  min-height: 72svh;
  align-items: center;
  overflow: hidden;
  padding: 7rem 0 5.2rem;
  color: var(--color-white);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 22, 42, 0.92) 0%, rgba(8, 22, 42, 0.72) 48%, rgba(8, 22, 42, 0.35) 100%),
    linear-gradient(180deg, rgba(8, 22, 42, 0.1) 0%, rgba(8, 22, 42, 0.65) 100%);
}

.hero-home {
  min-height: auto;
  border-bottom: 0;
  background: #ffffff;
  color: var(--color-dark);
  padding: clamp(4.5rem, 7vw, 6rem) 0 clamp(3.4rem, 5vw, 4.8rem);
}

.hero-home .hero-bg,
.hero-home .hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: var(--color-white);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-home h1 {
  width: fit-content;
  max-width: 100%;
  background: linear-gradient(90deg, #063a7a 0%, #0d6efd 52%, #2fb8e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
}

.hero-home .hero-lead {
  color: #2f3f4f;
}

.hero-home .eyebrow {
  color: var(--color-accent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.hero-proof {
  display: grid;
  gap: 0.85rem;
  max-width: 720px;
  margin: 2rem 0 0;
  padding: 0;
  grid-template-columns: 1fr;
  list-style: none;
}

.hero-proof li {
  display: flex;
}

.hero-proof__link {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 0.65rem 0.8rem;
  text-align: center;
  transition: border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.hero-home .hero-proof__link {
  border-color: rgba(13, 110, 253, 0.16);
  background: rgba(255, 255, 255, 0.78);
  color: var(--color-dark);
  box-shadow: 0 12px 32px rgba(13, 110, 253, 0.08);
}

.hero-proof__link:hover {
  border-color: rgba(13, 110, 253, 0.34);
  color: var(--color-accent-dark);
  box-shadow: 0 16px 34px rgba(13, 110, 253, 0.12);
  transform: translateY(-2px);
}

.hero-home .hero-proof i {
  color: var(--color-accent);
}

.hero-logo-showcase {
  position: relative;
  display: grid;
  width: min(100%, 440px);
  margin: 2.4rem auto 0;
  place-items: center;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.hero-logo-showcase::before {
  display: none;
}

.hero-logo-showcase::after {
  display: none;
}

.hero-logo-showcase img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}

.metrics-strip {
  position: relative;
  overflow: hidden;
  border-top: 0;
  border-bottom: 1px solid var(--color-border);
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%),
    var(--color-white);
}

.metrics-strip::before {
  display: none;
}

.metrics-strip .container {
  position: relative;
  z-index: 1;
}

.metrics-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.metrics-grid > div {
  border-left: 3px solid var(--color-accent);
  padding: 0.35rem 0 0.35rem 1rem;
}

.metrics-grid strong {
  display: block;
  color: var(--color-dark);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.metrics-grid span {
  display: block;
  color: var(--color-muted);
  font-weight: 700;
  margin-top: 0.35rem;
}

.visual-break {
  --visual-break-image: url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1800&q=82");
  position: relative;
  min-height: clamp(150px, 16vw, 240px);
  overflow: hidden;
  border-top: 1px solid rgba(13, 110, 253, 0.1);
  border-bottom: 1px solid rgba(13, 110, 253, 0.1);
  background: #ffffff;
}

.visual-break::before {
  position: absolute;
  inset: 0;
  background-image: var(--visual-break-image);
  background-position: center;
  background-size: cover;
  content: "";
  filter: saturate(0.92) contrast(1.04);
  opacity: 0.4;
  transform: scale(1.02);
}

.visual-break::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.84) 34%, rgba(255, 255, 255, 0.54) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(13, 110, 253, 0.08) 50%, rgba(255, 255, 255, 0.84) 100%);
  content: "";
}

.visual-break--network {
  --visual-break-image: url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1800&q=82");
}

.visual-break--fiber {
  --visual-break-image: url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1800&q=82");
}

.visual-break--datacenter {
  --visual-break-image: url("https://images.unsplash.com/photo-1544197150-b99a580bb7a8?auto=format&fit=crop&w=1800&q=82");
}

.feature-card {
  height: 100%;
  padding: 1.3rem;
}

.feature-card h3,
.benefit-item h3,
.process-item h3 {
  margin: 1rem 0 0.65rem;
}

.feature-card p,
.benefit-item p,
.process-item p,
.service-card p,
.project-card p,
.contact-card p {
  color: var(--color-muted);
}

.benefits-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.benefit-item,
.process-item {
  border: 1px solid rgba(222, 226, 230, 0.82);
  border-radius: var(--radius);
  background: var(--color-white);
  padding: 1.25rem;
}

.benefit-item i {
  color: var(--color-accent);
  font-size: 1.45rem;
}

.logo-cloud {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, 1fr);
}

.logo-cloud span {
  display: grid;
  min-height: 76px;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  color: var(--color-dark);
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
  text-align: center;
}

.testimonial-card {
  height: 100%;
  margin: 0;
  padding: 1.35rem;
}

.testimonial-card blockquote {
  color: var(--color-dark);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.testimonial-card figcaption {
  color: var(--color-muted);
  font-weight: 700;
}

.final-cta {
  background: #000;;
  color: var(--color-white);
}

.final-cta .eyebrow,
.final-cta h2 {
  color: var(--color-white);
}

.final-cta__inner {
  display: grid;
  gap: 1.4rem;
  align-items: center;
}

.row.g-5 {
  --bs-gutter-x: 1.5rem;
}

/* Inner page hero */
.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
  background:
    linear-gradient(135deg, var(--color-smoke) 0%, var(--color-white) 58%),
    var(--color-white);
  padding: 5rem 0 4rem;
}

.page-hero::after {
  position: absolute;
  inset: auto -10% -30% auto;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(13, 110, 253, 0.12);
  background-image:
    linear-gradient(rgba(13, 110, 253, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 110, 253, 0.1) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
  opacity: 0.45;
  transform: rotate(8deg);
}

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

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--color-muted);
  font-size: 1.08rem;
}

/* Services */
.service-card {
  height: 100%;
  overflow: hidden;
}

.service-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-smoke);
}

.service-card__media img,
.project-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.service-card:hover .service-card__media img,
.project-card:hover > img {
  transform: scale(1.045);
}

.service-card__body {
  display: grid;
  gap: 0.85rem;
  padding: 1.3rem;
}

.service-card h2,
.project-card h2,
.contact-card h2 {
  font-size: 1.25rem;
  margin: 0;
}

.process-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.process-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--color-accent);
  color: var(--color-white);
  font-weight: 800;
}

/* Home institutional sections */
.insight-card,
.recognition-card,
.certifications-panel {
  display: grid;
  height: 100%;
  gap: 1rem;
  padding: 1.35rem;
}

.insight-card p,
.recognition-card p,
.certifications-panel p {
  color: var(--color-muted);
}

.certification-grid,
.alliance-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.certification-grid span,
.alliance-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(13, 110, 253, 0.18);
  border-radius: var(--radius);
  background: rgba(13, 110, 253, 0.08);
  color: var(--color-accent-dark);
  font-weight: 800;
  padding: 0.5rem 0.75rem;
}

.alliance-strip {
  justify-content: center;
}

.alliance-strip span {
  min-width: 150px;
  justify-content: center;
  background: var(--color-white);
  color: var(--color-dark);
}

.certification-plaque,
.canieti-plaque {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(13, 110, 253, 0.16);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: 0 18px 42px rgba(33, 37, 41, 0.1);
  padding: clamp(0.8rem, 2vw, 1.35rem);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.certification-plaque::before,
.canieti-plaque::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(13, 110, 253, 0.08), transparent 36%),
    linear-gradient(315deg, rgba(35, 174, 234, 0.12), transparent 34%);
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
}

.certification-plaque img,
.canieti-plaque img {
  display: block;
  width: 100%;
  border-radius: calc(var(--radius) - 2px);
  object-fit: contain;
  transition: filter 220ms ease, transform 220ms ease;
}

.certification-plaque img {
  aspect-ratio: 1410 / 605;
}

.canieti-plaque {
  max-width: 300px;
  margin-right: auto;
  margin-left: auto;
  background: #07147a;
  padding: 0.55rem;
}

.canieti-plaque img {
  aspect-ratio: 1;
}

.plaque-sparkle {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 42px;
  height: 42px;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.58) rotate(-14deg);
  transition: opacity 180ms ease, transform 220ms ease;
}

.plaque-sparkle::before,
.plaque-sparkle::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ffffff 0%, #9fd4ff 48%, #0d6efd 100%);
  clip-path: polygon(50% 0, 61% 37%, 100% 50%, 61% 63%, 50% 100%, 39% 63%, 0 50%, 39% 37%);
  content: "";
  filter: drop-shadow(0 10px 20px rgba(13, 110, 253, 0.28));
}

.plaque-sparkle::after {
  inset: 58% auto auto -8px;
  width: 16px;
  height: 16px;
  opacity: 0.86;
}

.certification-plaque:hover,
.canieti-plaque:hover {
  border-color: rgba(13, 110, 253, 0.36);
  box-shadow: 0 24px 58px rgba(13, 110, 253, 0.18);
  transform: translateY(-4px);
}

.certification-plaque:hover::before,
.canieti-plaque:hover::before {
  opacity: 1;
}

.certification-plaque:hover img,
.canieti-plaque:hover img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.012);
}

.certification-plaque:hover .plaque-sparkle,
.canieti-plaque:hover .plaque-sparkle {
  animation: certificationSparkle 1400ms ease-in-out infinite;
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Institutional video */
.video-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(88, 183, 255, 0.32), transparent 30%),
    linear-gradient(135deg, #063a7a 0%, #0d6efd 48%, #23aeea 100%);
  color: var(--color-white);
}

.video-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  opacity: 0.18;
}

.video-section .container {
  position: relative;
  z-index: 1;
}

.video-section .eyebrow,
.video-section .section-heading p:not(.eyebrow),
.video-section h2,
.video-section .gradient-title {
  background: none;
  color: var(--color-white);
  -webkit-text-fill-color: var(--color-white);
}

.video-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.video-panel {
  width: min(100%, 720px);
  margin: 0 auto;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: #050a12;
  box-shadow: 0 20px 52px rgba(3, 16, 34, 0.32);
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@keyframes certificationSparkle {
  0%,
  100% {
    transform: scale(0.9) rotate(-8deg);
  }

  45% {
    transform: scale(1.08) rotate(8deg);
  }
}

/* Interactive services */
.service-explorer {
  display: grid;
  gap: 1.25rem;
}

.service-tabs {
  display: grid;
  gap: 0.75rem;
}

.service-tab {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  color: var(--color-dark);
  font-weight: 800;
  line-height: 1.25;
  padding: 0.9rem 1rem;
  text-align: left;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.service-tab i {
  color: var(--color-accent);
  font-size: 1.25rem;
}

.service-tab:hover,
.service-tab.is-active {
  border-color: rgba(13, 110, 253, 0.38);
  background: rgba(13, 110, 253, 0.08);
  color: var(--color-accent-dark);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.service-detail {
  display: grid;
  overflow: hidden;
}

.service-detail__media {
  min-height: 260px;
  background: var(--color-smoke);
}

.service-detail__media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.service-detail__content {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
}

.service-detail__content p {
  color: var(--color-muted);
}

.service-points {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-points li {
  position: relative;
  color: var(--color-dark);
  font-weight: 700;
  padding-left: 1.4rem;
}

.service-points li::before {
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-accent);
  content: "";
}

/* Projects */
.project-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.project-card {
  display: grid;
  overflow: hidden;
}

.project-card > img {
  aspect-ratio: 16 / 10;
}

.project-card__body {
  display: grid;
  gap: 0.9rem;
  padding: 1.3rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-list span {
  border: 1px solid rgba(13, 110, 253, 0.18);
  border-radius: var(--radius);
  background: rgba(13, 110, 253, 0.08);
  color: var(--color-accent-dark);
  font-size: 0.84rem;
  font-weight: 800;
  padding: 0.35rem 0.55rem;
}

.result-box {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  border-top: 1px solid var(--color-border);
  padding-top: 0.95rem;
}

.result-box strong {
  color: var(--color-accent);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.45rem;
  line-height: 1;
}

.result-box span {
  color: var(--color-muted);
  font-weight: 700;
}

.case-list {
  display: grid;
  gap: 1.25rem;
}

.case-story {
  display: grid;
  overflow: hidden;
}

.project-image-placeholder {
  display: grid;
  min-height: 260px;
  place-items: center;
  align-content: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--color-border);
  background:
    linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(255, 255, 255, 0.9)),
    repeating-linear-gradient(45deg, rgba(13, 110, 253, 0.08) 0 1px, transparent 1px 14px);
  color: var(--color-accent-dark);
  font-weight: 800;
  text-align: center;
}

.project-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-image-placeholder i {
  font-size: 2rem;
}

.case-story__content {
  display: grid;
  gap: 0.9rem;
  padding: 1.35rem;
}

.case-story__content p:not(.eyebrow) {
  color: var(--color-muted);
}

/* Contact */
.contact-panel,
.contact-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.contact-panel {
  padding: 1.25rem;
}

.contact-panel h2 {
  margin-bottom: 1.3rem;
}

.form-label,
.form-check-label {
  color: var(--color-dark);
  font-weight: 800;
}

.form-control,
.form-select {
  min-height: 3rem;
  border-color: var(--color-border);
  border-radius: var(--radius);
  color: var(--color-dark);
}

textarea.form-control {
  min-height: 8rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.16);
}

.form-message {
  min-height: 1.5rem;
  color: var(--color-accent-dark);
  font-weight: 800;
  margin-top: 1rem;
}

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

.contact-card {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

.contact-info-list {
  display: grid;
  gap: 0.9rem;
}

.contact-info-list > div {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  padding: 1rem;
}

.contact-info-list i {
  color: var(--color-accent);
  font-size: 1.25rem;
}

.contact-info-list strong,
.contact-info-list span,
.contact-info-list a {
  display: block;
}

.contact-info-list strong {
  color: var(--color-dark);
  font-weight: 800;
}

.map-frame {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #030405;
  color: rgba(255, 255, 255, 0.72);
  padding: 3.2rem 0 1.5rem;
}

.footer-brand img {
  display: block;
  width: min(210px, 100%);
  height: auto;
}

.footer-title {
  color: var(--color-white);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-text {
  max-width: 420px;
}

.footer-links {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a,
.footer-links li {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a:hover {
  color: var(--color-white);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.social-links a {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: var(--color-white);
}

.social-links a:hover {
  border-color: rgba(13, 110, 253, 0.55);
  background: rgba(13, 110, 253, 0.22);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2.2rem;
  padding-top: 1.2rem;
}

.footer-bottom p {
  margin: 0;
}

/* Animation layer enabled only when JavaScript is running. */
html.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

html.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 576px) {
  .metrics-grid,
  .benefits-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .logo-cloud {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-tabs {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  :root {
    --section-space: 5.5rem;
  }

  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero-lead {
    font-size: 1.2rem;
  }

  .contact-panel {
    padding: 1.65rem;
  }

  .w-md-auto {
    width: auto !important;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 992px) {
  .site-navbar .navbar-collapse {
    align-items: center;
  }

  .row.g-5 {
    --bs-gutter-x: 3rem;
  }

  .hero {
    padding-top: 8rem;
  }

  .hero-home {
    padding-top: clamp(4.5rem, 6vw, 5.8rem);
  }

  .hero-logo-showcase {
    margin-top: 0;
    margin-right: 0;
  }

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

  .benefits-grid,
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .logo-cloud {
    grid-template-columns: repeat(6, 1fr);
  }

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

  .logo-cloud--clients {
    grid-template-columns: repeat(4, 1fr);
  }

  .service-explorer {
    grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
    align-items: start;
  }

  .service-tabs {
    grid-template-columns: 1fr;
  }

  .service-detail {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

  .service-detail__media,
  .service-detail__media img {
    min-height: 100%;
  }

  .case-story {
    grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  }

  .project-image-placeholder {
    min-height: 100%;
    border-right: 1px solid var(--color-border);
    border-bottom: 0;
  }

  .final-cta__inner {
    grid-template-columns: 1fr auto;
  }
}

@media (min-width: 1200px) {
  .project-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 1380px;
  }

  .hero {
    min-height: 68svh;
  }
}

@media (max-width: 991.98px) {
  .site-navbar .navbar-collapse {
    border-top: 1px solid var(--color-border);
    margin-top: 0.85rem;
    padding: 0.85rem 0 0.35rem;
  }

  .site-navbar .nav-link {
    padding-right: 0.25rem;
    padding-left: 0.25rem;
  }

  .site-navbar .nav-link::after {
    right: 0.25rem;
    left: 0.25rem;
  }
}

@media (max-width: 575.98px) {
  h1 {
    font-size: 2.35rem;
  }

  .hero {
    min-height: 76svh;
    padding: 5.6rem 0 3.8rem;
  }

  .hero-home {
    min-height: auto;
    padding: 4rem 0 3rem;
  }

  .hero h1 {
    font-size: 2.85rem;
  }

  .hero-logo-showcase {
    width: min(100%, 300px);
    margin-top: 1.6rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-proof li {
    width: 100%;
  }

  .hero-proof__link {
    width: 100%;
  }
}

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

  html.reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
