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

:root {
  --black: #0a0a0a;
  --white: #fafafa;
  --gray-100: #f5f0f8;
  --gray-200: #ebdff0;
  --gray-400: #a89bb0;
  --gray-600: #62506e;
  --gray-800: #2d1b3b;
  --green: #ff66b2;
  --green-light: #ffb3d9;
  --green-hover: #2e0854;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 4%;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

nav.scrolled {
  background: rgba(10, 10, 10, 0.96);
  border-bottom-color: rgba(255,255,255,0.08);
  padding: 0.85rem 4%;
  box-shadow: 0 2px 32px rgba(0,0,0,0.35);
  backdrop-filter: blur(16px);
}

/* LOGO */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 54px;
  width: auto;
  border-radius: 8px;
  transition: transform 0.25s ease;
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.04);
}

.footer-logo-img {
  height: 52px;
  width: auto;
  border-radius: 8px;
  transition: transform 0.25s ease;
}

.footer-logo-img:hover {
  transform: scale(1.04);
}

.partner-logo-main {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000000;
  display: block;
}

.partner-avatar-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1.5px solid var(--gray-200);
}

/* CENTER NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--green); background: rgba(255,255,255,0.06); }

.nav-links a.active { color: var(--green); font-weight: 700; }

/* RIGHT CLUSTER */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Hamburger button */
.nav-hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--green-hover);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
  transition: background 0.2s;
}

.nav-hamburger:hover { background: #20033b; }

.nav-hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* open state */
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile slide-down menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 99;
  background: #1c0535;
  padding: 5.5rem 6% 2.5rem;
  flex-direction: column;
  gap: 0;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

.mobile-menu a {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  letter-spacing: -0.02em;
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--green); }

.mobile-menu .mobile-cta {
  margin-top: 2rem;
  background: var(--green);
  color: var(--black) !important;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  font-size: 1rem;
  text-align: center;
  font-weight: 700;
  border-bottom: none;
}

.mobile-menu .mobile-cta:hover { background: var(--green-hover); color: var(--green) !important; }

/* Contact Us â€” filled green pill */
.nav-cta {
  background: var(--green) !important;
  color: var(--black) !important;
  padding: 0.5rem 1.35rem !important;
  border-radius: 999px !important;
  font-size: 0.875rem;
  font-weight: 700 !important;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.22s, transform 0.2s, box-shadow 0.2s !important;
  box-shadow: 0 2px 14px rgba(180,231,23,0.25);
}

.nav-cta:hover {
  background: var(--green-hover) !important;
  color: var(--green) !important;
  box-shadow: 0 4px 22px rgba(46,8,84,0.4) !important;
  transform: translateY(-1px);
}

/* SECTIONS */
section { padding: 6rem 5%; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5%;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?auto=format&fit=crop&w=1920&q=85');
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}

/* Left-biased overlay: dark on left for text, fades to near-transparent on right */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.42) 40%,
    rgba(0,0,0,0.08) 65%,
    rgba(0,0,0,0.02) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 52%;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 2rem;
  color: var(--white);
}

/* Inline decorative dash after first line */
.hero-dash {
  display: inline-block;
  width: clamp(48px, 6vw, 90px);
  height: 2.5px;
  background: var(--green);
  vertical-align: middle;
  margin-left: 0.6rem;
  border-radius: 2px;
}

/* Bottom tag pills */
.hero-tags {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  display: flex;
  gap: 0.6rem;
  padding: 1.25rem 5%;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 100%);
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.hero-tags::-webkit-scrollbar { display: none; }

.hero-tag {
  flex-shrink: 0;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: rgba(255,255,255,0.92);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-primary {
  background: var(--green);
  color: var(--black);
  padding: 0.8rem 1.75rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.22s, color 0.22s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--green-hover);
  color: var(--green);
  transform: translateY(-1px);
}

/* Arrow circle button */
.btn-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--green);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  text-decoration: none;
  font-weight: 700;
  flex-shrink: 0;
  transition: background 0.22s, color 0.22s, transform 0.2s;
}

.btn-arrow:hover {
  background: var(--green-hover);
  color: var(--green);
  transform: translateY(-1px) rotate(10deg);
}

.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  padding: 0.875rem 2rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(6px);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.18);
  transform: translateY(-1px);
}

/* MARQUEE */
.marquee-wrapper {
  background: var(--black);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 3rem;
  animation: marquee 20s linear infinite;
}

.marquee-track span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
}

.marquee-track .dot {
  color: var(--gray-400);
  font-weight: 300;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ABOUT DARK */
.about-dark {
  background: #2e0854;
  padding: 5rem 5%;
}

.about-pill {
  display: inline-block;
  font-size: 0.67rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.28);
  padding: 0.38rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.75rem;
}

.about-dark h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 680px;
  margin-bottom: 3.5rem;
}

