:root {
  --sg-blue: #0d63e6;
  --sg-blue-2: #78adff;
  --sg-blue-dark: #063985;
  --sg-black: #05070b;
  --sg-dark: #07111f;
  --sg-dark-2: #0f172a;
  --sg-gray: #64748b;
  --sg-light: #f5f7fb;
  --sg-white: #ffffff;
  --fs-nav: clamp(0.86rem, 0.2vw + 0.82rem, 0.95rem);
  --fs-body: clamp(0.92rem, 0.2vw + 0.88rem, 1rem);
  --fs-small: clamp(0.78rem, 0.15vw + 0.74rem, 0.88rem);
  --fs-btn: clamp(0.86rem, 0.18vw + 0.82rem, 0.96rem);
  --fs-h1: clamp(2.15rem, 3.65vw, 3.95rem);
  --fs-h2: clamp(1.55rem, 1.55vw + 1.1rem, 2.35rem);
  --fs-h3: clamp(1.02rem, 0.55vw + 0.9rem, 1.22rem);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: var(--fs-body);
  line-height: 1.65;
  color: #101828;
  background: var(--sg-white);
  overflow-x: hidden;
}
body::-webkit-scrollbar {
  width: 9px;
}
body::-webkit-scrollbar-track {
  background: var(--sg-blue-dark);
}
body::-webkit-scrollbar-thumb {
  background: var(--sg-blue-2);
  border-radius: 30px;
  border: 2px solid var(--sg-blue);
}
body::-webkit-scrollbar-thumb:hover {
  background: var(--sg-blue);
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font-family: inherit;
}
::selection {
  background: var(--sg-blue);
  color: #fff;
}

.sg-container {
  width: calc(100% - 32px);
  max-width: 1140px;
  margin: 0 auto;
}
.section-padding {
  padding: 78px 0;
}
.section-padding-sm {
  padding: 56px 0;
}
section[id] {
  scroll-margin-top: 86px;
}

.section-head {
  margin-bottom: 40px;
}
.section-head.center {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--sg-blue);
  font-size: var(--fs-small);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.section-eyebrow::before,
.section-head.center .section-eyebrow::after {
  content: "";
  width: 38px;
  height: 2px;
  border-radius: 30px;
  background: currentColor;
}
.section-title {
  margin: 0;
  color: #07111f;
  font-family: "Poppins", sans-serif;
  font-size: var(--fs-h2);
  line-height: 1.18;
  font-weight: 650;
  letter-spacing: -0.035em;
}
.section-text {
  margin: 14px 0 0;
  color: var(--sg-gray);
  max-width: 720px;
}
.dark-section .section-title {
  color: #fff;
}
.dark-section .section-text {
  color: rgba(255, 255, 255, 0.66);
}

.btn-sg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 24px;
  border: 1px solid transparent;
  border-radius: 50px;
  font-size: var(--fs-btn);
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}
.btn-sg-primary {
  background: linear-gradient(135deg, var(--sg-blue), var(--sg-blue-dark));
  color: #fff;
  box-shadow: 0 14px 34px rgba(13, 99, 230, 0.28);
}
.btn-sg-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(13, 99, 230, 0.36);
}
.btn-sg-outline {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
}
.btn-sg-outline:hover {
  color: #07111f;
  background: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-sg-light {
  color: var(--sg-blue-dark);
  background: #fff;
  border-color: #fff;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
}
.btn-sg-light:hover {
  color: var(--sg-blue-dark);
  transform: translateY(-2px);
}

/* Navbar */
.sg-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1040;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.sg-navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 32px rgba(2, 8, 23, 0.1);
  backdrop-filter: blur(14px);
}
.sg-navbar .navbar {
  min-height: 72px;
  padding: 8px 0;
  transition:
    min-height 0.25s ease,
    padding 0.25s ease;
}
.sg-navbar.is-scrolled .navbar {
  min-height: 84px;
}
.navbar-brand {
  display: inline-flex;
  align-items: center;
  margin: 0;
}
.brand-logo {
  width: 180px;
  border-radius: 13px;
  padding: 7px;
  box-shadow: 0 8px 22px rgba(2, 8, 23, 0.14);
  transition:
    width 0.25s ease,
    height 0.25s ease,
    box-shadow 0.25s ease;
}
.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nav-link {
  position: relative;
  padding: 9px 14px !important;
  font-family: "Poppins", sans-serif;
  font-size: var(--fs-nav);
  line-height: 1.2;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.22s ease;
}
.sg-navbar.is-scrolled .nav-link {
  color: #1f2937;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  border-radius: 30px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.nav-link:hover,
.nav-link.active {
  color: #fff;
}
.sg-navbar.is-scrolled .nav-link:hover,
.sg-navbar.is-scrolled .nav-link.active {
  color: var(--sg-blue);
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}
.sg-navbar:not(.is-scrolled) .nav-link,
.sg-navbar:not(.is-scrolled) .nav-link.active,
.sg-navbar:not(.is-scrolled) .nav-link:hover {
  color: #fff !important;
}
.sg-navbar:not(.is-scrolled) .nav-link::after {
  background: #fff;
}
.navbar-toggler {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 12px;
  box-shadow: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
}
.sg-navbar.is-scrolled .navbar-toggler {
  border-color: rgba(15, 23, 42, 0.12);
  background: rgba(15, 23, 42, 0.04);
}
.navbar-toggler-icon {
  position: relative;
  width: 20px;
  height: 14px;
  background-image: none !important;
  display: inline-block;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transition: border-color 0.22s ease;
}
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  background: #fff;
  transform: translateY(-50%);
  transition: background 0.22s ease;
}
.sg-navbar.is-scrolled .navbar-toggler-icon {
  border-color: #07111f;
}
.sg-navbar.is-scrolled .navbar-toggler-icon::after {
  background: #07111f;
}

