@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@500;600;700;800;900&display=swap");

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

:root {
  --navy: #0f172a;
  --navy2: #1e293b;
  --navy3: #334155;
  --amber: #0088cc;
  --amber2: #6bb333;
  --white: #fff;
  --bg: #f4f6fa;
  --muted: #7a8fa6;
  --body: #344055;
  --grad: linear-gradient(135deg, #0f172a 0%, #004d7a 100%);
  --sh-sm: 0 2px 12px rgba(15, 23, 42, 0.08);
  --sh-md: 0 8px 32px rgba(15, 23, 42, 0.14);
  --sh-lg: 0 20px 60px rgba(15, 23, 42, 0.2);
  --r: 12px;
  --r2: 20px;
  --t: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
  background: var(--white);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
}

.section--compact {
  padding: 20px 0;
}

.section--dark {
  background: var(--navy);
  color: #fff;
}

.section--dark .section-title {
  color: #fff;
}

.section--dark .section-sub {
  color: rgba(255, 255, 255, 0.72);
}

.section--light {
  background: var(--bg);
}

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

.badge {
  display: inline-block;
  background: rgba(0, 136, 204, 0.15);
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(0, 136, 204, 0.3);
  margin-bottom: 6px;
}

.section--dark .badge {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 16px;
}

.reporting-title {
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.reporting-title-sub {
  color: var(--body);
  font-size: 1rem;
  margin-bottom: 20px;
}

.cta-title-plain {
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--navy);
  margin-bottom: 20px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.report-list {
  color: var(--body);
  line-height: 1.8;
  margin-left: 20px;
  padding: 0;
}

.report-list-item {
  margin-bottom: 3px;
}

.report-list-title {
  font-weight: 700;
  color: var(--navy);
  margin-right: 6px;
}

.report-list-body {
  color: var(--body);
}

.section-title span {
  color: var(--amber);
}

.section-title--w {
  color: #fff;
}
.text-body-spaced {
  font-size: 1.02rem;
  line-height: 1.95;
  color: var(--body);
  margin-bottom: 24px;
  font-weight: 400;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 48px;
}

.section-sub--c {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 6px;
  /* sharper, more industrial look than 50px pill */
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--t);
  cursor: pointer;
  border: none;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

a.btn.btn--industry {
  border: 2px solid var(--navy) !important;
  color: var(--navy) !important;
  background: transparent;
}

.btn--primary {
  background: linear-gradient(135deg, var(--amber) 0%, #0070a8 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 4px 15px rgba(0, 136, 204, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.btn--industry {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);


  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 12px 26px;
  border-radius: 6px;

  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;

  transition: var(--t);
  cursor: pointer;
  white-space: nowrap;
}

.about-img-text {
  background: var(--grad);
  border-radius: var(--r2);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}



.btn--primary:hover {
  background: linear-gradient(135deg, var(--amber2) 0%, #569128 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(107, 179, 51, 0.45);
}

.hover-lift {
  transition: transform 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid var(--navy) !important;
  /* border: 2px solid rgba(255, 255, 255, 0.5); */
}

.btn--outline:hover {
  border-color: var(--amber);
  color: var(--amber) !important;
  transform: translateY(-2px);
}


.btn--dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy2);
}

.btn--dark:hover {
  background: var(--navy);
  color: #fff;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 0 24px;
  height: 95px;
  display: flex;
  align-items: center;
  background: transparent;
  transition:
    background 0.4s,
    box-shadow 0.4s;
}

.navbar.scrolled {
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.nav-inner {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--amber);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  margin-top: 4px;

  font-family: "Outfit", sans-serif;
  color: #0088cc;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 1px;
}

.nav-logo-text small {
  display: block;

  color: #6bb333;
  font-size: 0.75rem;
  font-weight: 600;

  line-height: 1.2;

  max-width: 180px;
  /* controls wrapping like the reference site */
  word-wrap: break-word;
}


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

  margin-left: auto;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--t);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transition: transform var(--t);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--amber);
}

.client-login-link {
  color: var(--amber2) !important;
  font-weight: 700;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--t);
}

.mob-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px;
  flex-direction: column;
  gap: 18px;
  z-index: 9998;
}

.mob-nav.open {
  display: flex;
}

.mob-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--grad);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%,
      rgba(0, 136, 204, 0.08),
      transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(26, 74, 122, 0.5), transparent 50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 136, 204, 0.15);
  border: 1px solid rgba(0, 136, 204, 0.3);
  border-radius: 50px;
  padding: 8px 18px;
  color: var(--amber2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  margin-top: 15px;
}

.hero-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  animation: pdot 2s infinite;
}

@keyframes pdot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title .hl {
  color: var(--amber);
}

.hl {
  color: var(--amber);
}

.hero-desc {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.78;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.83rem;
}