.about-dash {
  display: inline-block;
  width: clamp(50px, 5vw, 80px);
  height: 2px;
  background: var(--green);
  vertical-align: middle;
  margin-left: 0.6rem;
  border-radius: 2px;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.pillar-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1.75rem;
  transition: background 0.25s, border-color 0.25s;
}

.pillar-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(180,231,23,0.35);
}

.pillar-icon {
  width: 32px;
  height: 32px;
  color: var(--green);
  stroke: var(--green);
  fill: none;
  margin-bottom: 1.25rem;
}

.pillar-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
}

.pillar-desc {
  font-size: 0.845rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  font-weight: 400;
}

/* ABOUT (old, keep for section-label reuse) */
.about { background: var(--gray-100); display: none; }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1rem;
}

/* CORE AREAS */
.core-areas { background: var(--gray-100); }

.core-header { margin-bottom: 2.5rem; }

.core-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #2e0854;
  margin-top: 0.4rem;
}

.core-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  align-items: stretch;
}

.core-card {
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  position: relative;
}

.core-card--light {
  background: #f0ece3;
  padding: 1.5rem;
  transition: background 0.28s ease;
}

.core-card--light:hover { background: var(--green); }

.core-card--light:hover .core-card-title { color: var(--black); }
.core-card--light:hover .core-tag { border-color: rgba(0,0,0,0.3); color: var(--black); }
.core-card--light:hover .core-arrow-btn { background: var(--black); border-color: var(--black); color: var(--white); }

.core-card--green { background: var(--green); }

.core-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.core-tag {
  font-size: 0.67rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  border: 1px solid rgba(0,0,0,0.18);
  padding: 0.38rem 0.9rem;
  border-radius: 999px;
}

.core-arrow-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.13);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  color: var(--black);
  flex-shrink: 0;
  transition: background 0.22s, border-color 0.22s, transform 0.2s;
}

.core-arrow-btn:hover {
  background: var(--green);
  border-color: var(--green);
  transform: rotate(12deg);
}

.core-card-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--green-hover);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

/* Light card: photo bleeds to bottom edges */
.core-img-wrap {
  flex: 1;
  margin: 0 -1.5rem -1.5rem;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  min-height: 210px;
}

.core-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.core-card:hover .core-img-wrap img { transform: scale(1.04); }

/* Green center card */
.core-img-blob {
  height: 54%;
  flex-shrink: 0;
  overflow: hidden;
}

.core-img-blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  clip-path: url(#img-blob);
  transition: transform 0.4s ease;
}

.core-card:hover .core-img-blob img { transform: scale(1.04); }

.core-card-bottom {
  padding: 1.1rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}

.core-card-bottom .core-tag { align-self: flex-start; }

.core-card-desc {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(0,0,0,0.6);
  line-height: 1.65;
  margin-top: auto;
  padding-right: 3rem;
}

.core-card--green .core-card-title { color: var(--black); margin-top: 0.6rem; }

.core-card-bottom .core-arrow-btn {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  border-color: rgba(0,0,0,0.2);
}

.core-card-bottom .core-arrow-btn:hover {
  background: var(--green-hover);
  border-color: var(--green-hover);
  color: var(--green);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}

.about h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.about-text p {
  color: var(--gray-600);
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.8;
}

.about-text p:last-child { margin-bottom: 0; }

/* SERVICES */
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.services-header h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  max-width: 480px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--gray-200);
  border: 1.5px solid var(--gray-200);
}

.service-card {
  background: var(--white);
  padding: 2.5rem;
  transition: background 0.25s;
  cursor: default;
}

.service-card:hover { background: var(--black); }

.service-card:hover .service-icon,
.service-card:hover .service-title,
.service-card:hover .service-desc,
.service-card:hover .service-num { color: var(--white); }

.service-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  transition: color 0.25s;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  transition: color 0.25s;
}

.service-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  transition: color 0.25s;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.7;
  transition: color 0.25s;
}

/* SERVICES NEW */
.services-new {
  background: #f5f0f8;
  padding: 5rem 5%;
  text-align: center;
}

.svc-pill {
  display: inline-block;
  align-self: flex-start;
  width: fit-content;
  font-size: 0.67rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  border: 1px solid rgba(0,0,0,0.2);
  padding: 0.38rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.services-new h2 {
  font-size: clamp(1.9rem, 3.8vw, 3.1rem);
  font-weight: 700;
  color: #2e0854;
  letter-spacing: -0.03em;
  line-height: 1.18;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  text-align: left;
}

.svc-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}

