@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Bebas+Neue&display=swap');

/* =========================
   PFC GLOBAL STYLES
   ========================= */

:root {
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --bg-panel: #f1f3f5;

  --text: #12161c;
  --text-muted: #626b76;
  --heading: #0d1117;

  --line: #dde2e7;
  --line-strong: #c9d0d7;

  --silver: #bcc3cb;
  --silver-dark: #8e98a3;

  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 18px 50px rgba(15, 23, 42, 0.09);

  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 30px;

  --container: min(1280px, calc(100% - 64px));
  --transition: 0.28s ease;
}

/* =========================
   CUSTOM FONT
   ========================= */


/* =========================
   RESET
   ========================= */

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

* {
  margin: 0;
  padding: 0;
}

html {
  overflow-y: scroll;
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
}

section {
  padding: 110px 0;
}

/* =========================
   GLOBAL ELEMENTS
   ========================= */

.container {
  width: var(--container);
  margin: 0 auto;
}

h1,
h2,
h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  line-height: 1.7;
}

section {
  padding: 140px 0;
  position: relative;
}

.section-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #8e98a3;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #bcc3cb;
}

.section-heading {
  width: 100%;
  text-align: center;
  margin-bottom: 80px;
}

.services-title-h1 {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;

  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #192332;
}

.section-heading h2 {
  margin-bottom: 16px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-weight: 700;
  color: var(--heading);
  transition: transform var(--transition), color var(--transition);
}

.text-link:hover {
  color: var(--silver-dark);
  transform: translateX(3px);
}

/* =========================
   BUTTONS
   ========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

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

.btn-primary {
  background: linear-gradient(135deg, #192332 0%, #192332 100%);
  color: #ffffff;
  border-color: #b9c0c8;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.8);
  color: var(--heading);
  border-color: var(--line-strong);
}

.btn-secondary:hover {
  border-color: var(--silver-dark);
  background: var(--bg-soft);
}

/* =========================
   SCROLL TO TOP BUTTON
========================= */

.scroll-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 50%;
  background: rgba(9, 30, 49, 0.92);
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 999;

  box-shadow:
    0 10px 24px rgba(15, 23, 42, 0.18),
    0 18px 40px rgba(15, 23, 42, 0.12);

  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: #192332;
  transform: translateY(-3px);
  box-shadow:
    0 14px 30px rgba(15, 23, 42, 0.22),
    0 24px 50px rgba(15, 23, 42, 0.16);
}

.scroll-top:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .scroll-top {
    right: 18px;
    bottom: 18px;
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
}

/* =========================
   FLOATING CONTACT BUTTONS
   ========================= */

.float-contact {
  position: fixed;
  left: 28px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.float-contact.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(9, 30, 49, 0.92);
  color: #ffffff;
  display: grid;
  place-items: center;
  text-decoration: none;
  box-shadow:
    0 10px 24px rgba(15, 23, 42, 0.18),
    0 18px 40px rgba(15, 23, 42, 0.12);
  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.float-btn:hover {
  background: #192332;
  transform: translateY(-3px);
  box-shadow:
    0 14px 30px rgba(15, 23, 42, 0.22),
    0 24px 50px rgba(15, 23, 42, 0.16);
}

.float-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.float-btn--linkedin svg {
  fill: currentColor;
  stroke: none;
}

@media (max-width: 768px) {
  .float-contact {
    left: 18px;
    bottom: 18px;
    gap: 10px;
  }
  .float-btn {
    width: 48px;
    height: 48px;
  }
  .float-btn svg {
    width: 18px;
    height: 18px;
  }
}

/* ==============================
   HERO BUTTON (Premium)
   ============================== */

.pfc-hero-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 16px 28px;
  overflow: hidden;

  border: 1px solid rgba(160, 167, 178, 0.42);
  border-radius: 8px;

  background:
    linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0.08));
  backdrop-filter: blur(10px);

  color: #192332;
  text-decoration: none;
  box-shadow: 0 14px 35px rgba(15,23,42,0.08);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.pfc-hero-btn__text {
  position: relative;
  z-index: 2;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: normal;
}

.pfc-hero-btn__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 35%,
    rgba(255,255,255,0.5) 48%,
    transparent 60%,
    transparent 100%
  );
  transform: translateX(-140%);
  transition: transform 0.8s cubic-bezier(0.22,1,0.36,1);
}

.pfc-hero-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(130,138,150,0.7);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.32), rgba(255,255,255,0.12));
  box-shadow: 0 20px 45px rgba(15,23,42,0.12);
}

.pfc-hero-btn:hover .pfc-hero-btn__shine {
  transform: translateX(140%);
}

/* =========================
   HEADER / NAV
   ========================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 26px 0;

  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow: 0 4px 18px rgba(15,23,42,0.05);

  transition:
    padding 0.35s ease,
    background 0.35s ease,
    backdrop-filter 0.35s ease,
    box-shadow 0.35s ease;
}

.site-header.scrolled {
  padding: 16px 0;

  background: rgba(255,255,255,0.96);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  box-shadow: 0 10px 32px rgba(15,23,42,0.08);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 clamp(24px, 6vw, 80px);
  min-height: 56px;
}

/* Logo */
.site-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo img {
  display: block;
  height: 72px;
  width: auto;
  transition:
    height 0.35s ease,
    transform 0.35s ease;
}

.site-header.scrolled .site-logo img {
  height: 72px;
  transform: translateY(-1px);
}