.trust-item .chk {
  color: var(--amber);
}

/* HERO VISUAL */
.hero-visual {
  display: flex;
  justify-content: right;
  align-items: center;
}

.report-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  width: 340px;
}

.report-card h4 {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

.metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.metric:last-child {
  border: none;
  margin: 0;
  padding: 0;
}

.metric-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.52);
}

.metric-val {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot-g {
  background: #34d399;
}

.dot-a {
  background: var(--amber);
}

.dot-r {
  background: #f87171;
}

.float-badge {
  position: absolute;
  background: linear-gradient(135deg, var(--amber) 0%, #0070a8 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 9px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 24px rgba(0, 136, 204, 0.4);
  white-space: nowrap;
  animation: flt 3s ease-in-out infinite;
}

.float-badge:nth-child(2) {
  bottom: 60px;
  left: -30px;
  animation-delay: 0s;
}

.float-badge:nth-child(3) {
  bottom: 130px;
  right: -10px;
  animation-delay: 1.5s;
}

@keyframes flt {

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

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

.hero-visual-wrap {
  position: relative;
  width: 360px;
  height: 400px;
}

.hero-visual-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r2);
  box-shadow: var(--sh-lg);
}

/* STATS */
.stats-bar {
  background: var(--amber);
  padding: 30px 24px;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  text-align: center;
  padding: 8px 16px;
  border-right: 1px solid rgba(15, 23, 42, 0.15);
}

.stat:last-child {
  border: none;
}

.stat-num {
  font-family: "Outfit", sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.stat-lbl {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.62);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.svc-card {
  background: #fff;
  border-radius: var(--r2);
  padding: 34px 26px;
  border: 1px solid #e8edf5;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}

.svc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}

.svc-card:hover::before {
  transform: scaleX(1);
}

.svc-icon {
  width: 54px;
  height: 54px;
  background: rgba(0, 136, 204, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  transition: var(--t);
}

.svc-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 18px;
  background: #e8edf5;
}

.svc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.svc-card:hover .svc-icon {
  background: var(--amber);
}

.svc-title {
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.svc-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.svc-link {
  color: var(--amber);
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--t);
}

.svc-card:hover .svc-link {
  gap: 10px;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-grid--reverse> :first-child {
  order: 2;
}

.about-grid--reverse> :last-child {
  order: 1;
}

.about-img {
  background: white;
  border-radius: var(--r2);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;

}

.about-img-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  z-index: 1;
  padding: 20px;
}
.image-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad);
  opacity: 0.6;
  pointer-events: none; /* ensures it doesn't block clicks */
  z-index: 2;
}
.about-img-inner{
    text-align: center;
  color: #fff;
  position: relative;
  z-index: 3;
  padding: 36px;
}


.about-img::after {
  content: "🔬";
  font-size: 7rem;
  opacity: 0.12;
  position: absolute;
  bottom: -10px;
  right: -10px;
  transform: rotate(-15deg);
    z-index: 3;
}




/* .about-img-inner {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
  padding: 36px;


} */

.title-box {

  margin: auto;

  line-height: 1.2;
}

.about-img-inner h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.about-img-inner p {
  font-size: 0.9rem;
  opacity: 0.78;
}

.exp-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--amber);
  border-radius: var(--r);
  padding: 18px;
  text-align: center;
  box-shadow: var(--sh-md);
  z-index: 5;
}

.exp-badge .n {
  font-family: "Outfit", sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--navy);
  display: block;
  line-height: 1;
}

.exp-badge .l {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.68);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.about-visual {
  position: relative;
}

.features {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.feat-icon {
  width: 42px;
  height: 42px;
  background: rgba(0, 136, 204, 0.12);
  
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.feat-icon--amber {
  background: var(--amber);
  color: var(--navy);
}


/* .feat-icon {
  width: 42px;
  height: 42px;
  background: rgba(0, 136, 204, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
} */

.feat-title {
  font-weight: 700;
  font-size: 0.93rem;
  color: var(--navy);
  margin-bottom: 3px;
}

.section--dark .feat-title {
  color: #ffffff;
}

.feat-desc {
  font-size: 0.85rem;
  color: var(--muted);
}

/* PROCESS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 48px;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), rgba(0, 136, 204, 0.15));
  z-index: 0;
}

.step {
  text-align: center;
  padding: 16px 18px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--amber);
  margin: 0 auto 18px;
  box-shadow: 0 0 0 8px rgba(0, 136, 204, 0.08);
}

.step-title {
  font-weight: 700;
  font-size: 0.93rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.step-desc {
  font-size: 0.82rem;
  color: var(--muted);
}

/* INDUSTRIES */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.ind-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r);
  padding: 26px 22px;
  transition: var(--t);
}