.svc-img {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.svc-card:hover .svc-img img { transform: scale(1.05); }

.svc-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-badge svg {
  width: 20px;
  height: 20px;
  stroke: var(--black);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svc-bottom {
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.svc-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2e0854;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.svc-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.12);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 0.9rem;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.svc-arrow:hover {
  background: var(--green);
  border-color: var(--green);
  transform: rotate(10deg);
}

/* INDUSTRIES */
.industries-section { background: var(--white); padding: 5rem 5%; }

.industries-header { margin-bottom: 3.5rem; }

.industries-header h2 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 700;
  color: #2e0854;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 560px;
  margin-top: 1rem;
}

.industries-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* Left sticky image */
.ind-visual { position: sticky; top: 6rem; }

.ind-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  height: 420px;
  position: relative;
}

.ind-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.ind-img.active { opacity: 1; }

/* Right list */
.ind-list { display: flex; flex-direction: column; }

.ind-item { border-bottom: 1px solid var(--gray-200); }
.ind-item:first-child { border-top: 1px solid var(--gray-200); }

.ind-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.4rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--gray-600);
  text-align: left;
  transition: color 0.2s;
  gap: 1rem;
}

.ind-item.active .ind-trigger { color: #2e0854; font-weight: 700; }

.ind-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.12);
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: background 0.22s, border-color 0.22s, transform 0.3s;
  color: var(--black);
}

.ind-item.active .ind-btn {
  background: var(--green);
  border-color: var(--green);
  transform: rotate(45deg);
}

.ind-desc {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, padding 0.3s;
}

.ind-item.active .ind-desc {
  max-height: 140px;
  padding-bottom: 1.35rem;
}

.ind-desc p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.75;
  max-width: 440px;
}

.ind-discover { margin-top: 2.5rem; }

/* PARTNERS */
.partners-section { background: var(--white); padding: 5rem 5%; }

.partners-header { margin-bottom: 3rem; }

.partners-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #2e0854;
  letter-spacing: -0.03em;
  margin-top: 0.75rem;
}

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

/* Left: photo + quote overlay */
.partner-photo-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 480px;
}

.partner-photo-card > img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.partner-quote-box {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  background: rgba(251, 248, 252, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 1.5rem;
}

.partner-quote-marks {
  font-size: 2rem;
  line-height: 1;
  color: var(--green);
  margin-bottom: 0.6rem;
}

.partner-quote-text {
  font-size: 0.88rem;
  color: #2e0854;
  line-height: 1.72;
  margin-bottom: 1.1rem;
  font-style: italic;
}

.partner-quote-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.partner-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 800;
  color: #2e0854;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.partner-author-name {
  font-size: 0.82rem; font-weight: 700;
  color: #2e0854;
}

.partner-author-role {
  font-size: 0.68rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.1rem;
}

/* Right: green highlight card */
.partner-highlight {
  background: var(--green);
  border-radius: 20px;
  overflow: hidden;
  min-height: 480px;
  position: relative;
}

.partner-highlight::before {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  bottom: -90px; right: -80px;
  pointer-events: none;
}

.partner-highlight::after {
  content: '';
  position: absolute;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.09);
  top: 70px; right: 50px;
  pointer-events: none;
}

.partner-highlight-inner {
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  min-height: 480px;
}

.partner-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.partner-icon-badge {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: #2e0854;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}

.partner-icon-badge svg {
  width: 20px; height: 20px;
  stroke: var(--green); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.partner-highlight-title {
  font-size: 1.55rem;
  font-weight: 700;
  color: #2e0854;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-top: 1.5rem;
  flex: 1;
}

.partner-highlight-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}

.partner-metric-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  margin-bottom: 0.3rem;
}

.partner-metric-desc {
  font-size: 0.82rem;
  color: rgba(0,0,0,0.6);
  line-height: 1.55;
  max-width: 200px;
}

.partner-link {
  background: #2e0854;
  color: var(--green);
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.22s, transform 0.2s;
}

.partner-link:hover { background: #20033b; transform: translateY(-1px); }

/* CONTACT */
.contact-section { background: #f5f0f8; padding: 5rem 5%; }

.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 24px;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 580px;
}

.contact-form-side {
  background: #fbf8fc;
  padding: 2.75rem;
  display: flex;
  flex-direction: column;
}

.contact-form-side h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #2e0854;
  letter-spacing: -0.03em;
  margin: 1rem 0 0.6rem;
}

.contact-form-side > p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}

.cf-group { display: flex; flex-direction: column; gap: 0.35rem; }
.cf-full { margin-bottom: 1.1rem; }

.cf-group label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--black);
}

.cf-group input,
.cf-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--black);
  background: var(--white);
  border: 1.5px solid transparent;
  border-radius: 10px;
  padding: 0.7rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.cf-group input:focus,