/* Desktop nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 46px;
  margin-left: auto;
  transition: gap 0.35s ease;
}

.site-header.scrolled .site-nav {
  gap: 40px;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 7px 0;
  text-decoration: none;
  color: #11161c;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  line-height: 1;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.site-header.scrolled .nav-link {
  transform: translateY(-1px);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: rgba(95, 105, 118, 0.8);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #000000;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(155, 163, 173, 0.28);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.mobile-menu-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.36);
  border-color: rgba(125, 133, 145, 0.45);
}

.hamburger-line {
  width: 18px;
  height: 1.5px;
  background: #192332;
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(245, 247, 249, 0.74);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-panel {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  padding: 24px 22px 28px;
  border: 1px solid rgba(170, 178, 188, 0.22);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transform: translateY(-18px);
  transition: transform 0.35s ease;
}

.mobile-menu.active .mobile-menu-panel {
  transform: translateY(0);
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
}

.mobile-logo img {
  height: 30px;
}

.close-btn {
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(155, 163, 173, 0.28);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.close-btn:hover {
  transform: rotate(90deg);
  background: rgba(255, 255, 255, 0.45);
}

.close-btn span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1.5px;
  background: #192332;
  border-radius: 999px;
}

.close-btn span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-btn span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-nav-link {
  position: relative;
  display: inline-block;
  width: fit-content;
  text-decoration: none;
  color: #1e2a38;
  font-size: clamp(1.2rem, 4.5vw, 1.6rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateX(-22px);
}

.mobile-menu.active .mobile-nav-link {
  animation: pfcMobileNavIn 0.45s ease forwards;
}

.mobile-menu.active .mobile-nav-link:nth-child(1) { animation-delay: 0.08s; }
.mobile-menu.active .mobile-nav-link:nth-child(2) { animation-delay: 0.14s; }
.mobile-menu.active .mobile-nav-link:nth-child(3) { animation-delay: 0.20s; }
.mobile-menu.active .mobile-nav-link:nth-child(4) { animation-delay: 0.26s; }
.mobile-menu.active .mobile-nav-link:nth-child(5) { animation-delay: 0.31s; }
.mobile-menu.active .mobile-nav-link:nth-child(6) { animation-delay: 0.36s; }
.mobile-menu.active .mobile-nav-link:nth-child(7) { animation-delay: 0.41s; }
.mobile-menu.active .mobile-nav-link:nth-child(8) { animation-delay: 0.46s; }
.mobile-menu.active .mobile-nav-link:nth-child(9) { animation-delay: 0.51s; }

.mobile-sub-link {
  font-size: clamp(1rem, 4vw, 1.35rem) !important;
  font-weight: 500 !important;
  color: #374151 !important;
  padding-left: 20px;
  border-left: 2px solid #dde2e8;
  margin-left: 4px;
}

.mobile-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(110, 118, 130, 0.85),
    transparent
  );
  transition: width 0.3s ease;
}

.mobile-nav-link:hover::after,
.mobile-nav-link.active::after {
  width: 100%;
}

@keyframes pfcMobileNavIn {
  from {
    opacity: 0;
    transform: translateX(-22px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: inline-flex;
    margin-left: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 18px 0;
  }

  .site-logo img {
    height: 36px;
  }

  .site-header.scrolled .site-logo img {
    height: 36px;
  }
}

/* =========================
   NAV DROPDOWN — ATTACHED TO SERVICES
   ========================= */

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 18px;
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;

  min-width: 240px;
  padding: 14px 0;

  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border: 1px solid rgba(15,23,42,0.06);
  box-shadow: 0 14px 30px rgba(15,23,42,0.06);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;

  z-index: 1200;
}

.nav-dropdown__menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 100%;
  padding: 10px 18px;

  text-decoration: none;
  color: #11161c;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  line-height: 1.1;

  transition:
    color 0.25s ease,
    background 0.25s ease;
}

.nav-dropdown__menu a::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 6px;
  width: 0;
  height: 1px;
  background: rgba(95, 105, 118, 0.8);
  transition: width 0.3s ease;
}

.nav-dropdown__menu a:hover {
  color: #000000;
  background: rgba(0, 0, 0, 0.02);
}

.nav-dropdown__menu a:hover::after {
  width: calc(100% - 36px);
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* =========================
   HERO
   ========================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  background: #192332;
}

.hero__bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.08);
  transition: transform 1.6s ease-out;
  will-change: transform;
}

.hero.is-visible .hero__bg-video {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse at center 32%,
      rgba(255, 255, 255, 0.10) 0%,
      rgba(255, 255, 255, 0.05) 14%,
      rgba(255, 255, 255, 0.01) 26%,
      rgba(255, 255, 255, 0) 44%
    ),
    linear-gradient(
      to bottom,
      rgba(3, 12, 28, 0.78) 0%,
      rgba(5, 18, 38, 0.62) 22%,
      rgba(7, 22, 45, 0.44) 44%,
      rgba(8, 24, 48, 0.28) 66%,
      rgba(8, 24, 48, 0.34) 100%
    );
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.06) 20%,
    rgba(0, 0, 0, 0) 40%
  );
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 90px 0 120px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.hero__content {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  color: #ffffff;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.hero.is-visible .hero__content {
  opacity: 1;
  transform: translateY(0);
}

.hero__title-wrap {
  position: relative;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto 28px;
  text-align: center;
}