.offcanvas.offcanvas-end {
  width: 330px;
  max-width: 88vw;
  height: 100vh;
  background: #07111f;
  color: #fff;
}
.offcanvas-header {
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.offcanvas .btn-close {
  filter: invert(1);
  opacity: 1;
  box-shadow: none;
}
.offcanvas-body {
  padding: 18px;
  overflow-y: auto;
}
.offcanvas .nav-link {
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  border-radius: 12px;
  padding: 12px 14px !important;
}
.offcanvas .nav-link::after {
  display: none;
}
.offcanvas .nav-link:hover,
.offcanvas .nav-link.active {
  color: #fff;
  background: rgba(13, 99, 230, 0.24);
}

/* Hero */
/* Hero */
.hero-section {
  position: relative;
  background: #06101e;
  overflow: hidden;
}

.hero-carousel {
  position: relative;
  overflow: hidden;
}

.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 100svh;
  min-height: 650px;
}

.hero-carousel .carousel-item {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 6s ease;
}

.carousel-item.active .hero-slide {
  transform: scale(1);
}

/* Dark overlay on every slide image */
.hero-carousel .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(3, 7, 18, 0.86) 0%,
      rgba(3, 7, 18, 0.62) 44%,
      rgba(3, 7, 18, 0.25) 100%
    ),
    linear-gradient(180deg, rgba(3, 7, 18, 0.1) 0%, rgba(3, 7, 18, 0.36) 100%);
}

.hero-content-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 72px;
}

.hero-content {
  width: 720px;
  max-width: 100%;
  color: #fff;
}

.hero-title {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: var(--fs-h1);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero-title .text-blue {
  color: var(--sg-blue-2);
}

.hero-text {
  margin: 22px 0 0;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.98rem, 0.36vw + 0.9rem, 1.15rem);
  line-height: 1.75;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.hero-control {
  z-index: 3;
  width: 42px;
  height: 42px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  opacity: 1;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.hero-control:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-50%) scale(1.04);
}

.carousel-control-prev.hero-control {
  left: 24px;
}

.carousel-control-next.hero-control {
  right: 24px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 18px;
  height: 18px;
}

/* About */
.about-section {
  background: #fff;
}
.about-card {
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #f8fafc);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 22px 56px rgba(2, 8, 23, 0.1);
  overflow: hidden;
}
.about-copy {
  padding: 48px;
}
.about-copy p {
  margin: 18px 0 0;
  color: var(--sg-gray);
}
.about-image-wrap {
  position: relative;
  height: 100%;
  min-height: 440px;
  overflow: hidden;
}
.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-floating {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 310px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 42px rgba(2, 8, 23, 0.16);
}
.about-floating strong {
  display: block;
  font-family: "Poppins", sans-serif;
  color: #07111f;
  font-size: var(--fs-h3);
  line-height: 1.2;
}
.about-floating span {
  display: block;
  margin-top: 6px;
  color: var(--sg-gray);
  font-size: var(--fs-small);
  line-height: 1.55;
}