.cf-group textarea:focus { border-color: #2e0854; }
.cf-group textarea { resize: vertical; min-height: 100px; }

.cf-submit {
  background: var(--green);
  color: var(--black);
  border: none;
  padding: 0.875rem 1.75rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  align-self: flex-start;
  margin-top: 0.25rem;
  transition: background 0.22s, color 0.22s, transform 0.2s;
}

.cf-submit:hover { background: #2e0854; color: var(--green); transform: translateY(-1px); }

.contact-photo-side { position: relative; overflow: hidden; }

.contact-photo-side img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.contact-phone-badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  background: rgba(250, 246, 238, 0.96);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.contact-phone-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.contact-phone-icon svg { width: 16px; height: 16px; fill: var(--black); }

.contact-phone-badge p { font-size: 0.8rem; color: #2e0854; line-height: 1.55; }
.contact-phone-badge a { color: #2e0854; font-weight: 700; text-decoration: underline; }

/* FOOTER */
.site-footer { background: #2e0854; padding: 4rem 5% 0; }

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-brand-logo { display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; margin-bottom: 1.5rem; }

.footer-brand-logo .logo-mark { width: 36px; height: 36px; }

.footer-brand-logo .logo-text { color: var(--white); font-size: 1.05rem; }

.footer-info { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.75rem; }

.footer-info p,
.footer-info a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-info a:hover { color: var(--green); }

.footer-cta-row { display: flex; align-items: center; gap: 0.6rem; }

.footer-cta-btn {
  background: var(--green);
  color: var(--black);
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.22s;
}

.footer-cta-btn:hover { background: var(--green-light); }

.footer-cta-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.footer-cta-icon:hover { background: var(--green); color: var(--black); }

.footer-col h4 {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }

.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.35rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-copy { font-size: 0.75rem; color: white; }

.footer-legal { display: flex; gap: 1.5rem; }

.footer-legal a {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.footer-social { display: flex; gap: 0.75rem; align-items: center; }

.footer-social a {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-social a:hover { color: var(--green); }
.footer-social svg { width: 17px; height: 17px; fill: currentColor; }

/* VALUES */
.values { background: var(--black); color: var(--white); }

.values .section-label { color: var(--gray-600); }

.values h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 3.5rem;
  max-width: 540px;
}

.values-list { display: flex; flex-direction: column; gap: 0; }

.value-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--gray-800);
}

.value-item:first-child { border-top: 1px solid var(--gray-800); }

.value-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-600);
  letter-spacing: 0.1em;
}

.value-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.value-content p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.7;
}

/* TEAM */
.team-header { margin-bottom: 3rem; }

.team-header h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: 1rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

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

.team-avatar {
  width: 100%;
  aspect-ratio: 1;
  background: var(--gray-100);
  border-radius: 12px;
  margin-bottom: 1.25rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-avatar svg { width: 50%; height: 50%; opacity: 0.3; }

.team-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.team-role {
  font-size: 0.8rem;
  color: var(--gray-400);
  font-weight: 500;
  margin-top: 0.2rem;
}

/* CTA */
.cta-section {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 8rem 5%;
}

.cta-section h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.05;
}

.cta-section p {
  font-size: 1.1rem;
  color: var(--gray-400);
  max-width: 440px;
  margin: 0 auto 2.5rem;
}

.btn-white {
  background: var(--white);
  color: var(--black);
  padding: 1rem 2.25rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-white:hover { opacity: 0.88; transform: translateY(-1px); }

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-details { display: flex; flex-direction: column; gap: 1rem; }

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-item strong {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.contact-item span {
  font-size: 0.95rem;
  color: var(--black);
  font-weight: 500;
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--black);
  background: var(--gray-100);
  border: 1.5px solid transparent;
  border-radius: 8px;
  padding: 0.875rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--black); background: var(--white); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.form-submit {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
}

.form-submit:hover { background: var(--gray-800); transform: translateY(-1px); }

/* FOOTER */
footer {
  background: var(--black);
  color: var(--white);
  padding: 3rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--gray-600);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 0.8rem;
  color: var(--gray-600);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  nav { padding: 1rem 5%; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .hero-content { max-width: 82%; }
  .hero h1 { font-size: 1.85rem; letter-spacing: -0.02em; }
  .hero-dash { width: 40px; }
  .core-grid { grid-template-columns: 1fr; }
  .core-card { height: 400px; min-height: unset; }
  .about-pillars { grid-template-columns: 1fr; gap: 0.75rem; }
  .about-dark h2 { font-size: 1.75rem; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-img { height: 180px; }
  .industries-body { grid-template-columns: 1fr; gap: 2rem; }
  .ind-visual { display: none; }
  .partners-grid { grid-template-columns: 1fr; }
  .partner-photo-card { min-height: 380px; }

  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

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

  .hero-stats { gap: 2rem; }

  .services-header { flex-direction: column; align-items: flex-start; }

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

  footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  section { padding: 4rem 5%; }
  .team-grid { grid-template-columns: 1fr; }
  .cf-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .contact-card { grid-template-columns: 1fr; }
  .contact-photo-side { min-height: 300px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

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