.hero__title {
  margin: 0;
  width: 100%;
  font-size: clamp(3.8rem, 7.5vw, 7rem);
  white-space: nowrap;
  line-height: 0.92;
  letter-spacing: -0.055em;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
}

.hero__title-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__title .hero__title-word:nth-child(1) { position: relative; left: -30px; top: 14px; }
.hero__title .hero__title-word:nth-child(2) { position: relative; left: 18px;  top: 14px; }
.hero__title .hero__title-word:nth-child(3) { position: relative; left: 30px;  top: 14px; }

.hero.is-visible .hero__title .hero__title-word:nth-child(1),
.hero.is-visible .hero__title .hero__title-word:nth-child(2),
.hero.is-visible .hero__title .hero__title-word:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }

.hero__pfc-word {
  display: none;
}

.hero__solutions-word {
  margin: 80px 0 36px;
  font-size: clamp(3.8rem, 7.5vw, 7rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 0.92;
  color: #ffffff;
  -webkit-text-stroke: 0;
  text-align: center;
  position: relative;
  left: -10px;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero.is-visible .hero__solutions-word {
  opacity: 1;
  transition-delay: 0.2s;
}

.hero__title--mobile {
  display: none;
}

.hero__title--mobile-sub {
  display: none;
}

/* House SVG — centered behind title text */
.hero__house-svg {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

.hsvg-path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.7);
  stroke-width: 2;
  opacity: 0;
  transition: opacity 1s ease;
}

.hsvg-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 180px;
  font-weight: 600;
  letter-spacing: 40px;
  fill: #ffffff;
  stroke: none;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero.is-visible .hsvg-text {
  opacity: 1;
  transition-delay: 0.15s;
}

.hero.is-visible .hsvg-path {
  opacity: 1;
  transition-delay: 0.1s;
}

.hero__text {
  max-width: 760px;
  margin: 60px auto 40px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
  line-height: 1.7;
  font-weight: 400;
}

.hero__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 16px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease,
    color 0.28s ease;
}

.hero__btn--primary {
  background: #ffffff;
  color: #0b2448;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
}

.hero__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.hero__btn--secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(10px);
}

.hero__btn--secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.40);
}

@media (max-width: 900px) {
  .hero__inner {
    padding: 82px 0 110px;
  }

  .hero__title {
    font-size: clamp(3rem, 10vw, 5.4rem);
  }

  .hero__text {
    max-width: 680px;
    font-size: 1.03rem;
    line-height: 1.7;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 92vh;
  }

  .hero__inner {
    padding: 78px 0 90px;
  }

  .hero__title {
    font-size: clamp(2.6rem, 12vw, 4.2rem);
    line-height: 0.96;
  }

  .hero__text {
    max-width: 92%;
    font-size: 0.98rem;
    margin-bottom: 32px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__btn {
    width: 100%;
    min-height: 54px;
  }
}

/* =========================
   HERO SERVICES TICKER
   ========================= */

.hero__services-ticker {
  width: min(33vw, 480px);
  margin: 40px auto 0;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  padding: 6px 0;

  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 14%,
    black 86%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 14%,
    black 86%,
    transparent 100%
  );
}

.hero__services-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: heroServicesTicker 18s linear infinite;
}

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

@keyframes heroServicesTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}

.hero__service-item {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;

  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;

  transition: color 0.25s ease;
}

.hero__service-item:hover {
  color: #ffffff;
}

@media (max-width: 900px) {
  .hero__services-ticker {
    width: min(60vw, 400px);
  }
}

@media (max-width: 640px) {
  .hero__services-ticker {
    width: 80vw;
    margin-top: 28px;
  }

  .hero__service-item {
    font-size: 0.82rem;
    padding: 7px 16px;
  }
}

/* =========================
   STATS BAND
   ========================= */

.stats-band {
  padding: 34px 0;
  background: linear-gradient(
  180deg,
  #eef3f9 0%,
  #f8f8f8 100%
);

  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  position: relative;
  overflow: visible;
  z-index: 5;
}
.stats-band__wrap { 
  width: 100%; 
  padding-left: 24px; 
  padding-right: 24px; 
} 
.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: space-evenly;
  align-items: center;
}

.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 0%,
    transparent 42%,
    rgba(255,255,255,0.28) 50%,
    transparent 58%,
    transparent 100%
  );
  transform: translateX(-120%);
  animation: statsBandSheen 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes statsBandSheen {
  0%, 70% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

.stats-band.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stats-band__item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 86px;
  padding: 10px 0;
  position: relative;
  transition: transform 0.28s ease, background 0.28s ease;
}

.stats-band__stat {
  display: flex;
  align-items: center;
  gap: 6px;
}

.stats-band__item:hover {
  transform: translateY(-2px);
  background: linear-gradient(
  180deg,
  #eef3f9 0%,
  #f8f8f8 100%
);
}

.stats-band__item:hover .stats-band__icon svg {
  stroke: #fff;
  transform: scale(1.04);
}

.stats-band__icon {
  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  border: 1.5px solid #fff;   /* engineering blue */

  background: #192332;

  transition: border-color 0.25s ease, transform 0.25s ease;
}

.stats-band__item:hover .stats-band__icon {
  border-color: #fff;
  transform: scale(1.05);
}