/* CTA */
.cta-strip {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  background: linear-gradient(135deg, #061329 0%, #093d91 54%, #0d63e6 100%);
  isolation: isolate;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      circle at 15% 25%,
      rgba(255, 255, 255, 0.18),
      transparent 28%
    ),
    radial-gradient(
      circle at 85% 70%,
      rgba(120, 173, 255, 0.28),
      transparent 30%
    );
}
.cta-content {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 38px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
}
.cta-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: #d7e7ff;
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cta-title {
  margin: 0;
  max-width: 760px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.45rem, 1.8vw + 1rem, 2.25rem);
  line-height: 1.22;
  font-weight: 650;
  letter-spacing: -0.04em;
}
.cta-text {
  margin: 10px 0 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.75);
}
.cta-action-card {
  width: 300px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}
.cta-action-card span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--fs-small);
  margin-bottom: 14px;
}

/* Industry */
.industry-section {
  position: relative;
  background:
    radial-gradient(
      circle at top left,
      rgba(13, 99, 230, 0.16),
      transparent 34%
    ),
    linear-gradient(180deg, #05070b 0%, #0a111d 100%);
  overflow: hidden;
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.industry-card {
  position: relative;
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.035)
  );
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  isolation: isolate;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}
.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 99, 230, 0.16), transparent 45%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.28s ease;
}
.industry-card::after {
  content: "↗";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--sg-blue), var(--sg-blue-dark));
  box-shadow: 0 14px 30px rgba(13, 99, 230, 0.28);
  font-size: clamp(1rem, 0.55vw + 0.85rem, 1.22rem);
  font-weight: 700;
  transform: translateY(6px) scale(0.96);
  opacity: 0.92;
  transition:
    transform 0.28s ease,
    opacity 0.28s ease;
}
.industry-card:hover {
  transform: translateY(-7px);
  border-color: rgba(120, 173, 255, 0.52);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.05)
  );
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.46);
}
.industry-card:hover::before {
  opacity: 1;
}
.industry-card:hover::after {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.industry-img {
  height: 218px;
  background:
    radial-gradient(circle at center, rgba(13, 99, 230, 0.16), transparent 60%),
    #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  overflow: hidden;
}
.industry-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.38s ease;
}
.industry-card:hover .industry-img img {
  transform: scale(1.035);
}
.industry-info {
  position: relative;
  min-height: 112px;
  padding: 18px 56px 12px 6px;
}
.industry-title {
  margin: 0;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: var(--fs-h3);
  line-height: 1.25;
  font-weight: 650;
  letter-spacing: -0.025em;
}
.industry-desc {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: var(--fs-small);
  line-height: 1.5;
}

/* Documents */
.documents-section {
  position: relative;
  background:
    radial-gradient(circle at 86% 8%, rgba(13, 99, 230, 0.17), transparent 34%),
    linear-gradient(180deg, #07111f 0%, #05070b 100%);
  overflow: hidden;
}
.doc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.doc-card {
  position: relative;
  min-height: 218px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  color: #fff;
  background:
    radial-gradient(
      circle at 12% 0%,
      rgba(120, 173, 255, 0.18),
      transparent 38%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.035)
    );
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
  cursor: pointer;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}