.section--white .ind-card {
  background: var(--bg);
  border-color: #e8edf5;
}

.ind-card:hover {
  background: rgba(0, 136, 204, 0.1);
  border-color: rgba(0, 136, 204, 0.35);
  transform: translateY(-4px);
}

.section--white .ind-card:hover {
  background: #f7fbff;
  border-color: rgba(0, 136, 204, 0.22);
}

/* .ind-icon {
  font-size: 1.9rem;
  margin-bottom: 12px;
} */
.ind-icon {
  font-size: 2.5rem;
  background: var(--amber);
  color: var(--navy);
  padding: 15px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.ind-icon-single {
  font-size: 2.5rem;
  margin-bottom: 12px;
  line-height: 1;
}

.ind-title {
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.section--white .ind-title {
  color: var(--navy);
}

.ind-desc {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.52);
}

.section--white .ind-desc {
  color: var(--muted);
}

/* TESTIMONIALS */
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.test-card {
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: var(--r2);
  padding: 28px;
  box-shadow: var(--sh-sm);
  transition: var(--t);
}

.test-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}

.stars {
  color: var(--amber);
  font-size: 0.95rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.test-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.test-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 0.85rem;
  flex-shrink: 0;
  overflow: hidden;
}

.test-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-logo-mark {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}

.test-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
}

.test-role {
  font-size: 0.78rem;
  color: var(--muted);
}

/* CTA */
.cta {
  background: var(--amber);
  padding: 64px 24px;
  text-align: center;
}

.cta--plain {
  padding: 64px 24px;
  text-align: center;
  background: var(--white);
}

.cta-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 14px;
}

.cta-sub {
  font-size: 1rem;
  color: rgba(15, 23, 42, 0.68);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.btn-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
  margin-top: 48px;
}

.contact-map {
  margin-top: 40px;
  border-radius: var(--r2);
  overflow: hidden;
  height: 250px;
  border: 1px solid #e8edf5;
}

.ci {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.ci-icon {
  width: 46px;
  height: 46px;
  background: rgba(0, 136, 204, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ci-icon-whatsapp {
  background: #25d366;
  color: #fff;
}

.ci-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 3px;
}

.ci-value {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.93rem;
}

.form-box {
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: var(--r2);
  padding: 36px;
  box-shadow: var(--sh-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.fg {
  margin-bottom: 18px;
}

.fg label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  border: 1.5px solid #dde3ed;
  border-radius: 10px;
  padding: 11px 14px;
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  color: var(--body);
  background: var(--bg);
  transition:
    border-color var(--t),
    box-shadow var(--t);
  outline: none;
  resize: vertical;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(0, 136, 204, 0.15);
  background: #fff;
}

.fg textarea {
  min-height: 110px;
}

.contact-note {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  margin-top: 15px;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.panel-title {
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--amber);
}

.panel-item+.panel-item {
  margin-top: 16px;
}

.panel-item-title {
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.panel-item-body {
  color: var(--body);
  font-size: 0.92rem;
  line-height: 1.75;
}

.status-levels {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.status-level {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.grade-badge {
  display: inline-block;
  min-width: 120px;
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.status-description {
  color: var(--body);
  font-size: 0.95rem;
}

.login-container {
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #e8edf5;
}

.login-header {
  text-align: center;
  margin-bottom: 30px;
}

.login-header h2 {
  color: var(--navy);
  margin-bottom: 10px;
}

.login-header p {
  color: var(--muted);
  font-size: 0.95rem;
}

.btn-login {
  width: 100%;
  padding: 14px;
  font-size: 1.05rem;
  margin-top: 10px;
}

.login-footer {
  margin-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

.login-footer a {
  color: var(--amber);
  text-decoration: none;
  font-weight: 600;
}

.login-footer a:hover {
  text-decoration: underline;
}

.security-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
  padding: 12px;
  background: #f0fdf4;
  color: #166534;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* FOOTER */
.footer {
  background: #060f1e;
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 24px 0;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-desc {
  font-size: 0.86rem;
  line-height: 1.75;
  margin-top: 14px;
}

.footer-col-title {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.85rem;
  transition: color var(--t);
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {

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

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

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .nav-links,
  .navbar .btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

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

  .stat {
    border-right: none;
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
  }

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

  .about-grid--reverse> :first-child,
  .about-grid--reverse> :last-child {
    order: initial;
  }

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

  .process-grid::before {
    display: none;
  }

  .services-grid,
  .ind-grid,
  .test-grid,
  .contact-grid,
  .panel-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--navy3);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--amber);
}

a.btn.btn--industry {
  color: var(--navy) !important;
  border: 2px solid var(--navy) !important;
  background: transparent !important;
}

a.btn.btn--industry:hover {
  color: var(--amber) !important;
  border-color: var(--amber) !important;
}