.stats-band__icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stats-band__text {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.stats-band__number {
  display: block;
  font-size: 1.5rem;
  font-weight: 420;
  letter-spacing: -0.035em;
  color: #192332;

  line-height: 1;          /* important */
}

.stats-band__label {
  display: block;
  font-size: 1.5rem;
  font-weight: 420;
  line-height: 1;
  color: #192332;

  line-height: 1.25;       /* prevents awkward vertical spacing */
}

/* Responsive */
@media (max-width: 1180px) {
  .stats-band__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-band__item:nth-child(2)::after {
    display: none;
  }

  .stats-band__item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(219, 225, 231, 0.9);
  }
}

@media (max-width: 640px) {
  .stats-band {
    padding: 18px 0;
  }

  .stats-band__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .stats-band__item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: auto;
    padding: 24px 12px;
    gap: 10px;
  }

  .stats-band__stat {
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  .stats-band__icon {
    width: 38px;
    height: 38px;
  }

  .stats-band__icon svg {
    width: 16px;
    height: 16px;
  }

  .stats-band__number {
    font-size: 1.4rem;
  }

  .stats-band__label {
    font-size: 0.78rem;
  }

  .stats-band__item::after {
    display: none;
  }

  .stats-band__item {
    border-bottom: 1px solid rgba(219, 225, 231, 0.9);
  }

  .stats-band__icon {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
  }

.stats-band__icon svg {
  width: 20px;
  height: 20px;
  stroke: #7a8490;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.28s ease, transform 0.28s ease;
}

  .stats-band__number {
    font-size: 1.35rem;
  }

  .stats-band__label {
    font-size: 0.88rem;
  }
}
.stats-band {
  position: relative;
  overflow: visible;
  z-index: 5;
}

.stats-band__border-top {
  top: 0;
}

.stats-band__border-bottom {
  bottom: 0;
}

/* =========================
   ABOUT FEATURE SECTION
   ========================= */

.about-feature {
  position: relative;
  padding: 130px 0;
  background: #f8f8f8;
  overflow: hidden;
}

.about-feature__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.8fr);
  gap: none;
  align-items: start;
}

.about-feature__content {
  max-width: 720px;
  margin-left: -60px;
}

.about-feature__title {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #192332;
}

.about-feature__text {
  max-width: 650px;
  font-size: 1.25rem;
  line-height: 1.9;
  color: #626b76;
}

.about-feature__text + .about-feature__text {
  margin-top: 18px;
}

.about-feature__button {
  margin-top: 42px;
  min-width: 170px;
  background: #192332;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.about-feature__button:hover {
  transform: translateY(-2px);
  background: #243a58;
  border-color: rgba(255, 255, 255, 0.38);
}

.about-feature__media {
  position: relative;
  display: flex;
  justify-content: flex-end;
  transform: translateX(40px);
  align-self: start;
}

.about-feature__image-wrap {
  position: relative;
  width: min(100%, 720px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e9edf1;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-feature__image-wrap:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.14);
}
.about-feature__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06) translateX(20px);
}

/* subtle frame cutout feel */

/* faint geometric line background */
.about-feature__bg-shape {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.22;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 900px auto;
  background-image: url("data:image/svg+xml,%3Csvg width='920' height='620' viewBox='0 0 920 620' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23bcc3cb' stroke-width='1.3'%3E%3Cpath d='M300 110L480 210L480 410L300 510L120 410L120 210L300 110Z'/%3E%3Cpath d='M480 210L660 110L840 210L840 410L660 510L480 410'/%3E%3Cpath d='M300 110L300 310L480 410'/%3E%3Cpath d='M660 110L480 210L300 110'/%3E%3Cpath d='M840 210L660 310L660 510'/%3E%3Cpath d='M300 510L480 410L660 510'/%3E%3C/g%3E%3C/svg%3E");
}

.about-feature__bg-shape {
  animation: aboutShapeFloat 14s ease-in-out infinite;
}

@keyframes aboutShapeFloat {
  0%, 100% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(10px) translateY(-6px);
  }
}
.about-feature .container {
  width: min(1500px, calc(100% - 80px));
}

@media (max-width: 1180px) {
  .about-feature__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about-feature__media {
    justify-content: flex-start;
  }

  .about-feature__image-wrap {
    width: min(100%, 640px);
    height: 560px;
    border: 8px solid #ffffff;
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
  }

  .about-feature__image-wrap::before {
    display: none;
  }

  .about-feature__bg-shape {
    background-size: 680px auto;
    opacity: 0.96;
  }
}

@media (max-width: 640px) {
  .about-feature {
    padding: 48px 0 64px;
  }

  .about-feature .container {
    width: calc(100% - 40px);
  }

  .about-feature__content {
    margin-left: 0;
    max-width: 100%;
  }

  .about-feature__media {
    display: none;
  }

  .about-feature__bg-shape {
    display: none;
  }

  .about-feature__title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
    max-width: 100%;
  }

  .about-feature__text {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 100%;
  }

  .about-feature__image-wrap {
    height: 420px;
  }
}

/* =========================
   ABOUT SEQUENCE ANIMATION
   ========================= */

.seq-item {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  will-change: opacity, transform;
}

.reveal-sequence.is-visible .seq-item {
  opacity: 1;
  transform: translateY(0);
}

.reveal-sequence.is-visible .seq-item:nth-child(1) { transition-delay: 0.08s; }
.reveal-sequence.is-visible .seq-item:nth-child(2) { transition-delay: 0.16s; }
.reveal-sequence.is-visible .seq-item:nth-child(3) { transition-delay: 0.24s; }
.reveal-sequence.is-visible .seq-item:nth-child(4) { transition-delay: 0.32s; }
.reveal-sequence.is-visible .seq-item:nth-child(5) { transition-delay: 0.40s; }