.doc-card[hidden] {
  display: none;
}
.doc-card::before {
  content: "";
  position: absolute;
  right: -44px;
  top: -44px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: rgba(13, 99, 230, 0.18);
  transition: transform 0.25s ease;
}
.doc-card:hover,
.doc-card.active {
  transform: translateY(-6px);
  border-color: rgba(120, 173, 255, 0.5);
  background:
    radial-gradient(
      circle at 12% 0%,
      rgba(120, 173, 255, 0.24),
      transparent 40%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0.05)
    );
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.48);
}
.doc-card:hover::before,
.doc-card.active::before {
  transform: scale(1.2);
}
.doc-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}
.doc-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 34px;
  padding: 0 13px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--sg-blue), #0a3e9c);
  font-size: clamp(0.68rem, 0.16vw + 0.65rem, 0.78rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 28px rgba(13, 99, 230, 0.25);
}
.doc-number {
  color: rgba(255, 255, 255, 0.48);
  font-size: clamp(1.55rem, 1vw + 1.15rem, 2rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.doc-title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: var(--fs-h3);
  line-height: 1.3;
  font-weight: 650;
  letter-spacing: -0.025em;
}
.doc-category {
  position: relative;
  z-index: 1;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: var(--fs-small);
  line-height: 1.5;
}
.doc-card-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.doc-preview-text {
  color: var(--sg-blue-2);
  font-size: var(--fs-small);
  font-weight: 750;
}
.doc-arrow {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}
.doc-card:hover .doc-arrow,
.doc-card.active .doc-arrow {
  background: var(--sg-blue);
  transform: translateX(3px);
}
.doc-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
.doc-page-btn {
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50px;
  color: #fff;
  background: rgba(255, 255, 255, 0.075);
  font-size: var(--fs-small);
  font-weight: 750;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease;
}
.doc-page-btn:hover,
.doc-page-btn.active {
  background: var(--sg-blue);
  border-color: var(--sg-blue);
  transform: translateY(-2px);
}
.doc-page-btn:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  transform: none;
}
.doc-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
}
.doc-icon-btn,
.doc-small-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50px;
  color: #fff;
  background: rgba(255, 255, 255, 0.075);
  font-size: var(--fs-small);
  font-weight: 700;
  line-height: 1;
  transition:
    background 0.22s ease,
    transform 0.22s ease,
    border-color 0.22s ease;
}
.doc-icon-btn {
  width: 38px;
  padding: 0;
  font-size: clamp(1rem, 0.8vw + 0.85rem, 1.25rem);
}
.doc-small-btn {
  padding: 0 16px;
}
.doc-icon-btn:hover,
.doc-small-btn:hover {
  background: var(--sg-blue);
  color: #fff;
  border-color: var(--sg-blue);
  transform: translateY(-1px);
}

/* Contact */
.contact-section {
  background: linear-gradient(180deg, #f7f9fc 0%, #eef3fa 100%);
  position: relative;
  overflow: hidden;
}
.contact-card {
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: linear-gradient(180deg, #111c2f 0%, #07111f 100%);
  box-shadow: 0 22px 56px rgba(2, 8, 23, 0.12);
  padding: 34px;
  color: #fff;
}
.form-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--fs-small);
  font-weight: 700;
  margin-bottom: 7px;
}
.form-control {
  min-height: 48px;
  border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 12px 15px;
  font-size: var(--fs-body);
  box-shadow: none !important;
  transition:
    border-color 0.22s ease,
    background 0.22s ease;
}
.form-control::placeholder {
  color: rgba(255, 255, 255, 0.42);
}
.form-control:focus {
  border-color: rgba(120, 173, 255, 0.72);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
textarea.form-control {
  min-height: 140px;
  resize: vertical;
}
.form-success {
  color: #86efac;
  font-size: var(--fs-small);
  font-weight: 700;
}
.info-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 14px;
}
.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--sg-blue), var(--sg-blue-dark));
  font-size: clamp(0.95rem, 0.38vw + 0.88rem, 1.12rem);
}
.info-card h3 {
  margin: 0;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: var(--fs-h3);
  font-weight: 650;
}
.info-card p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--fs-small);
  line-height: 1.55;
  overflow-wrap: anywhere;
}
.info-card a:hover {
  color: var(--sg-blue-2);
}

/* Map */
.map-section {
  background: #fff;
  padding-bottom: 0;
}
.map-wrap {
  overflow: hidden;
  border-radius: 22px 22px 0 0;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 22px 56px rgba(2, 8, 23, 0.1);
}
.map-wrap iframe {
  width: 100%;
  height: 430px;
  border: 0;
  display: block;
}

/* Footer */
.footer {
  background: #05070b;
  color: rgba(255, 255, 255, 0.7);
  padding: 68px 0 0;
}
.footer p {
  margin: 0;
  font-size: var(--fs-small);
  line-height: 1.7;
}
.footer-title {
  margin: 0 0 18px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: var(--fs-h3);
  font-weight: 650;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.footer-links a {
  font-size: var(--fs-small);
  transition:
    color 0.22s ease,
    padding-left 0.22s ease;
}
.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}
.footer-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}
.footer-gallery img {
  width: 100%;
  height: 76px;
  object-fit: cover;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.copyright {
  margin-top: 46px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: var(--fs-small);
}
.copyright a {
  color: #fff;
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1060;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--sg-blue), var(--sg-blue-dark));
  box-shadow: 0 18px 44px rgba(13, 99, 230, 0.32);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
}
.back-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-top:hover {
  transform: translateY(-3px);
}