/* image reveal */
.about-feature__image-wrap {
  transform: translateY(24px) scale(1.03);
  opacity: 0;
  transition:
    transform 0.9s cubic-bezier(.16,1,.3,1),
    opacity 0.9s ease,
    box-shadow 0.5s ease;
  will-change: transform, opacity;
}

.about-feature__image-wrap.is-visible {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* parallax-ready image */
.about-parallax-card {
  transform-style: preserve-3d;
}

.about-parallax-image {
  transition: transform 0.35s ease;
  will-change: transform;
}
/* =========================
   ABOUT --> TRANSITION --> SERVICES
   ========================= */

.section-transition {
  position: relative;
  height: 100px;
  overflow: hidden;

  background:
    linear-gradient(
      to bottom,
      #f8f8f8 0%,
      #fbfbfb 40%,
      #f6f7f9 100%
    );
}

/* subtle premium divider line */
.section-transition::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;

  width: min(1180px, calc(100% - 80px));
  height: 1px;

  transform: translate(-50%, -50%);

  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(188,195,203,0.25) 20%,
    rgba(188,195,203,0.6) 50%,
    rgba(188,195,203,0.25) 80%,
    transparent 100%
  );
}

/* subtle glow accent */
.section-transition::after {
  content: "";
  position: absolute;

  left: 50%;
  top: 50%;

  width: 480px;
  height: 140px;

  transform: translate(-50%, -50%);

  background: radial-gradient(
    circle,
    rgba(47,111,237,0.06) 0%,
    rgba(47,111,237,0.02) 40%,
    transparent 70%
  );

  pointer-events: none;
}

/* =========================
   SERVICES PREVIEW
   ========================= */

.services-preview--mobile { display: none; }

.services-preview {
  position: relative;
  padding: 160px 0 130px;
  background: linear-gradient(
    180deg,
    #f8f8f8 0%,
    #f8f8f8 18%,
    #eef3f9 55%,
    #e8eff7 100%
  );
  overflow: hidden;
}

.services-preview__inner {
  position: relative;
  z-index: 2;
}

.services-preview .container {
  width: min(1500px, calc(100% - 80px));
}

.services-preview__bg-shape {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.2;
  background-repeat: no-repeat;
  background-position: right 8% center;
  background-size: 880px auto;
  background-image: url("data:image/svg+xml,%3Csvg width='920' height='620' viewBox='0 0 920 620' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23bcc3cb' stroke-width='1.3'%3E%3Cpath d='M300 110L480 210L480 410L300 510L120 410L120 210L300 110Z'/%3E%3Cpath d='M480 210L660 110L840 210L840 410L660 510L480 410'/%3E%3Cpath d='M300 110L300 310L480 410'/%3E%3Cpath d='M660 110L480 210L300 110'/%3E%3Cpath d='M840 210L660 310L660 510'/%3E%3Cpath d='M300 510L480 410L660 510'/%3E%3C/g%3E%3C/svg%3E");
  animation: servicesShapeFloat 15s ease-in-out infinite;
}

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

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

.services-preview .section-heading .eyebrow {
  text-align: center;
  display: block;
}

.services-title-h1,
.section-heading .services-title-h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  line-height: 1.0;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #192332;
}

.services-title-accent {
  font-weight: 700;
  color: #192332;
}

.service-card {
  grid-column: span 4;
  position: relative;
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(218, 225, 232, 0.75);
  backdrop-filter: blur(2px);
  background: #dfe5eb;
  box-shadow:
  0 4px 12px rgba(15,23,42,0.05),
  0 20px 45px rgba(15,23,42,0.08),
  0 40px 90px rgba(15,23,42,0.05),
  inset 0 1px 0 rgba(255,255,255,0.35);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(47,111,237,0.28);

  box-shadow:
    0 10px 30px rgba(15,23,42,0.08),
    0 30px 70px rgba(15,23,42,0.12),
    0 60px 120px rgba(15,23,42,0.08),
    0 0 0 1px rgba(47,111,237,0.05),
    inset 0 1px 0 rgba(255,255,255,0.25);
}

/* premium sweep */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 20%,
    rgba(255,255,255,0.14) 40%,
    transparent 60%
  );
  transform: translateX(-120%);
  transition: transform 0.9s cubic-bezier(.16,1,.3,1);
}

.service-card:hover::before {
  transform: translateX(120%);
}

/* thin premium top line */
.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 1px;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.15) 18%,
    rgba(255,255,255,0.45) 50%,
    rgba(255,255,255,0.15) 82%,
    transparent 100%
  );
  opacity: 0.9;
}

/* background image now always visible */
.service-card__bg-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 1;
  transform: scale(1);
  transition:
    transform 0.8s cubic-bezier(.16,1,.3,1),
    filter 0.45s ease;
}

.service-card__bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.9s cubic-bezier(.16,1,.3,1);
}

/* permanent overlay for readability */
.service-card__bg-image::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(8,12,20,0.85) 0%,
    rgba(8,12,20,0.45) 40%,
    rgba(8,12,20,0.15) 70%,
    transparent 100%
  );
}

.service-card:hover .service-card__bg-image::after {
  background:
    linear-gradient(
      to top,
      rgba(10, 16, 28, 0.9) 0%,
      rgba(10, 16, 28, 0.72) 38%,
      rgba(10, 16, 28, 0.34) 66%,
      rgba(10, 16, 28, 0.16) 100%
    );
}

.service-card:hover .service-card__bg-image img {
  transform: scale(1.06);
}

/* content */
.service-body {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 34px;
  color: #ffffff;
}

/* title always visible */
.service-title {
  margin: 0;
  max-width: 80%;
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow:
    0 4px 14px rgba(0,0,0,0.25),
    0 10px 30px rgba(0,0,0,0.35);
  transition: transform 0.35s ease;
}

/* description hidden by default */
.service-description {
  max-width: 92%;
  margin-top: 14px;
  line-height: 1.68;
  color: rgba(255,255,255,0.88);
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    color 0.35s ease;
}

.service-description,
.service-body .text-link {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  margin: 0;
  transform: translateY(10px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    max-height 0.3s ease,
    margin 0.3s ease;
}

/* link hidden by default */
.service-body .text-link {
  margin-top: 18px;
  position: relative;
  z-index: 4;
  color: #ffffff;
  font-weight: 600;
  opacity: 0;
  transform: translateY(14px);
  transition:
    color 0.35s ease,
    opacity 0.35s ease,
    transform 0.35s ease;
}

/* hover behavior */
.service-card:hover .service-title {
  transform: translateY(-2px);
  text-shadow:
    0 0 14px rgba(47,111,237,0.22),
    0 10px 28px rgba(0,0,0,0.22);
}

.service-card:hover .service-description,
.service-card:hover .text-link {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover .text-link {
  opacity: 1;
  max-height: 40px;
  margin-top: 18px;
  transform: translateY(0);
}

.service-card:hover .service-description {
  opacity: 1;
  max-height: 120px;
  margin-top: 14px;
  transform: translateY(0);
}

/* Optional: slightly dim idle cards when grid is hovered */
.services-grid:hover .service-card:not(:hover) {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1180px) {
  .services-preview {
    padding: 100px 0;
  }

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

  .service-card {
    grid-column: auto;
    min-height: 380px;
  }

  .services-preview__bg-shape {
    background-size: 700px auto;
    opacity: 0.14;
  }
}

@media (max-width: 640px) {
  .services-preview--desktop { display: none; }
  .services-preview--mobile { display: block; }

  .services-preview {
    padding: 88px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 320px;
  }

  .service-body {
    padding: 24px 22px 26px;
  }

  .service-description {
    max-width: 100%;
  }

  @media (max-width: 1180px) {
  .services-note {
    grid-column: auto;
    min-height: 380px;
  }
}

@media (max-width: 640px) {
  .services-note__inner {
    padding: 24px 22px 26px;
  }

  .services-note__title,
  .services-note__text {
    max-width: 100%;
  }
}
}

.services-note {
  grid-column: span 4;
  position: relative;
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;

  background:
    radial-gradient(circle at top right, rgba(47,111,237,0.06), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);

  border: 1px solid rgba(218, 225, 232, 0.95);
  box-shadow:
    0 10px 24px rgba(15, 23, 42, 0.04),
    0 24px 50px rgba(15, 23, 42, 0.05),
    inset 0 1px 0 rgba(255,255,255,0.95);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.services-note:hover {
  transform: translateY(-6px);
  border-color: rgba(47,111,237,0.18);
  box-shadow:
    0 16px 34px rgba(15, 23, 42, 0.06),
    0 30px 65px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.95);
}

.services-note::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(47,111,237,0.10) 18%,
    rgba(47,111,237,0.28) 50%,
    rgba(47,111,237,0.10) 82%,
    transparent 100%
  );
  pointer-events: none;
}

.services-note__inner {
  position: relative;
  z-index: 2;
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;

  padding: 40px;
}

.services-note__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #192332;
}

.services-note__title {
  margin: 0 0 18px;
  max-width: 12ch;
  font-size: clamp(1.9rem, 2.2vw, 2.4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #192332;
  font-weight: 500;
}

.services-note__text {
  margin: 0;
  max-width: 30ch;
  font-size: 1rem;
  line-height: 1.75;
  color: #192332;
}

.services-note__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-weight: 700;
  color: #192332;
  transition: transform 0.28s ease, color 0.28s ease;
}

.services-note__link:hover {
  transform: translateX(3px);
  color: #192332;
}
/* =========================
   SERVICE CARD CURSOR LIGHT
   ========================= */

.service-card {
  --mx: 50%;
  --my: 50%;
}

.service-card::selection {
  background: rgba(255,255,255,0.2);
}

.service-card::before,
.service-card::after {
  pointer-events: none;
}

/* cursor-follow light */
.service-card .service-card__cursor-light {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;

  background:
    radial-gradient(
      320px circle at var(--mx) var(--my),
      rgba(255,255,255,0.16) 0%,
      rgba(255,255,255,0.08) 22%,
      rgba(47,111,237,0.08) 38%,
      rgba(47,111,237,0.03) 52%,
      transparent 72%
    );
}

.service-card:hover .service-card__cursor-light {
  opacity: 1;
}

/* =========================
   SERVICES REVEAL
========================= */

.services-preview .section-heading,
.services-preview .service-card,
.services-preview .services-note {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform;
}

.services-preview.is-visible .section-heading,
.services-preview.is-visible .service-card,
.services-preview.is-visible .services-note {
  opacity: 1;
  transform: translateY(0);
}