/* Scroll Reveal */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(34px) scale(0.98);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  will-change: opacity, transform;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.industry-card.reveal-on-scroll,
.doc-card.reveal-on-scroll {
  transform: translateY(28px) scale(0.98);
}
.industry-card.reveal-on-scroll.is-visible,
.doc-card.reveal-on-scroll.is-visible {
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Modals */
.sg-modal-dark {
  background: #08111f;
  color: #fff;
}
.sg-modal-dark .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.sg-modal-dark .btn-close {
  filter: invert(1);
  opacity: 1;
}
.modal-title {
  font-family: "Poppins", sans-serif;
  font-size: var(--fs-h3);
  font-weight: 650;
}
.industry-modal-img {
  width: 100%;
  height: 620px;
  object-fit: contain;
  background: #111827;
}
.document-modal-frame {
  width: 100%;
  height: 78vh;
  border: 0;
  background: #fff;
}

@media (max-width: 1199.98px) {
  .industry-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .doc-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  :root {
    --fs-h1: clamp(2rem, 5.2vw, 3.05rem);
  }
  .section-padding {
    padding: 64px 0;
  }
  .sg-navbar .navbar,
  .sg-navbar.is-scrolled .navbar {
    min-height: 70px;
  }
  .hero-carousel,
  .hero-carousel .carousel-inner,
  .hero-carousel .carousel-item {
    height: 620px;
    min-height: 0;
  }
  .hero-content-wrap {
    padding-top: 78px;
  }
  .hero-control {
    display: none;
  }
  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .doc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cta-content {
    grid-template-columns: 1fr;
  }
  .cta-action-card {
    width: 100%;
  }
  .about-copy {
    padding: 34px;
  }
  .about-image-wrap {
    min-height: 360px;
  }
  .contact-card {
    padding: 28px;
  }
}

@media (max-width: 767.98px) {
  :root {
    --fs-h1: clamp(1.82rem, 7vw, 2.65rem);
  }
  .section-padding {
    padding: 54px 0;
  }
  .section-padding-sm {
    padding: 44px 0;
  }
  .sg-container {
    width: calc(100% - 26px);
  }
  .hero-carousel,
  .hero-carousel .carousel-inner,
  .hero-carousel .carousel-item {
    height: 590px;
  }
  .hero-slide {
    object-position: center;
  }
  .hero-carousel .carousel-item::before {
    background: linear-gradient(
      90deg,
      rgba(3, 7, 18, 0.92),
      rgba(3, 7, 18, 0.78)
    );
  }
  .hero-text {
    margin-top: 18px;
  }
  .hero-actions {
    margin-top: 26px;
    gap: 12px;
  }
  .hero-actions .btn-sg {
    width: auto;
  }
  .cta-strip {
    padding: 54px 0;
  }
  .cta-content {
    padding: 22px;
    border-radius: 22px;
  }
  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .industry-card {
    padding: 8px;
    border-radius: 18px;
  }
  .industry-card::after {
    right: 12px;
    bottom: 14px;
    width: 34px;
    height: 34px;
  }
  .industry-img {
    height: 150px;
    border-radius: 14px;
  }
  .industry-info {
    min-height: 116px;
    padding: 14px 42px 8px 4px;
  }
  .doc-grid {
    grid-template-columns: 1fr;
  }
  .doc-card {
    min-height: 198px;
  }
  .doc-actions {
    width: 100%;
  }
  .doc-small-btn {
    flex: 1;
  }
  .footer-gallery img {
    height: 68px;
  }
  .industry-modal-img {
    height: 430px;
  }
}

@media (max-width: 420px) {
  .hero-carousel,
  .hero-carousel .carousel-inner,
  .hero-carousel .carousel-item {
    height: 560px;
  }
  .btn-sg {
    min-height: 42px;
    padding: 10px 18px;
  }
  .industry-img {
    height: 132px;
  }
  .doc-card {
    padding: 20px;
  }
  .contact-card {
    padding: 22px;
  }
}