/* staggered delays */
.services-preview.is-visible .service-card:nth-of-type(1) { transition-delay: 0.08s; }
.services-preview.is-visible .service-card:nth-of-type(2) { transition-delay: 0.16s; }
.services-preview.is-visible .service-card:nth-of-type(3) { transition-delay: 0.24s; }
.services-preview.is-visible .service-card:nth-of-type(4) { transition-delay: 0.32s; }
.services-preview.is-visible .service-card:nth-of-type(5) { transition-delay: 0.40s; }
.services-preview.is-visible .services-note             { transition-delay: 0.48s; }

/* title first */
.services-preview.is-visible .section-heading {
  transition-delay: 0s;
}

/* =========================
   WHY PFC
   ========================= */

.why-pfc {
  position: relative;
  padding: 130px 0;
  background: #192332;
  overflow: hidden;
}

.why-pfc::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/new-albany-data-center-campus-at-dusk.jpg') center / cover no-repeat fixed;
  opacity: 0.18;
  z-index: 1;
}

.why-pfc .container {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 80px));
  margin-left: max(20px, calc((100% - 1280px) / 2 - 20px));
  margin-right: auto;
}

.why-pfc__intro {
  max-width: 760px;
  margin: 0 auto 100px;
  text-align: center;
}

.why-pfc .eyebrow {
  color: rgba(255, 255, 255, 0.6);
}

.why-pfc__intro .section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #2f6fed;
}

.why-pfc__intro h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  font-weight: 500;
  line-height: 1.0;
  color: #f8fbff;
  letter-spacing: -0.04em;
}

.why-pfc__heading-accent {
  color: #ffffff;
  font-weight: 700;
}

.why-pfc__intro p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  color: #f8fbff;
}

.why-pfc__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.why-pfc__card {
  padding: 48px 40px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.why-pfc__card:hover,
.why-pfc__card.is-open {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

.why-pfc__card-front {
  display: flex;
  align-items: center;
  gap: 16px;
}

.why-pfc__card-num {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.3);
}

.why-pfc__card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.why-pfc__card-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.why-pfc__card:hover .why-pfc__card-body,
.why-pfc__card.is-open .why-pfc__card-body {
  grid-template-rows: 1fr;
}

.why-pfc__card-body > * {
  overflow: hidden;
  padding-top: 20px;
}


.why-pfc__card-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  padding-top: 14px;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 900px) {
  .why-pfc {
    padding: 100px 0;
  }
}

@media (max-width: 600px) {
  .why-pfc__intro {
    margin-bottom: 34px;
  }

  .why-pfc__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-pfc__card {
    padding: 36px 28px;
  }
}

@media (max-width: 640px) {
  .svc-row::before {
    display: none;
  }

  .svc-row:last-child {
    border-bottom: none;
  }

  .why-pfc__tabs {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    max-width: 100%;
  }

  .why-pfc__tab {
    padding: 14px 8px 16px;
    border-radius: 16px;
    min-height: auto;
  }

  .why-pfc__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    margin-bottom: 8px;
  }

  .why-pfc__icon svg {
    width: 18px;
    height: 18px;
  }

  .why-pfc__label {
    font-size: 0.72rem;
    line-height: 1.3;
  }
}

/* =========================
   WHY PFC REVEAL ANIMATION
========================= */

.why-pfc__intro,
.why-pfc__tab {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.why-pfc__intro.is-visible,
.why-pfc__tab.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* staggered card animation */

.why-pfc__tab:nth-child(1) {
  transition-delay: 0.1s;
}

.why-pfc__tab:nth-child(2) {
  transition-delay: 0.2s;
}

.why-pfc__tab:nth-child(3) {
  transition-delay: 0.3s;
}

/* =========================
   CLIENTS STRIP
========================= */

.clients-section {
  position: relative;
  padding: 55px 0;
  background: #ffffff;
  overflow: hidden;
}

.clients-marquee {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;

  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 90px;
  width: max-content;
  animation: clientsScroll 26s linear infinite;
}

.client-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
}

.client-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 260px;
  max-height: 70px;
  object-fit: contain;
  opacity: 0.95;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.client-logo:hover img {
  transform: scale(1.04);
  opacity: 1;
}

@keyframes clientsScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 36px));
  }
}

@media (max-width: 768px) {
  .clients-section {
    padding: 16px 0;
    border-top: 1px solid #e2e7ed;
  }

  .clients-marquee {
    height: 40px;
    overflow: hidden;
  }

  .clients-track {
    gap: 46px;
    height: 40px;
    align-items: center;
  }

  .client-logo {
    min-width: 100px;
    height: 40px;
    display: flex;
    align-items: center;
  }

  .client-logo img {
    height: 30px;
    width: auto;
    max-width: 120px;
    max-height: none;
  }
}
/* =========================
   CONTACT BAND
========================= */

.contact-band {
  padding: 110px 0;
  background: #ffffff;
  border-top: 1px solid rgba(0,33,72,0.06);
}

.contact-band .container {
  width: min(1500px, calc(100% - 60px));
}

/* GRID */

.contact-band__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 0.8fr;
  gap: 90px;
}

/* INTRO COLUMN */

.contact-band__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 520px;
  padding-right: 90px;
}

.contact-band__brand {
  height: 46px;
  margin-bottom: 26px;
}

.contact-band__brand img {
  height: 167%;
  width: auto;
  display: block;
  object-fit: contain;
}

.contact-band__text {
  margin: 14px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
  color: #192332;
}

/* COLUMN TITLES */

.contact-band__title {
  margin: 6px 0 32px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2937;
}

/* CONTACT LINKS */

.contact-band__links {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-band__links a {
  text-decoration: none;
  font-size: 1rem;
  color: #192332;
  border-bottom: 2px solid rgba(0,33,72,0.35);
  width: fit-content;
  padding-bottom: 4px;
  transition: all 0.25s ease;
}

.contact-band__links a:hover {
  color: #192332;
  border-color: #192332;
  transform: translateY(-1px);
}

/* ADDRESS */

.contact-band__info {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: #192332;
}

/* SOCIAL */

.contact-band__socials {
  display: flex;
  gap: 14px;
}

.contact-band__social {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #192332;
  color: white;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(15,23,42,0.12);
  transition: all 0.25s ease;
}

.contact-band__social:hover {
  background: #0d1827;
  transform: translateY(-2px);
}

/* RESPONSIVE */

@media (max-width: 1200px) {

  .contact-band__grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px 40px;
  }

}

@media (max-width: 768px) {

  .contact-band {
    padding: 80px 0;
  }

  .contact-band .container {
    width: calc(100% - 40px);
  }

  .contact-band__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

}

@media (max-width: 640px) {
  .contact-band {
    padding: 48px 0;
  }

  .contact-band .container {
    width: calc(100% - 40px);
  }

  .contact-band__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }

  .contact-band__intro {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    padding-right: 0;
    max-width: 100%;
    margin-bottom: 0;
  }

  .contact-band__text {
    display: none;
  }

  .contact-band__brand {
    height: 36px;
    margin-bottom: 0;
  }

  .contact-band__title {
    font-size: 0.8rem;
    margin-bottom: 12px;
  }

  .contact-band__links {
    gap: 10px;
  }

  .contact-band__links a {
    font-size: 0.85rem;
    padding-bottom: 2px;
    width: auto;
    word-break: break-all;
  }

  .contact-band__info {
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .contact-band__social {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }
}

/* =========================
   FOOTER
   ========================= */

.site-footer {
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #192332;
  color: #ffffff;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
}

.footer-contact {
  display: grid;
  gap: 8px;
  text-align: right;
}

.footer-contact a {
  font-weight: 700;
  color: #ffffff;
}

.footer-contact a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact span,
.footer-inner p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
}

/* =========================
   REVEAL ANIMATION
   ========================= */

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}
/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1180px) {
  .intro-grid,
  .why-grid,
  .contact-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 0 32px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 120px 0 80px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .large-card {
    position: relative;
    width: min(100%, 440px);
  }

  .top-card,
  .bottom-card {
    display: none;
  }

  .cta-actions {
    justify-content: flex-start;
  }

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

  .service-card {
    grid-column: auto;
  }
}

@media (max-width: 860px) {
  :root {
    --container: min(1280px, calc(100% - 40px));
  }

  section {
    padding: 88px 0;
  }

  .site-nav {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-body p {
    min-height: auto;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-contact {
    text-align: left;
  }

  .hero-title {
    font-size: clamp(3rem, 10vw, 5rem);
  }

  .hero-title span {
    white-space: normal;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(1280px, calc(100% - 40px));
  }

  h1 {
    font-size: clamp(2.4rem, 10vw, 3.6rem);
  }

  h2 {
    font-size: clamp(1.8rem, 7vw, 2.7rem);
  }

  .hero {
    padding: 0 20px;
  }

  .hero-title {
    font-size: 3rem;
  }

  /* Fix hero__title overflow — remove nowrap and word offsets */
  .hero__title {
    white-space: normal;
    font-size: clamp(2.4rem, 11vw, 3.8rem);
    line-height: 1.1;
  }

  .hero__title .hero__title-word {
    position: static !important;
    left: auto !important;
    top: auto !important;
  }

  /* Mobile hero — independent layout */
  .hero {
    min-height: auto;
  }

  .hero__inner {
    padding: 110px 0 80px;
    justify-content: flex-start;
  }

  .hero__content {
    text-align: left;
  }

  .hero__house-svg {
    display: none;
  }

  .hero__title {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(3.8rem, 18vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: 0.03em;
    white-space: normal;
    color: #192332;
    -webkit-text-stroke: 1.5px #ffffff;
    text-stroke: 1.5px #ffffff;
  }

  .hero__title-word {
    display: none !important;
  }

  .hero__title--mobile {
    display: none;
  }

  .hero__title-wrap {
    margin: 0;
  }

  .hero__pfc-word {
    display: block;
    font-size: clamp(2.8rem, 13vw, 4.5rem);
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 0.92;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    margin: 0;
    position: static;
    text-align: center;
  }

  .hero__solutions-word {
    margin: 0 0 36px;
    font-size: clamp(2.8rem, 13vw, 4.5rem);
    position: static;
    left: 0;
    text-align: center;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.7);
  }

  .hero__text {
    display: none;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .hero__btn {
    text-align: center;
    justify-content: center;
  }

  .hero-buttons,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .cta-box {
    padding: 28px;
  }

  .contact-item,
  .why-card,
  .service-body {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-logo img {
    height: 48px;
    width: auto;
  }

  .large-card {
    padding: 28px;
  }

  .large-card h3 {
    font-size: 1.7rem;
  }

  /* Reduce section padding */
  section {
    padding: 72px 0;
  }

  /* Hero__btn full width on mobile */
  .hero__btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

